diff options
Diffstat (limited to 'packages/sdk')
| -rw-r--r-- | packages/sdk/js/src/gen/types.gen.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index 60a68840c..6a5375f31 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -966,6 +966,10 @@ export type AgentConfig = { * Hex color code for the agent (e.g., #FF5733) */ color?: string + /** + * Maximum number of agentic iterations before forcing text-only response + */ + maxSteps?: number permission?: { edit?: "ask" | "allow" | "deny" bash?: @@ -986,6 +990,7 @@ export type AgentConfig = { } | boolean | ("subagent" | "primary" | "all") + | number | { edit?: "ask" | "allow" | "deny" bash?: @@ -1558,6 +1563,7 @@ export type Agent = { options: { [key: string]: unknown } + maxSteps?: number } export type McpStatusConnected = { |
