chore: generate
This commit is contained in:
parent
6f8e1dda15
commit
cf7503687a
2 changed files with 66 additions and 0 deletions
|
|
@ -2100,6 +2100,20 @@ export type Model = {
|
||||||
[key: string]: string
|
[key: string]: string
|
||||||
}
|
}
|
||||||
release_date: string
|
release_date: string
|
||||||
|
reasoning_options?: Array<
|
||||||
|
| {
|
||||||
|
type: "effort"
|
||||||
|
values: Array<string>
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: "toggle"
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: "budget_tokens"
|
||||||
|
min?: number
|
||||||
|
max?: number
|
||||||
|
}
|
||||||
|
>
|
||||||
variants?: {
|
variants?: {
|
||||||
[key: string]: {
|
[key: string]: {
|
||||||
[key: string]: unknown
|
[key: string]: unknown
|
||||||
|
|
|
||||||
|
|
@ -21777,6 +21777,58 @@
|
||||||
"release_date": {
|
"release_date": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"reasoning_options": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["effort"]
|
||||||
|
},
|
||||||
|
"values": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["type", "values"],
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["toggle"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["type"],
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["budget_tokens"]
|
||||||
|
},
|
||||||
|
"min": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"max": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["type"],
|
||||||
|
"additionalProperties": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"variants": {
|
"variants": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": {
|
"additionalProperties": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue