fix(config): allow active provider model status (#26592)

Co-authored-by: Developer <temp@example.com>
This commit is contained in:
Kit Langton
2026-05-09 18:59:05 -04:00
committed by GitHub
co-authored by Developer
parent 818b56dbd0
commit 00c3248295
6 changed files with 43 additions and 6 deletions
+2 -2
View File
@@ -1065,7 +1065,7 @@ export type ProviderConfig = {
output: Array<"text" | "audio" | "image" | "video" | "pdf">
}
experimental?: boolean
status?: "alpha" | "beta" | "deprecated"
status?: "alpha" | "beta" | "deprecated" | "active"
options?: {
[key: string]: unknown
}
@@ -3012,7 +3012,7 @@ export type ProviderListResponses = {
output: Array<"text" | "audio" | "image" | "video" | "pdf">
}
experimental?: boolean
status?: "alpha" | "beta" | "deprecated"
status?: "alpha" | "beta" | "deprecated" | "active"
options: {
[key: string]: unknown
}
+1 -1
View File
@@ -1060,7 +1060,7 @@ export type ProviderConfig = {
output: Array<"text" | "audio" | "image" | "video" | "pdf">
}
experimental?: boolean
status?: "alpha" | "beta" | "deprecated"
status?: "alpha" | "beta" | "deprecated" | "active"
provider?: {
npm?: string
api?: string