chore: generate
parent
ed4ce67cdc
commit
d4cf78bceb
|
|
@ -1651,6 +1651,10 @@ export type Config = {
|
|||
* Continue the agent loop when a tool call is denied
|
||||
*/
|
||||
continue_loop_on_deny?: boolean
|
||||
/**
|
||||
* Timeout in milliseconds for model context protocol (MCP) requests
|
||||
*/
|
||||
mcp_timeout?: number
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8767,6 +8767,12 @@
|
|||
"continue_loop_on_deny": {
|
||||
"description": "Continue the agent loop when a tool call is denied",
|
||||
"type": "boolean"
|
||||
},
|
||||
"mcp_timeout": {
|
||||
"description": "Timeout in milliseconds for model context protocol (MCP) requests",
|
||||
"type": "integer",
|
||||
"exclusiveMinimum": 0,
|
||||
"maximum": 9007199254740991
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue