Configuration for LangGraphAgent

interface LangGraphAgentConfig {
    name: string;
    description: string;
    nodes: LangGraphNode[];
    rootNode: string;
    maxSteps?: number;
}

Properties

name: string

Name of the agent

description: string

Description of the agent

nodes: LangGraphNode[]

Graph nodes (agents and their connections)

rootNode: string

Root node to start execution from

maxSteps?: number

Maximum number of steps to prevent infinite loops