Skip to content

Commit cf75036

Browse files
chore: generate
1 parent 6f8e1dd commit cf75036

2 files changed

Lines changed: 66 additions & 0 deletions

File tree

packages/sdk/js/src/v2/gen/types.gen.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2100,6 +2100,20 @@ export type Model = {
21002100
[key: string]: string
21012101
}
21022102
release_date: string
2103+
reasoning_options?: Array<
2104+
| {
2105+
type: "effort"
2106+
values: Array<string>
2107+
}
2108+
| {
2109+
type: "toggle"
2110+
}
2111+
| {
2112+
type: "budget_tokens"
2113+
min?: number
2114+
max?: number
2115+
}
2116+
>
21032117
variants?: {
21042118
[key: string]: {
21052119
[key: string]: unknown

packages/sdk/openapi.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21777,6 +21777,58 @@
2177721777
"release_date": {
2177821778
"type": "string"
2177921779
},
21780+
"reasoning_options": {
21781+
"type": "array",
21782+
"items": {
21783+
"anyOf": [
21784+
{
21785+
"type": "object",
21786+
"properties": {
21787+
"type": {
21788+
"type": "string",
21789+
"enum": ["effort"]
21790+
},
21791+
"values": {
21792+
"type": "array",
21793+
"items": {
21794+
"type": "string"
21795+
}
21796+
}
21797+
},
21798+
"required": ["type", "values"],
21799+
"additionalProperties": false
21800+
},
21801+
{
21802+
"type": "object",
21803+
"properties": {
21804+
"type": {
21805+
"type": "string",
21806+
"enum": ["toggle"]
21807+
}
21808+
},
21809+
"required": ["type"],
21810+
"additionalProperties": false
21811+
},
21812+
{
21813+
"type": "object",
21814+
"properties": {
21815+
"type": {
21816+
"type": "string",
21817+
"enum": ["budget_tokens"]
21818+
},
21819+
"min": {
21820+
"type": "number"
21821+
},
21822+
"max": {
21823+
"type": "number"
21824+
}
21825+
},
21826+
"required": ["type"],
21827+
"additionalProperties": false
21828+
}
21829+
]
21830+
}
21831+
},
2178021832
"variants": {
2178121833
"type": "object",
2178221834
"additionalProperties": {

0 commit comments

Comments
 (0)