File tree 5 files changed +19
-1
lines changed
5 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 64
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-084b8f68408c6b689a55200a78bcf233769bfcd8e999d9fadaeb399152b05bcd .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-47007cc1aa5bc7b74107a99b377925978a0bd376ed67bdae724e80d5d0b63d57 .yml
Original file line number Diff line number Diff line change @@ -1000,6 +1000,8 @@ export interface AssistantCreateParams {
1000
1000
*/
1001
1001
model :
1002
1002
| ( string & { } )
1003
+ | 'gpt-4o'
1004
+ | 'gpt-4o-2024-05-13'
1003
1005
| 'gpt-4-turbo'
1004
1006
| 'gpt-4-turbo-2024-04-09'
1005
1007
| 'gpt-4-0125-preview'
Original file line number Diff line number Diff line change @@ -660,6 +660,8 @@ export interface RunCreateParamsBase {
660
660
*/
661
661
model ?:
662
662
| ( string & { } )
663
+ | 'gpt-4o'
664
+ | 'gpt-4o-2024-05-13'
663
665
| 'gpt-4-turbo'
664
666
| 'gpt-4-turbo-2024-04-09'
665
667
| 'gpt-4-0125-preview'
@@ -919,6 +921,8 @@ export interface RunCreateAndPollParams {
919
921
*/
920
922
model ?:
921
923
| ( string & { } )
924
+ | 'gpt-4o'
925
+ | 'gpt-4o-2024-05-13'
922
926
| 'gpt-4-turbo'
923
927
| 'gpt-4-turbo-2024-04-09'
924
928
| 'gpt-4-0125-preview'
@@ -1124,6 +1128,8 @@ export interface RunCreateAndStreamParams {
1124
1128
*/
1125
1129
model ?:
1126
1130
| ( string & { } )
1131
+ | 'gpt-4o'
1132
+ | 'gpt-4o-2024-05-13'
1127
1133
| 'gpt-4-turbo'
1128
1134
| 'gpt-4-turbo-2024-04-09'
1129
1135
| 'gpt-4-0125-preview'
@@ -1329,6 +1335,8 @@ export interface RunStreamParams {
1329
1335
*/
1330
1336
model ?:
1331
1337
| ( string & { } )
1338
+ | 'gpt-4o'
1339
+ | 'gpt-4o-2024-05-13'
1332
1340
| 'gpt-4-turbo'
1333
1341
| 'gpt-4-turbo-2024-04-09'
1334
1342
| 'gpt-4-0125-preview'
Original file line number Diff line number Diff line change @@ -492,6 +492,8 @@ export interface ThreadCreateAndRunParamsBase {
492
492
*/
493
493
model ?:
494
494
| ( string & { } )
495
+ | 'gpt-4o'
496
+ | 'gpt-4o-2024-05-13'
495
497
| 'gpt-4-turbo'
496
498
| 'gpt-4-turbo-2024-04-09'
497
499
| 'gpt-4-0125-preview'
@@ -849,6 +851,8 @@ export interface ThreadCreateAndRunPollParams {
849
851
*/
850
852
model ?:
851
853
| ( string & { } )
854
+ | 'gpt-4o'
855
+ | 'gpt-4o-2024-05-13'
852
856
| 'gpt-4-turbo'
853
857
| 'gpt-4-turbo-2024-04-09'
854
858
| 'gpt-4-0125-preview'
@@ -1178,6 +1182,8 @@ export interface ThreadCreateAndRunStreamParams {
1178
1182
*/
1179
1183
model ?:
1180
1184
| ( string & { } )
1185
+ | 'gpt-4o'
1186
+ | 'gpt-4o-2024-05-13'
1181
1187
| 'gpt-4-turbo'
1182
1188
| 'gpt-4-turbo-2024-04-09'
1183
1189
| 'gpt-4-0125-preview'
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ export class Chat extends APIResource {
9
9
}
10
10
11
11
export type ChatModel =
12
+ | 'gpt-4o'
13
+ | 'gpt-4o-2024-05-13'
12
14
| 'gpt-4-turbo'
13
15
| 'gpt-4-turbo-2024-04-09'
14
16
| 'gpt-4-0125-preview'
You can’t perform that action at this time.
0 commit comments