diff options
| author | GitHub Action <[email protected]> | 2025-12-14 23:14:05 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-12-14 23:14:05 +0000 |
| commit | fc3ffb2bf9d194d05803aeae3fb766fe74bc4bf8 (patch) | |
| tree | 80141b59fe0d9b9c45a0fc877b8c4b73c6103968 /packages | |
| parent | 7368342bab50f1ffc71be59a54348b8246893141 (diff) | |
| download | opencode-fc3ffb2bf9d194d05803aeae3fb766fe74bc4bf8.tar.gz opencode-fc3ffb2bf9d194d05803aeae3fb766fe74bc4bf8.zip | |
chore: format code
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/sdk/js/src/v2/gen/types.gen.ts | 4 | ||||
| -rw-r--r-- | packages/sdk/openapi.json | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index 9d0bbcc92..9dc057ba5 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -1518,6 +1518,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 } } diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json index 98c8b3586..372b0a63d 100644 --- a/packages/sdk/openapi.json +++ b/packages/sdk/openapi.json @@ -8279,6 +8279,10 @@ "items": { "type": "string" } + }, + "continue_loop_on_deny": { + "description": "Continue the agent loop when a tool call is denied", + "type": "boolean" } } } |
