added optional request params and context limit from GOOSE_PREDEFINED_MODELS (#6489)

This commit is contained in:
Zane
2026-01-16 10:12:14 -08:00
committed by GitHub
parent 351e99b82d
commit 080a0e04ba
12 changed files with 140 additions and 13 deletions
+16
View File
@@ -4524,6 +4524,12 @@
"model_name": {
"type": "string"
},
"request_params": {
"type": "object",
"description": "Provider-specific request parameters (e.g., anthropic_beta headers)",
"additionalProperties": {},
"nullable": true
},
"temperature": {
"type": "number",
"format": "float",
@@ -6327,6 +6333,11 @@
"session_id"
],
"properties": {
"context_limit": {
"type": "integer",
"nullable": true,
"minimum": 0
},
"model": {
"type": "string",
"nullable": true
@@ -6334,6 +6345,11 @@
"provider": {
"type": "string"
},
"request_params": {
"type": "object",
"additionalProperties": {},
"nullable": true
},
"session_id": {
"type": "string"
}