Interface AgentOSOrchestratorConfig

interface AgentOSOrchestratorConfig {
    maxToolCallIterations?: number;
    defaultAgentTurnTimeoutMs?: number;
    enableConversationalPersistence?: boolean;
}

Properties

maxToolCallIterations?: number

The maximum number of sequential tool calls allowed within a single logical turn to prevent infinite loops.

defaultAgentTurnTimeoutMs?: number

Default timeout for a single GMI processing step (e.g., initial turn or tool result processing).

enableConversationalPersistence?: boolean

If true, conversation context will be saved and loaded from persistent storage.