ignore: fix typecheck in dev (#20702)

This commit is contained in:
Aiden Cline
2026-04-02 15:38:30 +00:00
committed by GitHub
parent 159ede2d5c
commit 510a1e8140
6 changed files with 72 additions and 71 deletions
+34 -1
View File
@@ -4744,10 +4744,29 @@
},
"required": ["input", "output"]
},
"experimental": {
"type": "boolean"
},
"status": {
"type": "string",
"enum": ["alpha", "beta", "deprecated"]
},
"options": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"headers": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string"
}
},
"provider": {
"type": "object",
"properties": {
@@ -4758,6 +4777,19 @@
"type": "string"
}
}
},
"variants": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
}
},
"required": [
@@ -4768,7 +4800,8 @@
"reasoning",
"temperature",
"tool_call",
"limit"
"limit",
"options"
]
}
}