feat: add max_turns to recipe and subagent settings (#6687)

Signed-off-by: Jonathan Hult <Jonathan@JonathanHult.com>
This commit is contained in:
Jonathan Hult
2026-01-28 09:43:00 -06:00
committed by GitHub
parent 3ec5143635
commit b8810be806
6 changed files with 34 additions and 3 deletions
+5
View File
@@ -6087,6 +6087,11 @@
"type": "string",
"nullable": true
},
"max_turns": {
"type": "integer",
"nullable": true,
"minimum": 0
},
"temperature": {
"type": "number",
"format": "float",
+1
View File
@@ -987,6 +987,7 @@ export type SetSlashCommandRequest = {
export type Settings = {
goose_model?: string | null;
goose_provider?: string | null;
max_turns?: number | null;
temperature?: number | null;
};