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
+12
View File
@@ -4168,11 +4168,23 @@ export type ProviderListResponses = {
input: Array<"text" | "audio" | "image" | "video" | "pdf">
output: Array<"text" | "audio" | "image" | "video" | "pdf">
}
experimental?: boolean
status?: "alpha" | "beta" | "deprecated"
options: {
[key: string]: unknown
}
headers?: {
[key: string]: string
}
provider?: {
npm?: string
api?: string
}
variants?: {
[key: string]: {
[key: string]: unknown
}
}
}
}
}>
+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"
]
}
}