Merge branch 'dev' into llm-centralization

This commit is contained in:
Aiden Cline 2025-12-14 15:18:00 -08:00 committed by GitHub
commit 7c395e612e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 19 additions and 16 deletions

View file

@ -1519,6 +1519,10 @@ export type Config = {
* Tools that should only be available to primary agents.
*/
primary_tools?: Array<string>
/**
* Continue the agent loop when a tool call is denied
*/
continue_loop_on_deny?: boolean
}
}

View file

@ -8283,6 +8283,10 @@
"items": {
"type": "string"
}
},
"continue_loop_on_deny": {
"description": "Continue the agent loop when a tool call is denied",
"type": "boolean"
}
}
}