fix(config): allow active provider model status
This commit is contained in:
parent
818b56dbd0
commit
3aeb870e71
6 changed files with 43 additions and 6 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -11725,7 +11725,7 @@
|
|||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"enum": ["alpha", "beta", "deprecated"]
|
||||
"enum": ["alpha", "beta", "deprecated", "active"]
|
||||
},
|
||||
"provider": {
|
||||
"type": "object",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue