DOCS/v1.0.0

AgentGraph Documentation

The visual operating system for autonomous agents.
Orchestrate LLMs, tools, and data in a unified canvas.

Quick Start

  1. Navigate to the Studio via the dashboard.
  2. Drag an Input Node from the sidebar to the canvas.
  3. Connect it to an Agent Node by dragging from the handle.
  4. Click the Agent Node to open the Inspector and select "GPT-4".
  5. Click Run Workflow to execute the chain.

Core Concepts

Node Graph

A directed acyclic graph (DAG) where each node represents a computational step (LLM inference, API call, or Data transformation).

Execution Flow

Data propagates linearly. The output of Node A becomes the exact prompt/context input for Node B.

Node Reference

Node TypeInputOutput
InputNodeUser StringRaw Text
AgentNodeContext (String)LLM Response
WebSearchQuery (String)Search Results List

Authentication

AgentGraph uses Clerk for secure identity management.
All API routes are protected by default. To consume the API externally, you must provide a Bearer Token in the Authorization header.

Note: Public access is currently disabled. Contact admin for API keys.