@hautechai/sdk 2.3.5 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1172 -621
- package/dist/index.d.ts +1172 -621
- package/dist/index.js +162 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +141 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3097,7 +3097,7 @@ declare const GPTV3InputModel: {
|
|
|
3097
3097
|
* OpenAPI spec version: 1.0
|
|
3098
3098
|
*/
|
|
3099
3099
|
|
|
3100
|
-
type
|
|
3100
|
+
type GPTV3ResponseInputItemMessageContentItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
3101
3101
|
|
|
3102
3102
|
/**
|
|
3103
3103
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3108,9 +3108,11 @@ type GPTV3SystemMessageDtoContentItemOneOfItem = GPTV3TextInputDto | GPTV3ImageI
|
|
|
3108
3108
|
/**
|
|
3109
3109
|
* The role of the message sender.
|
|
3110
3110
|
*/
|
|
3111
|
-
type
|
|
3112
|
-
declare const
|
|
3111
|
+
type GPTV3ResponseInputItemMessageRole = typeof GPTV3ResponseInputItemMessageRole[keyof typeof GPTV3ResponseInputItemMessageRole];
|
|
3112
|
+
declare const GPTV3ResponseInputItemMessageRole: {
|
|
3113
|
+
readonly user: "user";
|
|
3113
3114
|
readonly system: "system";
|
|
3115
|
+
readonly developer: "developer";
|
|
3114
3116
|
};
|
|
3115
3117
|
|
|
3116
3118
|
/**
|
|
@@ -3122,8 +3124,8 @@ declare const GPTV3SystemMessageDtoRole: {
|
|
|
3122
3124
|
/**
|
|
3123
3125
|
* The type of the message input. Always message.
|
|
3124
3126
|
*/
|
|
3125
|
-
type
|
|
3126
|
-
declare const
|
|
3127
|
+
type GPTV3ResponseInputItemMessageType = typeof GPTV3ResponseInputItemMessageType[keyof typeof GPTV3ResponseInputItemMessageType];
|
|
3128
|
+
declare const GPTV3ResponseInputItemMessageType: {
|
|
3127
3129
|
readonly message: "message";
|
|
3128
3130
|
};
|
|
3129
3131
|
|
|
@@ -3133,15 +3135,12 @@ declare const GPTV3SystemMessageDtoType: {
|
|
|
3133
3135
|
* Hautech API
|
|
3134
3136
|
* OpenAPI spec version: 1.0
|
|
3135
3137
|
*/
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
/** The type of the message input. Always message. */
|
|
3143
|
-
type: GPTV3SystemMessageDtoType;
|
|
3144
|
-
}
|
|
3138
|
+
type GPTV3ResponseInputItemMessageStatus = typeof GPTV3ResponseInputItemMessageStatus[keyof typeof GPTV3ResponseInputItemMessageStatus];
|
|
3139
|
+
declare const GPTV3ResponseInputItemMessageStatus: {
|
|
3140
|
+
readonly in_progress: "in_progress";
|
|
3141
|
+
readonly completed: "completed";
|
|
3142
|
+
readonly incomplete: "incomplete";
|
|
3143
|
+
};
|
|
3145
3144
|
|
|
3146
3145
|
/**
|
|
3147
3146
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3150,7 +3149,15 @@ interface GPTV3SystemMessageDto {
|
|
|
3150
3149
|
* OpenAPI spec version: 1.0
|
|
3151
3150
|
*/
|
|
3152
3151
|
|
|
3153
|
-
|
|
3152
|
+
interface GPTV3ResponseInputItemMessage {
|
|
3153
|
+
/** A list of input items (text, image, file). */
|
|
3154
|
+
content: GPTV3ResponseInputItemMessageContentItem[];
|
|
3155
|
+
/** The role of the message sender. */
|
|
3156
|
+
role: GPTV3ResponseInputItemMessageRole;
|
|
3157
|
+
/** The type of the message input. Always message. */
|
|
3158
|
+
type?: GPTV3ResponseInputItemMessageType;
|
|
3159
|
+
status?: GPTV3ResponseInputItemMessageStatus;
|
|
3160
|
+
}
|
|
3154
3161
|
|
|
3155
3162
|
/**
|
|
3156
3163
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3158,11 +3165,13 @@ type GPTV3UserMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDt
|
|
|
3158
3165
|
* Hautech API
|
|
3159
3166
|
* OpenAPI spec version: 1.0
|
|
3160
3167
|
*/
|
|
3161
|
-
|
|
3162
3168
|
/**
|
|
3163
|
-
* The
|
|
3169
|
+
* The type of the message. This is the SECOND output item when file_search or web_search tool is called, containing the model response with citations.
|
|
3164
3170
|
*/
|
|
3165
|
-
type
|
|
3171
|
+
type GPTV3ResponseOutputMessageDtoType = typeof GPTV3ResponseOutputMessageDtoType[keyof typeof GPTV3ResponseOutputMessageDtoType];
|
|
3172
|
+
declare const GPTV3ResponseOutputMessageDtoType: {
|
|
3173
|
+
readonly message: "message";
|
|
3174
|
+
};
|
|
3166
3175
|
|
|
3167
3176
|
/**
|
|
3168
3177
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3173,9 +3182,9 @@ type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[]
|
|
|
3173
3182
|
/**
|
|
3174
3183
|
* The role of the message sender.
|
|
3175
3184
|
*/
|
|
3176
|
-
type
|
|
3177
|
-
declare const
|
|
3178
|
-
readonly
|
|
3185
|
+
type GPTV3ResponseOutputMessageDtoRole = typeof GPTV3ResponseOutputMessageDtoRole[keyof typeof GPTV3ResponseOutputMessageDtoRole];
|
|
3186
|
+
declare const GPTV3ResponseOutputMessageDtoRole: {
|
|
3187
|
+
readonly assistant: "assistant";
|
|
3179
3188
|
};
|
|
3180
3189
|
|
|
3181
3190
|
/**
|
|
@@ -3185,11 +3194,11 @@ declare const GPTV3UserMessageDtoRole: {
|
|
|
3185
3194
|
* OpenAPI spec version: 1.0
|
|
3186
3195
|
*/
|
|
3187
3196
|
/**
|
|
3188
|
-
* The type of
|
|
3197
|
+
* The type of content.
|
|
3189
3198
|
*/
|
|
3190
|
-
type
|
|
3191
|
-
declare const
|
|
3192
|
-
readonly
|
|
3199
|
+
type GPTV3ResponseOutputTextDtoType = typeof GPTV3ResponseOutputTextDtoType[keyof typeof GPTV3ResponseOutputTextDtoType];
|
|
3200
|
+
declare const GPTV3ResponseOutputTextDtoType: {
|
|
3201
|
+
readonly output_text: "output_text";
|
|
3193
3202
|
};
|
|
3194
3203
|
|
|
3195
3204
|
/**
|
|
@@ -3198,15 +3207,10 @@ declare const GPTV3UserMessageDtoType: {
|
|
|
3198
3207
|
* Hautech API
|
|
3199
3208
|
* OpenAPI spec version: 1.0
|
|
3200
3209
|
*/
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
/** The role of the message sender. */
|
|
3206
|
-
role: GPTV3UserMessageDtoRole;
|
|
3207
|
-
/** The type of the message input. Always message. */
|
|
3208
|
-
type: GPTV3UserMessageDtoType;
|
|
3209
|
-
}
|
|
3210
|
+
type GPTV3ResponseOutputTextFileCitationDtoType = typeof GPTV3ResponseOutputTextFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextFileCitationDtoType];
|
|
3211
|
+
declare const GPTV3ResponseOutputTextFileCitationDtoType: {
|
|
3212
|
+
readonly file_citation: "file_citation";
|
|
3213
|
+
};
|
|
3210
3214
|
|
|
3211
3215
|
/**
|
|
3212
3216
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3215,7 +3219,15 @@ interface GPTV3UserMessageDto {
|
|
|
3215
3219
|
* OpenAPI spec version: 1.0
|
|
3216
3220
|
*/
|
|
3217
3221
|
|
|
3218
|
-
|
|
3222
|
+
interface GPTV3ResponseOutputTextFileCitationDto {
|
|
3223
|
+
/** The ID of the file. */
|
|
3224
|
+
file_id: string;
|
|
3225
|
+
/** The filename of the file cited. */
|
|
3226
|
+
filename: string;
|
|
3227
|
+
/** The index of the file in the list of files. */
|
|
3228
|
+
index: number;
|
|
3229
|
+
type: GPTV3ResponseOutputTextFileCitationDtoType;
|
|
3230
|
+
}
|
|
3219
3231
|
|
|
3220
3232
|
/**
|
|
3221
3233
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3223,11 +3235,29 @@ type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GP
|
|
|
3223
3235
|
* Hautech API
|
|
3224
3236
|
* OpenAPI spec version: 1.0
|
|
3225
3237
|
*/
|
|
3238
|
+
type GPTV3ResponseOutputTextURLCitationDtoType = typeof GPTV3ResponseOutputTextURLCitationDtoType[keyof typeof GPTV3ResponseOutputTextURLCitationDtoType];
|
|
3239
|
+
declare const GPTV3ResponseOutputTextURLCitationDtoType: {
|
|
3240
|
+
readonly url_citation: "url_citation";
|
|
3241
|
+
};
|
|
3226
3242
|
|
|
3227
3243
|
/**
|
|
3228
|
-
*
|
|
3244
|
+
* Generated by orval v7.10.0 🍺
|
|
3245
|
+
* Do not edit manually.
|
|
3246
|
+
* Hautech API
|
|
3247
|
+
* OpenAPI spec version: 1.0
|
|
3229
3248
|
*/
|
|
3230
|
-
|
|
3249
|
+
|
|
3250
|
+
interface GPTV3ResponseOutputTextURLCitationDto {
|
|
3251
|
+
/** The index of the last character of the URL citation in the message. */
|
|
3252
|
+
end_index: number;
|
|
3253
|
+
/** The index of the first character of the URL citation in the message. */
|
|
3254
|
+
start_index: number;
|
|
3255
|
+
/** The title of the web resource. */
|
|
3256
|
+
title: string;
|
|
3257
|
+
type: GPTV3ResponseOutputTextURLCitationDtoType;
|
|
3258
|
+
/** The URL of the web resource. */
|
|
3259
|
+
url: string;
|
|
3260
|
+
}
|
|
3231
3261
|
|
|
3232
3262
|
/**
|
|
3233
3263
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3235,12 +3265,9 @@ type GPTV3InputInput = string | GPTV3InputInputOneOfItem[];
|
|
|
3235
3265
|
* Hautech API
|
|
3236
3266
|
* OpenAPI spec version: 1.0
|
|
3237
3267
|
*/
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
type GPTV3ResponseFormatTextDtoType = typeof GPTV3ResponseFormatTextDtoType[keyof typeof GPTV3ResponseFormatTextDtoType];
|
|
3242
|
-
declare const GPTV3ResponseFormatTextDtoType: {
|
|
3243
|
-
readonly text: "text";
|
|
3268
|
+
type GPTV3ResponseOutputTextContainerFileCitationDtoType = typeof GPTV3ResponseOutputTextContainerFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextContainerFileCitationDtoType];
|
|
3269
|
+
declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
|
|
3270
|
+
readonly container_file_citation: "container_file_citation";
|
|
3244
3271
|
};
|
|
3245
3272
|
|
|
3246
3273
|
/**
|
|
@@ -3250,9 +3277,18 @@ declare const GPTV3ResponseFormatTextDtoType: {
|
|
|
3250
3277
|
* OpenAPI spec version: 1.0
|
|
3251
3278
|
*/
|
|
3252
3279
|
|
|
3253
|
-
interface
|
|
3254
|
-
/** The
|
|
3255
|
-
|
|
3280
|
+
interface GPTV3ResponseOutputTextContainerFileCitationDto {
|
|
3281
|
+
/** The ID of the container file. */
|
|
3282
|
+
container_id: string;
|
|
3283
|
+
/** The index of the last character of the container file citation. */
|
|
3284
|
+
end_index: number;
|
|
3285
|
+
/** The ID of the file. */
|
|
3286
|
+
file_id: string;
|
|
3287
|
+
/** The filename of the container file cited. */
|
|
3288
|
+
filename: string;
|
|
3289
|
+
/** The index of the first character of the container file citation. */
|
|
3290
|
+
start_index: number;
|
|
3291
|
+
type: GPTV3ResponseOutputTextContainerFileCitationDtoType;
|
|
3256
3292
|
}
|
|
3257
3293
|
|
|
3258
3294
|
/**
|
|
@@ -3261,11 +3297,9 @@ interface GPTV3ResponseFormatTextDto {
|
|
|
3261
3297
|
* Hautech API
|
|
3262
3298
|
* OpenAPI spec version: 1.0
|
|
3263
3299
|
*/
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
type GPTV3ResponseFormatJsonSchemaDtoSchema = {
|
|
3268
|
-
[key: string]: unknown;
|
|
3300
|
+
type GPTV3ResponseOutputTextFilePathDtoType = typeof GPTV3ResponseOutputTextFilePathDtoType[keyof typeof GPTV3ResponseOutputTextFilePathDtoType];
|
|
3301
|
+
declare const GPTV3ResponseOutputTextFilePathDtoType: {
|
|
3302
|
+
readonly file_path: "file_path";
|
|
3269
3303
|
};
|
|
3270
3304
|
|
|
3271
3305
|
/**
|
|
@@ -3274,13 +3308,14 @@ type GPTV3ResponseFormatJsonSchemaDtoSchema = {
|
|
|
3274
3308
|
* Hautech API
|
|
3275
3309
|
* OpenAPI spec version: 1.0
|
|
3276
3310
|
*/
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
*/
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3311
|
+
|
|
3312
|
+
interface GPTV3ResponseOutputTextFilePathDto {
|
|
3313
|
+
/** The ID of the file. */
|
|
3314
|
+
file_id: string;
|
|
3315
|
+
/** The index of the file in the list of files. */
|
|
3316
|
+
index: number;
|
|
3317
|
+
type: GPTV3ResponseOutputTextFilePathDtoType;
|
|
3318
|
+
}
|
|
3284
3319
|
|
|
3285
3320
|
/**
|
|
3286
3321
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3289,18 +3324,7 @@ declare const GPTV3ResponseFormatJsonSchemaDtoType: {
|
|
|
3289
3324
|
* OpenAPI spec version: 1.0
|
|
3290
3325
|
*/
|
|
3291
3326
|
|
|
3292
|
-
|
|
3293
|
-
/** The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
|
|
3294
|
-
name: string;
|
|
3295
|
-
/** The schema for the response format, described satisfies a JSON Schema object. */
|
|
3296
|
-
schema: GPTV3ResponseFormatJsonSchemaDtoSchema;
|
|
3297
|
-
/** The type of response format being defined: json_schema. */
|
|
3298
|
-
type: GPTV3ResponseFormatJsonSchemaDtoType;
|
|
3299
|
-
/** A description of what the response format is for, used by the model to determine how to respond in the format. */
|
|
3300
|
-
description?: string;
|
|
3301
|
-
/** Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. */
|
|
3302
|
-
strict?: boolean;
|
|
3303
|
-
}
|
|
3327
|
+
type GPTV3ResponseOutputTextDtoAnnotationsItem = GPTV3ResponseOutputTextFileCitationDto | GPTV3ResponseOutputTextURLCitationDto | GPTV3ResponseOutputTextContainerFileCitationDto | GPTV3ResponseOutputTextFilePathDto;
|
|
3304
3328
|
|
|
3305
3329
|
/**
|
|
3306
3330
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3308,11 +3332,11 @@ interface GPTV3ResponseFormatJsonSchemaDto {
|
|
|
3308
3332
|
* Hautech API
|
|
3309
3333
|
* OpenAPI spec version: 1.0
|
|
3310
3334
|
*/
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3335
|
+
interface GPTV3ResponseOutputTextLogprobTopLogprobDto {
|
|
3336
|
+
token: string;
|
|
3337
|
+
bytes: number[];
|
|
3338
|
+
logprob: number;
|
|
3339
|
+
}
|
|
3316
3340
|
|
|
3317
3341
|
/**
|
|
3318
3342
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3321,9 +3345,11 @@ type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormat
|
|
|
3321
3345
|
* OpenAPI spec version: 1.0
|
|
3322
3346
|
*/
|
|
3323
3347
|
|
|
3324
|
-
interface
|
|
3325
|
-
|
|
3326
|
-
|
|
3348
|
+
interface GPTV3ResponseOutputTextLogprobDto {
|
|
3349
|
+
token: string;
|
|
3350
|
+
bytes: number[];
|
|
3351
|
+
logprob: number;
|
|
3352
|
+
top_logprobs: GPTV3ResponseOutputTextLogprobTopLogprobDto[];
|
|
3327
3353
|
}
|
|
3328
3354
|
|
|
3329
3355
|
/**
|
|
@@ -3332,14 +3358,17 @@ interface GPTV3TextConfigDto {
|
|
|
3332
3358
|
* Hautech API
|
|
3333
3359
|
* OpenAPI spec version: 1.0
|
|
3334
3360
|
*/
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
*/
|
|
3338
|
-
type
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3361
|
+
|
|
3362
|
+
interface GPTV3ResponseOutputTextDto {
|
|
3363
|
+
/** The type of content. */
|
|
3364
|
+
type: GPTV3ResponseOutputTextDtoType;
|
|
3365
|
+
/** The text content. */
|
|
3366
|
+
text: string;
|
|
3367
|
+
/** Annotations attached to spans of the output text (citations, file paths, etc). */
|
|
3368
|
+
annotations: GPTV3ResponseOutputTextDtoAnnotationsItem[];
|
|
3369
|
+
/** Log probabilities for tokens (when requested). */
|
|
3370
|
+
logprobs?: GPTV3ResponseOutputTextLogprobDto[];
|
|
3371
|
+
}
|
|
3343
3372
|
|
|
3344
3373
|
/**
|
|
3345
3374
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3348,13 +3377,11 @@ declare const GPTV3WebSearchToolDtoType: {
|
|
|
3348
3377
|
* OpenAPI spec version: 1.0
|
|
3349
3378
|
*/
|
|
3350
3379
|
/**
|
|
3351
|
-
*
|
|
3380
|
+
* The type of content.
|
|
3352
3381
|
*/
|
|
3353
|
-
type
|
|
3354
|
-
declare const
|
|
3355
|
-
readonly
|
|
3356
|
-
readonly medium: "medium";
|
|
3357
|
-
readonly high: "high";
|
|
3382
|
+
type GPTV3ResponseOutputRefusalDtoType = typeof GPTV3ResponseOutputRefusalDtoType[keyof typeof GPTV3ResponseOutputRefusalDtoType];
|
|
3383
|
+
declare const GPTV3ResponseOutputRefusalDtoType: {
|
|
3384
|
+
readonly refusal: "refusal";
|
|
3358
3385
|
};
|
|
3359
3386
|
|
|
3360
3387
|
/**
|
|
@@ -3364,11 +3391,11 @@ declare const GPTV3WebSearchToolDtoSearchContextSize: {
|
|
|
3364
3391
|
* OpenAPI spec version: 1.0
|
|
3365
3392
|
*/
|
|
3366
3393
|
|
|
3367
|
-
interface
|
|
3368
|
-
/** The type of
|
|
3369
|
-
type:
|
|
3370
|
-
/**
|
|
3371
|
-
|
|
3394
|
+
interface GPTV3ResponseOutputRefusalDto {
|
|
3395
|
+
/** The type of content. */
|
|
3396
|
+
type: GPTV3ResponseOutputRefusalDtoType;
|
|
3397
|
+
/** The refusal explanation from the model. */
|
|
3398
|
+
refusal: string;
|
|
3372
3399
|
}
|
|
3373
3400
|
|
|
3374
3401
|
/**
|
|
@@ -3378,7 +3405,7 @@ interface GPTV3WebSearchToolDto {
|
|
|
3378
3405
|
* OpenAPI spec version: 1.0
|
|
3379
3406
|
*/
|
|
3380
3407
|
|
|
3381
|
-
type
|
|
3408
|
+
type GPTV3ResponseOutputMessageDtoContentItem = GPTV3ResponseOutputTextDto | GPTV3ResponseOutputRefusalDto;
|
|
3382
3409
|
|
|
3383
3410
|
/**
|
|
3384
3411
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3386,10 +3413,7 @@ type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3
|
|
|
3386
3413
|
* Hautech API
|
|
3387
3414
|
* OpenAPI spec version: 1.0
|
|
3388
3415
|
*/
|
|
3389
|
-
|
|
3390
|
-
* Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice.
|
|
3391
|
-
*/
|
|
3392
|
-
type GPTV3InputToolChoice = {
|
|
3416
|
+
type GPTV3ResponseOutputMessageDtoStatus = {
|
|
3393
3417
|
[key: string]: unknown;
|
|
3394
3418
|
};
|
|
3395
3419
|
|
|
@@ -3400,23 +3424,16 @@ type GPTV3InputToolChoice = {
|
|
|
3400
3424
|
* OpenAPI spec version: 1.0
|
|
3401
3425
|
*/
|
|
3402
3426
|
|
|
3403
|
-
interface
|
|
3404
|
-
/**
|
|
3405
|
-
|
|
3406
|
-
/**
|
|
3407
|
-
|
|
3408
|
-
/**
|
|
3409
|
-
|
|
3410
|
-
/**
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
tools?: GPTV3InputToolsItem[];
|
|
3414
|
-
/** Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice. */
|
|
3415
|
-
tool_choice?: GPTV3InputToolChoice;
|
|
3416
|
-
/** Maximum number of output tokens to generate. */
|
|
3417
|
-
max_output_tokens?: number;
|
|
3418
|
-
/** Specifies which additional data to include in the response. For file search, use ["file_search_call.results"] to include search results. */
|
|
3419
|
-
include?: string[];
|
|
3427
|
+
interface GPTV3ResponseOutputMessageDto {
|
|
3428
|
+
/** The unique identifier for the message. */
|
|
3429
|
+
id: string;
|
|
3430
|
+
/** The type of the message. This is the SECOND output item when file_search or web_search tool is called, containing the model response with citations. */
|
|
3431
|
+
type: GPTV3ResponseOutputMessageDtoType;
|
|
3432
|
+
/** The role of the message sender. */
|
|
3433
|
+
role: GPTV3ResponseOutputMessageDtoRole;
|
|
3434
|
+
/** The content of the message with annotations and citations. */
|
|
3435
|
+
content: GPTV3ResponseOutputMessageDtoContentItem[];
|
|
3436
|
+
status: GPTV3ResponseOutputMessageDtoStatus;
|
|
3420
3437
|
}
|
|
3421
3438
|
|
|
3422
3439
|
/**
|
|
@@ -3426,11 +3443,11 @@ interface GPTV3Input {
|
|
|
3426
3443
|
* OpenAPI spec version: 1.0
|
|
3427
3444
|
*/
|
|
3428
3445
|
/**
|
|
3429
|
-
* The type of the
|
|
3446
|
+
* The type of the file search result. This is the FIRST output item when file_search tool is called.
|
|
3430
3447
|
*/
|
|
3431
|
-
type
|
|
3432
|
-
declare const
|
|
3433
|
-
readonly
|
|
3448
|
+
type GPTV3ResponseFileSearchToolCallDtoType = typeof GPTV3ResponseFileSearchToolCallDtoType[keyof typeof GPTV3ResponseFileSearchToolCallDtoType];
|
|
3449
|
+
declare const GPTV3ResponseFileSearchToolCallDtoType: {
|
|
3450
|
+
readonly file_search_call: "file_search_call";
|
|
3434
3451
|
};
|
|
3435
3452
|
|
|
3436
3453
|
/**
|
|
@@ -3440,29 +3457,426 @@ declare const GPTV3MessageContentDtoType: {
|
|
|
3440
3457
|
* OpenAPI spec version: 1.0
|
|
3441
3458
|
*/
|
|
3442
3459
|
/**
|
|
3443
|
-
* The
|
|
3460
|
+
* The status of the file search call.
|
|
3444
3461
|
*/
|
|
3445
|
-
type
|
|
3446
|
-
declare const
|
|
3447
|
-
readonly
|
|
3448
|
-
|
|
3449
|
-
|
|
3462
|
+
type GPTV3ResponseFileSearchToolCallDtoStatus = typeof GPTV3ResponseFileSearchToolCallDtoStatus[keyof typeof GPTV3ResponseFileSearchToolCallDtoStatus];
|
|
3463
|
+
declare const GPTV3ResponseFileSearchToolCallDtoStatus: {
|
|
3464
|
+
readonly in_progress: "in_progress";
|
|
3465
|
+
readonly searching: "searching";
|
|
3466
|
+
readonly completed: "completed";
|
|
3467
|
+
readonly incomplete: "incomplete";
|
|
3468
|
+
readonly failed: "failed";
|
|
3469
|
+
};
|
|
3470
|
+
|
|
3471
|
+
/**
|
|
3472
|
+
* Generated by orval v7.10.0 🍺
|
|
3473
|
+
* Do not edit manually.
|
|
3474
|
+
* Hautech API
|
|
3475
|
+
* OpenAPI spec version: 1.0
|
|
3476
|
+
*/
|
|
3477
|
+
/**
|
|
3478
|
+
* Optional attributes map.
|
|
3479
|
+
*/
|
|
3480
|
+
type GPTV3ResponseFileSearchToolCallResultDtoAttributes = {
|
|
3481
|
+
[key: string]: unknown;
|
|
3482
|
+
};
|
|
3483
|
+
|
|
3484
|
+
/**
|
|
3485
|
+
* Generated by orval v7.10.0 🍺
|
|
3486
|
+
* Do not edit manually.
|
|
3487
|
+
* Hautech API
|
|
3488
|
+
* OpenAPI spec version: 1.0
|
|
3489
|
+
*/
|
|
3490
|
+
|
|
3491
|
+
interface GPTV3ResponseFileSearchToolCallResultDto {
|
|
3492
|
+
/** Optional attributes map. */
|
|
3493
|
+
attributes: GPTV3ResponseFileSearchToolCallResultDtoAttributes;
|
|
3494
|
+
/** The unique ID of the file. */
|
|
3495
|
+
file_id?: string;
|
|
3496
|
+
/** The name of the file. */
|
|
3497
|
+
filename?: string;
|
|
3498
|
+
/** The relevance score of the file. */
|
|
3499
|
+
score?: number;
|
|
3500
|
+
/** The text that was retrieved from the file. */
|
|
3501
|
+
text?: string;
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
/**
|
|
3505
|
+
* Generated by orval v7.10.0 🍺
|
|
3506
|
+
* Do not edit manually.
|
|
3507
|
+
* Hautech API
|
|
3508
|
+
* OpenAPI spec version: 1.0
|
|
3509
|
+
*/
|
|
3510
|
+
|
|
3511
|
+
interface GPTV3ResponseFileSearchToolCallDto {
|
|
3512
|
+
/** The type of the file search result. This is the FIRST output item when file_search tool is called. */
|
|
3513
|
+
type: GPTV3ResponseFileSearchToolCallDtoType;
|
|
3514
|
+
/** The unique identifier for this file search call. */
|
|
3515
|
+
id: string;
|
|
3516
|
+
/** The status of the file search call. */
|
|
3517
|
+
status: GPTV3ResponseFileSearchToolCallDtoStatus;
|
|
3518
|
+
/** The search queries used for the file search. */
|
|
3519
|
+
queries: string[];
|
|
3520
|
+
/**
|
|
3521
|
+
* The search results from the file search. Can be null if no results found.
|
|
3522
|
+
* @nullable
|
|
3523
|
+
*/
|
|
3524
|
+
results?: GPTV3ResponseFileSearchToolCallResultDto[] | null;
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3527
|
+
/**
|
|
3528
|
+
* Generated by orval v7.10.0 🍺
|
|
3529
|
+
* Do not edit manually.
|
|
3530
|
+
* Hautech API
|
|
3531
|
+
* OpenAPI spec version: 1.0
|
|
3532
|
+
*/
|
|
3533
|
+
type GPTV3ResponseComputerToolCallClickDtoType = typeof GPTV3ResponseComputerToolCallClickDtoType[keyof typeof GPTV3ResponseComputerToolCallClickDtoType];
|
|
3534
|
+
declare const GPTV3ResponseComputerToolCallClickDtoType: {
|
|
3535
|
+
readonly click: "click";
|
|
3536
|
+
};
|
|
3537
|
+
|
|
3538
|
+
/**
|
|
3539
|
+
* Generated by orval v7.10.0 🍺
|
|
3540
|
+
* Do not edit manually.
|
|
3541
|
+
* Hautech API
|
|
3542
|
+
* OpenAPI spec version: 1.0
|
|
3543
|
+
*/
|
|
3544
|
+
type GPTV3ResponseComputerToolCallClickDtoButton = typeof GPTV3ResponseComputerToolCallClickDtoButton[keyof typeof GPTV3ResponseComputerToolCallClickDtoButton];
|
|
3545
|
+
declare const GPTV3ResponseComputerToolCallClickDtoButton: {
|
|
3546
|
+
readonly left: "left";
|
|
3547
|
+
readonly right: "right";
|
|
3548
|
+
readonly wheel: "wheel";
|
|
3549
|
+
readonly back: "back";
|
|
3550
|
+
readonly forward: "forward";
|
|
3551
|
+
};
|
|
3552
|
+
|
|
3553
|
+
/**
|
|
3554
|
+
* Generated by orval v7.10.0 🍺
|
|
3555
|
+
* Do not edit manually.
|
|
3556
|
+
* Hautech API
|
|
3557
|
+
* OpenAPI spec version: 1.0
|
|
3558
|
+
*/
|
|
3559
|
+
|
|
3560
|
+
interface GPTV3ResponseComputerToolCallClickDto {
|
|
3561
|
+
type: GPTV3ResponseComputerToolCallClickDtoType;
|
|
3562
|
+
button: GPTV3ResponseComputerToolCallClickDtoButton;
|
|
3563
|
+
x: number;
|
|
3564
|
+
y: number;
|
|
3565
|
+
}
|
|
3566
|
+
|
|
3567
|
+
/**
|
|
3568
|
+
* Generated by orval v7.10.0 🍺
|
|
3569
|
+
* Do not edit manually.
|
|
3570
|
+
* Hautech API
|
|
3571
|
+
* OpenAPI spec version: 1.0
|
|
3572
|
+
*/
|
|
3573
|
+
type GPTV3ResponseComputerToolCallDoubleClickDtoType = typeof GPTV3ResponseComputerToolCallDoubleClickDtoType[keyof typeof GPTV3ResponseComputerToolCallDoubleClickDtoType];
|
|
3574
|
+
declare const GPTV3ResponseComputerToolCallDoubleClickDtoType: {
|
|
3575
|
+
readonly double_click: "double_click";
|
|
3576
|
+
};
|
|
3577
|
+
|
|
3578
|
+
/**
|
|
3579
|
+
* Generated by orval v7.10.0 🍺
|
|
3580
|
+
* Do not edit manually.
|
|
3581
|
+
* Hautech API
|
|
3582
|
+
* OpenAPI spec version: 1.0
|
|
3583
|
+
*/
|
|
3584
|
+
|
|
3585
|
+
interface GPTV3ResponseComputerToolCallDoubleClickDto {
|
|
3586
|
+
type: GPTV3ResponseComputerToolCallDoubleClickDtoType;
|
|
3587
|
+
x: number;
|
|
3588
|
+
y: number;
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3591
|
+
/**
|
|
3592
|
+
* Generated by orval v7.10.0 🍺
|
|
3593
|
+
* Do not edit manually.
|
|
3594
|
+
* Hautech API
|
|
3595
|
+
* OpenAPI spec version: 1.0
|
|
3596
|
+
*/
|
|
3597
|
+
type GPTV3ResponseComputerToolCallDragDtoType = typeof GPTV3ResponseComputerToolCallDragDtoType[keyof typeof GPTV3ResponseComputerToolCallDragDtoType];
|
|
3598
|
+
declare const GPTV3ResponseComputerToolCallDragDtoType: {
|
|
3599
|
+
readonly drag: "drag";
|
|
3600
|
+
};
|
|
3601
|
+
|
|
3602
|
+
/**
|
|
3603
|
+
* Generated by orval v7.10.0 🍺
|
|
3604
|
+
* Do not edit manually.
|
|
3605
|
+
* Hautech API
|
|
3606
|
+
* OpenAPI spec version: 1.0
|
|
3607
|
+
*/
|
|
3608
|
+
interface GPTV3ResponseComputerToolCallDragPathDto {
|
|
3609
|
+
x: number;
|
|
3610
|
+
y: number;
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3613
|
+
/**
|
|
3614
|
+
* Generated by orval v7.10.0 🍺
|
|
3615
|
+
* Do not edit manually.
|
|
3616
|
+
* Hautech API
|
|
3617
|
+
* OpenAPI spec version: 1.0
|
|
3618
|
+
*/
|
|
3619
|
+
|
|
3620
|
+
interface GPTV3ResponseComputerToolCallDragDto {
|
|
3621
|
+
type: GPTV3ResponseComputerToolCallDragDtoType;
|
|
3622
|
+
path: GPTV3ResponseComputerToolCallDragPathDto[];
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
/**
|
|
3626
|
+
* Generated by orval v7.10.0 🍺
|
|
3627
|
+
* Do not edit manually.
|
|
3628
|
+
* Hautech API
|
|
3629
|
+
* OpenAPI spec version: 1.0
|
|
3630
|
+
*/
|
|
3631
|
+
type GPTV3ResponseComputerToolCallKeypressDtoType = typeof GPTV3ResponseComputerToolCallKeypressDtoType[keyof typeof GPTV3ResponseComputerToolCallKeypressDtoType];
|
|
3632
|
+
declare const GPTV3ResponseComputerToolCallKeypressDtoType: {
|
|
3633
|
+
readonly keypress: "keypress";
|
|
3634
|
+
};
|
|
3635
|
+
|
|
3636
|
+
/**
|
|
3637
|
+
* Generated by orval v7.10.0 🍺
|
|
3638
|
+
* Do not edit manually.
|
|
3639
|
+
* Hautech API
|
|
3640
|
+
* OpenAPI spec version: 1.0
|
|
3641
|
+
*/
|
|
3642
|
+
|
|
3643
|
+
interface GPTV3ResponseComputerToolCallKeypressDto {
|
|
3644
|
+
type: GPTV3ResponseComputerToolCallKeypressDtoType;
|
|
3645
|
+
keys: string[];
|
|
3646
|
+
}
|
|
3647
|
+
|
|
3648
|
+
/**
|
|
3649
|
+
* Generated by orval v7.10.0 🍺
|
|
3650
|
+
* Do not edit manually.
|
|
3651
|
+
* Hautech API
|
|
3652
|
+
* OpenAPI spec version: 1.0
|
|
3653
|
+
*/
|
|
3654
|
+
type GPTV3ResponseComputerToolCallMoveDtoType = typeof GPTV3ResponseComputerToolCallMoveDtoType[keyof typeof GPTV3ResponseComputerToolCallMoveDtoType];
|
|
3655
|
+
declare const GPTV3ResponseComputerToolCallMoveDtoType: {
|
|
3656
|
+
readonly move: "move";
|
|
3657
|
+
};
|
|
3658
|
+
|
|
3659
|
+
/**
|
|
3660
|
+
* Generated by orval v7.10.0 🍺
|
|
3661
|
+
* Do not edit manually.
|
|
3662
|
+
* Hautech API
|
|
3663
|
+
* OpenAPI spec version: 1.0
|
|
3664
|
+
*/
|
|
3665
|
+
|
|
3666
|
+
interface GPTV3ResponseComputerToolCallMoveDto {
|
|
3667
|
+
type: GPTV3ResponseComputerToolCallMoveDtoType;
|
|
3668
|
+
x: number;
|
|
3669
|
+
y: number;
|
|
3670
|
+
}
|
|
3671
|
+
|
|
3672
|
+
/**
|
|
3673
|
+
* Generated by orval v7.10.0 🍺
|
|
3674
|
+
* Do not edit manually.
|
|
3675
|
+
* Hautech API
|
|
3676
|
+
* OpenAPI spec version: 1.0
|
|
3677
|
+
*/
|
|
3678
|
+
type GPTV3ResponseComputerToolCallScreenshotDtoType = typeof GPTV3ResponseComputerToolCallScreenshotDtoType[keyof typeof GPTV3ResponseComputerToolCallScreenshotDtoType];
|
|
3679
|
+
declare const GPTV3ResponseComputerToolCallScreenshotDtoType: {
|
|
3680
|
+
readonly screenshot: "screenshot";
|
|
3681
|
+
};
|
|
3682
|
+
|
|
3683
|
+
/**
|
|
3684
|
+
* Generated by orval v7.10.0 🍺
|
|
3685
|
+
* Do not edit manually.
|
|
3686
|
+
* Hautech API
|
|
3687
|
+
* OpenAPI spec version: 1.0
|
|
3688
|
+
*/
|
|
3689
|
+
|
|
3690
|
+
interface GPTV3ResponseComputerToolCallScreenshotDto {
|
|
3691
|
+
type: GPTV3ResponseComputerToolCallScreenshotDtoType;
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
/**
|
|
3695
|
+
* Generated by orval v7.10.0 🍺
|
|
3696
|
+
* Do not edit manually.
|
|
3697
|
+
* Hautech API
|
|
3698
|
+
* OpenAPI spec version: 1.0
|
|
3699
|
+
*/
|
|
3700
|
+
type GPTV3ResponseComputerToolCallScrollDtoType = typeof GPTV3ResponseComputerToolCallScrollDtoType[keyof typeof GPTV3ResponseComputerToolCallScrollDtoType];
|
|
3701
|
+
declare const GPTV3ResponseComputerToolCallScrollDtoType: {
|
|
3702
|
+
readonly scroll: "scroll";
|
|
3703
|
+
};
|
|
3704
|
+
|
|
3705
|
+
/**
|
|
3706
|
+
* Generated by orval v7.10.0 🍺
|
|
3707
|
+
* Do not edit manually.
|
|
3708
|
+
* Hautech API
|
|
3709
|
+
* OpenAPI spec version: 1.0
|
|
3710
|
+
*/
|
|
3711
|
+
|
|
3712
|
+
interface GPTV3ResponseComputerToolCallScrollDto {
|
|
3713
|
+
type: GPTV3ResponseComputerToolCallScrollDtoType;
|
|
3714
|
+
scroll_x: number;
|
|
3715
|
+
scroll_y: number;
|
|
3716
|
+
x: number;
|
|
3717
|
+
y: number;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
/**
|
|
3721
|
+
* Generated by orval v7.10.0 🍺
|
|
3722
|
+
* Do not edit manually.
|
|
3723
|
+
* Hautech API
|
|
3724
|
+
* OpenAPI spec version: 1.0
|
|
3725
|
+
*/
|
|
3726
|
+
type GPTV3ResponseComputerToolCallTypeDtoType = typeof GPTV3ResponseComputerToolCallTypeDtoType[keyof typeof GPTV3ResponseComputerToolCallTypeDtoType];
|
|
3727
|
+
declare const GPTV3ResponseComputerToolCallTypeDtoType: {
|
|
3728
|
+
readonly type: "type";
|
|
3729
|
+
};
|
|
3730
|
+
|
|
3731
|
+
/**
|
|
3732
|
+
* Generated by orval v7.10.0 🍺
|
|
3733
|
+
* Do not edit manually.
|
|
3734
|
+
* Hautech API
|
|
3735
|
+
* OpenAPI spec version: 1.0
|
|
3736
|
+
*/
|
|
3737
|
+
|
|
3738
|
+
interface GPTV3ResponseComputerToolCallTypeDto {
|
|
3739
|
+
type: GPTV3ResponseComputerToolCallTypeDtoType;
|
|
3740
|
+
text: string;
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3743
|
+
/**
|
|
3744
|
+
* Generated by orval v7.10.0 🍺
|
|
3745
|
+
* Do not edit manually.
|
|
3746
|
+
* Hautech API
|
|
3747
|
+
* OpenAPI spec version: 1.0
|
|
3748
|
+
*/
|
|
3749
|
+
type GPTV3ResponseComputerToolCallWaitDtoType = typeof GPTV3ResponseComputerToolCallWaitDtoType[keyof typeof GPTV3ResponseComputerToolCallWaitDtoType];
|
|
3750
|
+
declare const GPTV3ResponseComputerToolCallWaitDtoType: {
|
|
3751
|
+
readonly wait: "wait";
|
|
3752
|
+
};
|
|
3753
|
+
|
|
3754
|
+
/**
|
|
3755
|
+
* Generated by orval v7.10.0 🍺
|
|
3756
|
+
* Do not edit manually.
|
|
3757
|
+
* Hautech API
|
|
3758
|
+
* OpenAPI spec version: 1.0
|
|
3759
|
+
*/
|
|
3760
|
+
|
|
3761
|
+
interface GPTV3ResponseComputerToolCallWaitDto {
|
|
3762
|
+
type: GPTV3ResponseComputerToolCallWaitDtoType;
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
/**
|
|
3766
|
+
* Generated by orval v7.10.0 🍺
|
|
3767
|
+
* Do not edit manually.
|
|
3768
|
+
* Hautech API
|
|
3769
|
+
* OpenAPI spec version: 1.0
|
|
3770
|
+
*/
|
|
3771
|
+
|
|
3772
|
+
/**
|
|
3773
|
+
* The action requested for the computer call.
|
|
3774
|
+
*/
|
|
3775
|
+
type GPTV3ResponseComputerToolCallDtoAction = GPTV3ResponseComputerToolCallClickDto | GPTV3ResponseComputerToolCallDoubleClickDto | GPTV3ResponseComputerToolCallDragDto | GPTV3ResponseComputerToolCallKeypressDto | GPTV3ResponseComputerToolCallMoveDto | GPTV3ResponseComputerToolCallScreenshotDto | GPTV3ResponseComputerToolCallScrollDto | GPTV3ResponseComputerToolCallTypeDto | GPTV3ResponseComputerToolCallWaitDto;
|
|
3776
|
+
|
|
3777
|
+
/**
|
|
3778
|
+
* Generated by orval v7.10.0 🍺
|
|
3779
|
+
* Do not edit manually.
|
|
3780
|
+
* Hautech API
|
|
3781
|
+
* OpenAPI spec version: 1.0
|
|
3782
|
+
*/
|
|
3783
|
+
interface GPTV3ResponseComputerToolCallPendingSafetyCheckDto {
|
|
3784
|
+
id: string;
|
|
3785
|
+
code: string;
|
|
3786
|
+
message: string;
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
/**
|
|
3790
|
+
* Generated by orval v7.10.0 🍺
|
|
3791
|
+
* Do not edit manually.
|
|
3792
|
+
* Hautech API
|
|
3793
|
+
* OpenAPI spec version: 1.0
|
|
3794
|
+
*/
|
|
3795
|
+
type GPTV3ResponseComputerToolCallDtoStatus = typeof GPTV3ResponseComputerToolCallDtoStatus[keyof typeof GPTV3ResponseComputerToolCallDtoStatus];
|
|
3796
|
+
declare const GPTV3ResponseComputerToolCallDtoStatus: {
|
|
3797
|
+
readonly in_progress: "in_progress";
|
|
3798
|
+
readonly completed: "completed";
|
|
3799
|
+
readonly incomplete: "incomplete";
|
|
3800
|
+
};
|
|
3801
|
+
|
|
3802
|
+
/**
|
|
3803
|
+
* Generated by orval v7.10.0 🍺
|
|
3804
|
+
* Do not edit manually.
|
|
3805
|
+
* Hautech API
|
|
3806
|
+
* OpenAPI spec version: 1.0
|
|
3807
|
+
*/
|
|
3808
|
+
type GPTV3ResponseComputerToolCallDtoType = typeof GPTV3ResponseComputerToolCallDtoType[keyof typeof GPTV3ResponseComputerToolCallDtoType];
|
|
3809
|
+
declare const GPTV3ResponseComputerToolCallDtoType: {
|
|
3810
|
+
readonly computer_call: "computer_call";
|
|
3811
|
+
};
|
|
3812
|
+
|
|
3813
|
+
/**
|
|
3814
|
+
* Generated by orval v7.10.0 🍺
|
|
3815
|
+
* Do not edit manually.
|
|
3816
|
+
* Hautech API
|
|
3817
|
+
* OpenAPI spec version: 1.0
|
|
3818
|
+
*/
|
|
3819
|
+
|
|
3820
|
+
interface GPTV3ResponseComputerToolCallDto {
|
|
3821
|
+
/** The unique ID of the computer call. */
|
|
3822
|
+
id: string;
|
|
3823
|
+
/** The action requested for the computer call. */
|
|
3824
|
+
action: GPTV3ResponseComputerToolCallDtoAction;
|
|
3825
|
+
/** The ID of the tool call. */
|
|
3826
|
+
call_id: string;
|
|
3827
|
+
/** Pending safety checks for the computer call. */
|
|
3828
|
+
pending_safety_checks: GPTV3ResponseComputerToolCallPendingSafetyCheckDto[];
|
|
3829
|
+
status: GPTV3ResponseComputerToolCallDtoStatus;
|
|
3830
|
+
type: GPTV3ResponseComputerToolCallDtoType;
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
/**
|
|
3834
|
+
* Generated by orval v7.10.0 🍺
|
|
3835
|
+
* Do not edit manually.
|
|
3836
|
+
* Hautech API
|
|
3837
|
+
* OpenAPI spec version: 1.0
|
|
3838
|
+
*/
|
|
3839
|
+
type GPTV3ResponseInputComputerCallOutputScreenshotDtoType = typeof GPTV3ResponseInputComputerCallOutputScreenshotDtoType[keyof typeof GPTV3ResponseInputComputerCallOutputScreenshotDtoType];
|
|
3840
|
+
declare const GPTV3ResponseInputComputerCallOutputScreenshotDtoType: {
|
|
3841
|
+
readonly computer_screenshot: "computer_screenshot";
|
|
3842
|
+
};
|
|
3843
|
+
|
|
3844
|
+
/**
|
|
3845
|
+
* Generated by orval v7.10.0 🍺
|
|
3846
|
+
* Do not edit manually.
|
|
3847
|
+
* Hautech API
|
|
3848
|
+
* OpenAPI spec version: 1.0
|
|
3849
|
+
*/
|
|
3850
|
+
|
|
3851
|
+
interface GPTV3ResponseInputComputerCallOutputScreenshotDto {
|
|
3852
|
+
type: GPTV3ResponseInputComputerCallOutputScreenshotDtoType;
|
|
3853
|
+
file_id?: string;
|
|
3854
|
+
image_url?: string;
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
/**
|
|
3858
|
+
* Generated by orval v7.10.0 🍺
|
|
3859
|
+
* Do not edit manually.
|
|
3860
|
+
* Hautech API
|
|
3861
|
+
* OpenAPI spec version: 1.0
|
|
3862
|
+
*/
|
|
3863
|
+
type GPTV3ResponseInputComputerCallOutputDtoType = typeof GPTV3ResponseInputComputerCallOutputDtoType[keyof typeof GPTV3ResponseInputComputerCallOutputDtoType];
|
|
3864
|
+
declare const GPTV3ResponseInputComputerCallOutputDtoType: {
|
|
3865
|
+
readonly computer_call_output: "computer_call_output";
|
|
3866
|
+
};
|
|
3867
|
+
|
|
3450
3868
|
/**
|
|
3451
3869
|
* Generated by orval v7.10.0 🍺
|
|
3452
3870
|
* Do not edit manually.
|
|
3453
3871
|
* Hautech API
|
|
3454
3872
|
* OpenAPI spec version: 1.0
|
|
3455
3873
|
*/
|
|
3456
|
-
|
|
3457
|
-
interface GPTV3MessageContentDto {
|
|
3458
|
-
/** The unique identifier for the message. */
|
|
3874
|
+
interface GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto {
|
|
3459
3875
|
id: string;
|
|
3460
|
-
/**
|
|
3461
|
-
|
|
3462
|
-
/**
|
|
3463
|
-
|
|
3464
|
-
/** The content of the message with annotations and citations. */
|
|
3465
|
-
content: GPTV3ContentWithAnnotationsDto[];
|
|
3876
|
+
/** @nullable */
|
|
3877
|
+
code?: string | null;
|
|
3878
|
+
/** @nullable */
|
|
3879
|
+
message?: string | null;
|
|
3466
3880
|
}
|
|
3467
3881
|
|
|
3468
3882
|
/**
|
|
@@ -3471,9 +3885,11 @@ interface GPTV3MessageContentDto {
|
|
|
3471
3885
|
* Hautech API
|
|
3472
3886
|
* OpenAPI spec version: 1.0
|
|
3473
3887
|
*/
|
|
3474
|
-
type
|
|
3475
|
-
declare const
|
|
3476
|
-
readonly
|
|
3888
|
+
type GPTV3ResponseInputComputerCallOutputDtoStatus = typeof GPTV3ResponseInputComputerCallOutputDtoStatus[keyof typeof GPTV3ResponseInputComputerCallOutputDtoStatus];
|
|
3889
|
+
declare const GPTV3ResponseInputComputerCallOutputDtoStatus: {
|
|
3890
|
+
readonly in_progress: "in_progress";
|
|
3891
|
+
readonly completed: "completed";
|
|
3892
|
+
readonly incomplete: "incomplete";
|
|
3477
3893
|
};
|
|
3478
3894
|
|
|
3479
3895
|
/**
|
|
@@ -3482,12 +3898,30 @@ declare const GPTV3OutputKind: {
|
|
|
3482
3898
|
* Hautech API
|
|
3483
3899
|
* OpenAPI spec version: 1.0
|
|
3484
3900
|
*/
|
|
3901
|
+
|
|
3902
|
+
interface GPTV3ResponseInputComputerCallOutputDto {
|
|
3903
|
+
call_id: string;
|
|
3904
|
+
output: GPTV3ResponseInputComputerCallOutputScreenshotDto;
|
|
3905
|
+
type: GPTV3ResponseInputComputerCallOutputDtoType;
|
|
3906
|
+
/** @nullable */
|
|
3907
|
+
id?: string | null;
|
|
3908
|
+
/** @nullable */
|
|
3909
|
+
acknowledged_safety_checks?: GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto[] | null;
|
|
3910
|
+
status?: GPTV3ResponseInputComputerCallOutputDtoStatus;
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3485
3913
|
/**
|
|
3486
|
-
*
|
|
3914
|
+
* Generated by orval v7.10.0 🍺
|
|
3915
|
+
* Do not edit manually.
|
|
3916
|
+
* Hautech API
|
|
3917
|
+
* OpenAPI spec version: 1.0
|
|
3487
3918
|
*/
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3919
|
+
/**
|
|
3920
|
+
* The type of the web search result. This is the FIRST output item when web_search tool is called.
|
|
3921
|
+
*/
|
|
3922
|
+
type GPTV3ResponseFunctionWebSearchDtoType = typeof GPTV3ResponseFunctionWebSearchDtoType[keyof typeof GPTV3ResponseFunctionWebSearchDtoType];
|
|
3923
|
+
declare const GPTV3ResponseFunctionWebSearchDtoType: {
|
|
3924
|
+
readonly web_search_call: "web_search_call";
|
|
3491
3925
|
};
|
|
3492
3926
|
|
|
3493
3927
|
/**
|
|
@@ -3497,11 +3931,14 @@ declare const GPTV3ResponseOutputMessageDtoType: {
|
|
|
3497
3931
|
* OpenAPI spec version: 1.0
|
|
3498
3932
|
*/
|
|
3499
3933
|
/**
|
|
3500
|
-
* The
|
|
3934
|
+
* The status of the web search call.
|
|
3501
3935
|
*/
|
|
3502
|
-
type
|
|
3503
|
-
declare const
|
|
3504
|
-
readonly
|
|
3936
|
+
type GPTV3ResponseFunctionWebSearchDtoStatus = typeof GPTV3ResponseFunctionWebSearchDtoStatus[keyof typeof GPTV3ResponseFunctionWebSearchDtoStatus];
|
|
3937
|
+
declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
|
|
3938
|
+
readonly in_progress: "in_progress";
|
|
3939
|
+
readonly searching: "searching";
|
|
3940
|
+
readonly completed: "completed";
|
|
3941
|
+
readonly failed: "failed";
|
|
3505
3942
|
};
|
|
3506
3943
|
|
|
3507
3944
|
/**
|
|
@@ -3510,12 +3947,28 @@ declare const GPTV3ResponseOutputMessageDtoRole: {
|
|
|
3510
3947
|
* Hautech API
|
|
3511
3948
|
* OpenAPI spec version: 1.0
|
|
3512
3949
|
*/
|
|
3950
|
+
|
|
3951
|
+
interface GPTV3ResponseFunctionWebSearchDto {
|
|
3952
|
+
/** The type of the web search result. This is the FIRST output item when web_search tool is called. */
|
|
3953
|
+
type: GPTV3ResponseFunctionWebSearchDtoType;
|
|
3954
|
+
/** The unique identifier for this web search call. */
|
|
3955
|
+
id: string;
|
|
3956
|
+
/** The status of the web search call. */
|
|
3957
|
+
status: GPTV3ResponseFunctionWebSearchDtoStatus;
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3513
3960
|
/**
|
|
3514
|
-
*
|
|
3961
|
+
* Generated by orval v7.10.0 🍺
|
|
3962
|
+
* Do not edit manually.
|
|
3963
|
+
* Hautech API
|
|
3964
|
+
* OpenAPI spec version: 1.0
|
|
3515
3965
|
*/
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3966
|
+
/**
|
|
3967
|
+
* The type of the tool call.
|
|
3968
|
+
*/
|
|
3969
|
+
type GPTV3ResponseFunctionToolCallDtoType = typeof GPTV3ResponseFunctionToolCallDtoType[keyof typeof GPTV3ResponseFunctionToolCallDtoType];
|
|
3970
|
+
declare const GPTV3ResponseFunctionToolCallDtoType: {
|
|
3971
|
+
readonly function_call: "function_call";
|
|
3519
3972
|
};
|
|
3520
3973
|
|
|
3521
3974
|
/**
|
|
@@ -3524,9 +3977,14 @@ declare const GPTV3ResponseOutputTextDtoType: {
|
|
|
3524
3977
|
* Hautech API
|
|
3525
3978
|
* OpenAPI spec version: 1.0
|
|
3526
3979
|
*/
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3980
|
+
/**
|
|
3981
|
+
* The status of the function call.
|
|
3982
|
+
*/
|
|
3983
|
+
type GPTV3ResponseFunctionToolCallDtoStatus = typeof GPTV3ResponseFunctionToolCallDtoStatus[keyof typeof GPTV3ResponseFunctionToolCallDtoStatus];
|
|
3984
|
+
declare const GPTV3ResponseFunctionToolCallDtoStatus: {
|
|
3985
|
+
readonly in_progress: "in_progress";
|
|
3986
|
+
readonly completed: "completed";
|
|
3987
|
+
readonly incomplete: "incomplete";
|
|
3530
3988
|
};
|
|
3531
3989
|
|
|
3532
3990
|
/**
|
|
@@ -3536,14 +3994,19 @@ declare const GPTV3ResponseOutputTextFileCitationDtoType: {
|
|
|
3536
3994
|
* OpenAPI spec version: 1.0
|
|
3537
3995
|
*/
|
|
3538
3996
|
|
|
3539
|
-
interface
|
|
3540
|
-
/** The
|
|
3541
|
-
|
|
3542
|
-
/** The
|
|
3543
|
-
|
|
3544
|
-
/** The
|
|
3545
|
-
|
|
3546
|
-
|
|
3997
|
+
interface GPTV3ResponseFunctionToolCallDto {
|
|
3998
|
+
/** The unique identifier for this function tool call. */
|
|
3999
|
+
id?: string;
|
|
4000
|
+
/** The type of the tool call. */
|
|
4001
|
+
type: GPTV3ResponseFunctionToolCallDtoType;
|
|
4002
|
+
/** The name of the function to run. */
|
|
4003
|
+
name: string;
|
|
4004
|
+
/** The unique ID of the function tool call generated by the model. */
|
|
4005
|
+
call_id: string;
|
|
4006
|
+
/** A JSON string of the arguments passed to the function. */
|
|
4007
|
+
arguments: string;
|
|
4008
|
+
/** The status of the function call. */
|
|
4009
|
+
status?: GPTV3ResponseFunctionToolCallDtoStatus;
|
|
3547
4010
|
}
|
|
3548
4011
|
|
|
3549
4012
|
/**
|
|
@@ -3552,9 +4015,9 @@ interface GPTV3ResponseOutputTextFileCitationDto {
|
|
|
3552
4015
|
* Hautech API
|
|
3553
4016
|
* OpenAPI spec version: 1.0
|
|
3554
4017
|
*/
|
|
3555
|
-
type
|
|
3556
|
-
declare const
|
|
3557
|
-
readonly
|
|
4018
|
+
type GPTV3ResponseInputFunctionCallOutputDtoType = typeof GPTV3ResponseInputFunctionCallOutputDtoType[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoType];
|
|
4019
|
+
declare const GPTV3ResponseInputFunctionCallOutputDtoType: {
|
|
4020
|
+
readonly function_call_output: "function_call_output";
|
|
3558
4021
|
};
|
|
3559
4022
|
|
|
3560
4023
|
/**
|
|
@@ -3563,17 +4026,28 @@ declare const GPTV3ResponseOutputTextURLCitationDtoType: {
|
|
|
3563
4026
|
* Hautech API
|
|
3564
4027
|
* OpenAPI spec version: 1.0
|
|
3565
4028
|
*/
|
|
4029
|
+
type GPTV3ResponseInputFunctionCallOutputDtoStatus = typeof GPTV3ResponseInputFunctionCallOutputDtoStatus[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoStatus];
|
|
4030
|
+
declare const GPTV3ResponseInputFunctionCallOutputDtoStatus: {
|
|
4031
|
+
readonly in_progress: "in_progress";
|
|
4032
|
+
readonly completed: "completed";
|
|
4033
|
+
readonly incomplete: "incomplete";
|
|
4034
|
+
};
|
|
3566
4035
|
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
4036
|
+
/**
|
|
4037
|
+
* Generated by orval v7.10.0 🍺
|
|
4038
|
+
* Do not edit manually.
|
|
4039
|
+
* Hautech API
|
|
4040
|
+
* OpenAPI spec version: 1.0
|
|
4041
|
+
*/
|
|
4042
|
+
|
|
4043
|
+
interface GPTV3ResponseInputFunctionCallOutputDto {
|
|
4044
|
+
call_id: string;
|
|
4045
|
+
/** JSON string result from your function. */
|
|
4046
|
+
output: string;
|
|
4047
|
+
type: GPTV3ResponseInputFunctionCallOutputDtoType;
|
|
4048
|
+
/** @nullable */
|
|
4049
|
+
id?: string | null;
|
|
4050
|
+
status?: GPTV3ResponseInputFunctionCallOutputDtoStatus;
|
|
3577
4051
|
}
|
|
3578
4052
|
|
|
3579
4053
|
/**
|
|
@@ -3582,9 +4056,9 @@ interface GPTV3ResponseOutputTextURLCitationDto {
|
|
|
3582
4056
|
* Hautech API
|
|
3583
4057
|
* OpenAPI spec version: 1.0
|
|
3584
4058
|
*/
|
|
3585
|
-
type
|
|
3586
|
-
declare const
|
|
3587
|
-
readonly
|
|
4059
|
+
type GPTV3ResponseReasoningItemSummaryDtoType = typeof GPTV3ResponseReasoningItemSummaryDtoType[keyof typeof GPTV3ResponseReasoningItemSummaryDtoType];
|
|
4060
|
+
declare const GPTV3ResponseReasoningItemSummaryDtoType: {
|
|
4061
|
+
readonly summary_text: "summary_text";
|
|
3588
4062
|
};
|
|
3589
4063
|
|
|
3590
4064
|
/**
|
|
@@ -3594,18 +4068,9 @@ declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
|
|
|
3594
4068
|
* OpenAPI spec version: 1.0
|
|
3595
4069
|
*/
|
|
3596
4070
|
|
|
3597
|
-
interface
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
/** The index of the last character of the container file citation. */
|
|
3601
|
-
end_index: number;
|
|
3602
|
-
/** The ID of the file. */
|
|
3603
|
-
file_id: string;
|
|
3604
|
-
/** The filename of the container file cited. */
|
|
3605
|
-
filename: string;
|
|
3606
|
-
/** The index of the first character of the container file citation. */
|
|
3607
|
-
start_index: number;
|
|
3608
|
-
type: GPTV3ResponseOutputTextContainerFileCitationDtoType;
|
|
4071
|
+
interface GPTV3ResponseReasoningItemSummaryDto {
|
|
4072
|
+
type: GPTV3ResponseReasoningItemSummaryDtoType;
|
|
4073
|
+
text: string;
|
|
3609
4074
|
}
|
|
3610
4075
|
|
|
3611
4076
|
/**
|
|
@@ -3614,9 +4079,9 @@ interface GPTV3ResponseOutputTextContainerFileCitationDto {
|
|
|
3614
4079
|
* Hautech API
|
|
3615
4080
|
* OpenAPI spec version: 1.0
|
|
3616
4081
|
*/
|
|
3617
|
-
type
|
|
3618
|
-
declare const
|
|
3619
|
-
readonly
|
|
4082
|
+
type GPTV3ResponseReasoningItemDtoType = typeof GPTV3ResponseReasoningItemDtoType[keyof typeof GPTV3ResponseReasoningItemDtoType];
|
|
4083
|
+
declare const GPTV3ResponseReasoningItemDtoType: {
|
|
4084
|
+
readonly reasoning: "reasoning";
|
|
3620
4085
|
};
|
|
3621
4086
|
|
|
3622
4087
|
/**
|
|
@@ -3625,13 +4090,27 @@ declare const GPTV3ResponseOutputTextFilePathDtoType: {
|
|
|
3625
4090
|
* Hautech API
|
|
3626
4091
|
* OpenAPI spec version: 1.0
|
|
3627
4092
|
*/
|
|
4093
|
+
type GPTV3ResponseReasoningItemDtoStatus = typeof GPTV3ResponseReasoningItemDtoStatus[keyof typeof GPTV3ResponseReasoningItemDtoStatus];
|
|
4094
|
+
declare const GPTV3ResponseReasoningItemDtoStatus: {
|
|
4095
|
+
readonly in_progress: "in_progress";
|
|
4096
|
+
readonly completed: "completed";
|
|
4097
|
+
readonly incomplete: "incomplete";
|
|
4098
|
+
};
|
|
3628
4099
|
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
4100
|
+
/**
|
|
4101
|
+
* Generated by orval v7.10.0 🍺
|
|
4102
|
+
* Do not edit manually.
|
|
4103
|
+
* Hautech API
|
|
4104
|
+
* OpenAPI spec version: 1.0
|
|
4105
|
+
*/
|
|
4106
|
+
|
|
4107
|
+
interface GPTV3ResponseReasoningItemDto {
|
|
4108
|
+
id: string;
|
|
4109
|
+
summary: GPTV3ResponseReasoningItemSummaryDto[];
|
|
4110
|
+
type: GPTV3ResponseReasoningItemDtoType;
|
|
4111
|
+
/** @nullable */
|
|
4112
|
+
encrypted_content?: string | null;
|
|
4113
|
+
status?: GPTV3ResponseReasoningItemDtoStatus;
|
|
3635
4114
|
}
|
|
3636
4115
|
|
|
3637
4116
|
/**
|
|
@@ -3640,8 +4119,13 @@ interface GPTV3ResponseOutputTextFilePathDto {
|
|
|
3640
4119
|
* Hautech API
|
|
3641
4120
|
* OpenAPI spec version: 1.0
|
|
3642
4121
|
*/
|
|
3643
|
-
|
|
3644
|
-
|
|
4122
|
+
type GPTV3ResponseInputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseInputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoStatus];
|
|
4123
|
+
declare const GPTV3ResponseInputItemImageGenerationCallDtoStatus: {
|
|
4124
|
+
readonly in_progress: "in_progress";
|
|
4125
|
+
readonly completed: "completed";
|
|
4126
|
+
readonly generating: "generating";
|
|
4127
|
+
readonly failed: "failed";
|
|
4128
|
+
};
|
|
3645
4129
|
|
|
3646
4130
|
/**
|
|
3647
4131
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3649,11 +4133,10 @@ type GPTV3ResponseOutputTextDtoAnnotationsItem = GPTV3ResponseOutputTextFileCita
|
|
|
3649
4133
|
* Hautech API
|
|
3650
4134
|
* OpenAPI spec version: 1.0
|
|
3651
4135
|
*/
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
}
|
|
4136
|
+
type GPTV3ResponseInputItemImageGenerationCallDtoType = typeof GPTV3ResponseInputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoType];
|
|
4137
|
+
declare const GPTV3ResponseInputItemImageGenerationCallDtoType: {
|
|
4138
|
+
readonly image_generation_call: "image_generation_call";
|
|
4139
|
+
};
|
|
3657
4140
|
|
|
3658
4141
|
/**
|
|
3659
4142
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3662,11 +4145,12 @@ interface GPTV3ResponseOutputTextLogprobTopLogprobDto {
|
|
|
3662
4145
|
* OpenAPI spec version: 1.0
|
|
3663
4146
|
*/
|
|
3664
4147
|
|
|
3665
|
-
interface
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
4148
|
+
interface GPTV3ResponseInputItemImageGenerationCallDto {
|
|
4149
|
+
id: string;
|
|
4150
|
+
/** @nullable */
|
|
4151
|
+
result?: string | null;
|
|
4152
|
+
status: GPTV3ResponseInputItemImageGenerationCallDtoStatus;
|
|
4153
|
+
type: GPTV3ResponseInputItemImageGenerationCallDtoType;
|
|
3670
4154
|
}
|
|
3671
4155
|
|
|
3672
4156
|
/**
|
|
@@ -3675,17 +4159,10 @@ interface GPTV3ResponseOutputTextLogprobDto {
|
|
|
3675
4159
|
* Hautech API
|
|
3676
4160
|
* OpenAPI spec version: 1.0
|
|
3677
4161
|
*/
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
/** The text content. */
|
|
3683
|
-
text: string;
|
|
3684
|
-
/** Annotations attached to spans of the output text (citations, file paths, etc). */
|
|
3685
|
-
annotations: GPTV3ResponseOutputTextDtoAnnotationsItem[];
|
|
3686
|
-
/** Log probabilities for tokens (when requested). */
|
|
3687
|
-
logprobs?: GPTV3ResponseOutputTextLogprobDto[];
|
|
3688
|
-
}
|
|
4162
|
+
type GPTV3ResponseCodeInterpreterToolCallLogsDtoType = typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType];
|
|
4163
|
+
declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
|
|
4164
|
+
readonly logs: "logs";
|
|
4165
|
+
};
|
|
3689
4166
|
|
|
3690
4167
|
/**
|
|
3691
4168
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3693,12 +4170,21 @@ interface GPTV3ResponseOutputTextDto {
|
|
|
3693
4170
|
* Hautech API
|
|
3694
4171
|
* OpenAPI spec version: 1.0
|
|
3695
4172
|
*/
|
|
4173
|
+
|
|
4174
|
+
interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
|
|
4175
|
+
type: GPTV3ResponseCodeInterpreterToolCallLogsDtoType;
|
|
4176
|
+
logs: string;
|
|
4177
|
+
}
|
|
4178
|
+
|
|
3696
4179
|
/**
|
|
3697
|
-
*
|
|
4180
|
+
* Generated by orval v7.10.0 🍺
|
|
4181
|
+
* Do not edit manually.
|
|
4182
|
+
* Hautech API
|
|
4183
|
+
* OpenAPI spec version: 1.0
|
|
3698
4184
|
*/
|
|
3699
|
-
type
|
|
3700
|
-
declare const
|
|
3701
|
-
readonly
|
|
4185
|
+
type GPTV3ResponseCodeInterpreterToolCallImageDtoType = typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType];
|
|
4186
|
+
declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
|
|
4187
|
+
readonly image: "image";
|
|
3702
4188
|
};
|
|
3703
4189
|
|
|
3704
4190
|
/**
|
|
@@ -3708,11 +4194,9 @@ declare const GPTV3ResponseOutputRefusalDtoType: {
|
|
|
3708
4194
|
* OpenAPI spec version: 1.0
|
|
3709
4195
|
*/
|
|
3710
4196
|
|
|
3711
|
-
interface
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
/** The refusal explanation from the model. */
|
|
3715
|
-
refusal: string;
|
|
4197
|
+
interface GPTV3ResponseCodeInterpreterToolCallImageDto {
|
|
4198
|
+
type: GPTV3ResponseCodeInterpreterToolCallImageDtoType;
|
|
4199
|
+
url: string;
|
|
3716
4200
|
}
|
|
3717
4201
|
|
|
3718
4202
|
/**
|
|
@@ -3721,8 +4205,23 @@ interface GPTV3ResponseOutputRefusalDto {
|
|
|
3721
4205
|
* Hautech API
|
|
3722
4206
|
* OpenAPI spec version: 1.0
|
|
3723
4207
|
*/
|
|
3724
|
-
|
|
3725
|
-
type
|
|
4208
|
+
|
|
4209
|
+
type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem = GPTV3ResponseCodeInterpreterToolCallLogsDto | GPTV3ResponseCodeInterpreterToolCallImageDto;
|
|
4210
|
+
|
|
4211
|
+
/**
|
|
4212
|
+
* Generated by orval v7.10.0 🍺
|
|
4213
|
+
* Do not edit manually.
|
|
4214
|
+
* Hautech API
|
|
4215
|
+
* OpenAPI spec version: 1.0
|
|
4216
|
+
*/
|
|
4217
|
+
type GPTV3ResponseCodeInterpreterToolCallDtoStatus = typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus];
|
|
4218
|
+
declare const GPTV3ResponseCodeInterpreterToolCallDtoStatus: {
|
|
4219
|
+
readonly in_progress: "in_progress";
|
|
4220
|
+
readonly completed: "completed";
|
|
4221
|
+
readonly incomplete: "incomplete";
|
|
4222
|
+
readonly interpreting: "interpreting";
|
|
4223
|
+
readonly failed: "failed";
|
|
4224
|
+
};
|
|
3726
4225
|
|
|
3727
4226
|
/**
|
|
3728
4227
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3730,8 +4229,9 @@ type GPTV3ResponseOutputMessageDtoContentItem = GPTV3ResponseOutputTextDto | GPT
|
|
|
3730
4229
|
* Hautech API
|
|
3731
4230
|
* OpenAPI spec version: 1.0
|
|
3732
4231
|
*/
|
|
3733
|
-
type
|
|
3734
|
-
|
|
4232
|
+
type GPTV3ResponseCodeInterpreterToolCallDtoType = typeof GPTV3ResponseCodeInterpreterToolCallDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoType];
|
|
4233
|
+
declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
|
|
4234
|
+
readonly code_interpreter_call: "code_interpreter_call";
|
|
3735
4235
|
};
|
|
3736
4236
|
|
|
3737
4237
|
/**
|
|
@@ -3741,16 +4241,18 @@ type GPTV3ResponseOutputMessageDtoStatus = {
|
|
|
3741
4241
|
* OpenAPI spec version: 1.0
|
|
3742
4242
|
*/
|
|
3743
4243
|
|
|
3744
|
-
interface
|
|
3745
|
-
/** The unique identifier for the message. */
|
|
4244
|
+
interface GPTV3ResponseCodeInterpreterToolCallDto {
|
|
3746
4245
|
id: string;
|
|
3747
|
-
/**
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
4246
|
+
/** @nullable */
|
|
4247
|
+
code?: string | null;
|
|
4248
|
+
container_id: string;
|
|
4249
|
+
/**
|
|
4250
|
+
* Outputs from the code interpreter.
|
|
4251
|
+
* @nullable
|
|
4252
|
+
*/
|
|
4253
|
+
outputs?: GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem[] | null;
|
|
4254
|
+
status: GPTV3ResponseCodeInterpreterToolCallDtoStatus;
|
|
4255
|
+
type: GPTV3ResponseCodeInterpreterToolCallDtoType;
|
|
3754
4256
|
}
|
|
3755
4257
|
|
|
3756
4258
|
/**
|
|
@@ -3759,12 +4261,8 @@ interface GPTV3ResponseOutputMessageDto {
|
|
|
3759
4261
|
* Hautech API
|
|
3760
4262
|
* OpenAPI spec version: 1.0
|
|
3761
4263
|
*/
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
*/
|
|
3765
|
-
type GPTV3ResponseFileSearchToolCallDtoType = typeof GPTV3ResponseFileSearchToolCallDtoType[keyof typeof GPTV3ResponseFileSearchToolCallDtoType];
|
|
3766
|
-
declare const GPTV3ResponseFileSearchToolCallDtoType: {
|
|
3767
|
-
readonly file_search_call: "file_search_call";
|
|
4264
|
+
type GPTV3ResponseInputLocalShellCallActionDtoEnv = {
|
|
4265
|
+
[key: string]: unknown;
|
|
3768
4266
|
};
|
|
3769
4267
|
|
|
3770
4268
|
/**
|
|
@@ -3773,16 +4271,9 @@ declare const GPTV3ResponseFileSearchToolCallDtoType: {
|
|
|
3773
4271
|
* Hautech API
|
|
3774
4272
|
* OpenAPI spec version: 1.0
|
|
3775
4273
|
*/
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
type GPTV3ResponseFileSearchToolCallDtoStatus = typeof GPTV3ResponseFileSearchToolCallDtoStatus[keyof typeof GPTV3ResponseFileSearchToolCallDtoStatus];
|
|
3780
|
-
declare const GPTV3ResponseFileSearchToolCallDtoStatus: {
|
|
3781
|
-
readonly in_progress: "in_progress";
|
|
3782
|
-
readonly searching: "searching";
|
|
3783
|
-
readonly completed: "completed";
|
|
3784
|
-
readonly incomplete: "incomplete";
|
|
3785
|
-
readonly failed: "failed";
|
|
4274
|
+
type GPTV3ResponseInputLocalShellCallActionDtoType = typeof GPTV3ResponseInputLocalShellCallActionDtoType[keyof typeof GPTV3ResponseInputLocalShellCallActionDtoType];
|
|
4275
|
+
declare const GPTV3ResponseInputLocalShellCallActionDtoType: {
|
|
4276
|
+
readonly exec: "exec";
|
|
3786
4277
|
};
|
|
3787
4278
|
|
|
3788
4279
|
/**
|
|
@@ -3791,11 +4282,30 @@ declare const GPTV3ResponseFileSearchToolCallDtoStatus: {
|
|
|
3791
4282
|
* Hautech API
|
|
3792
4283
|
* OpenAPI spec version: 1.0
|
|
3793
4284
|
*/
|
|
4285
|
+
|
|
4286
|
+
interface GPTV3ResponseInputLocalShellCallActionDto {
|
|
4287
|
+
command: string[];
|
|
4288
|
+
env: GPTV3ResponseInputLocalShellCallActionDtoEnv;
|
|
4289
|
+
type: GPTV3ResponseInputLocalShellCallActionDtoType;
|
|
4290
|
+
/** @nullable */
|
|
4291
|
+
timeout_ms?: number | null;
|
|
4292
|
+
/** @nullable */
|
|
4293
|
+
user?: string | null;
|
|
4294
|
+
/** @nullable */
|
|
4295
|
+
working_directory?: string | null;
|
|
4296
|
+
}
|
|
4297
|
+
|
|
3794
4298
|
/**
|
|
3795
|
-
*
|
|
4299
|
+
* Generated by orval v7.10.0 🍺
|
|
4300
|
+
* Do not edit manually.
|
|
4301
|
+
* Hautech API
|
|
4302
|
+
* OpenAPI spec version: 1.0
|
|
3796
4303
|
*/
|
|
3797
|
-
type
|
|
3798
|
-
|
|
4304
|
+
type GPTV3ResponseInputLocalShellCallDtoStatus = typeof GPTV3ResponseInputLocalShellCallDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallDtoStatus];
|
|
4305
|
+
declare const GPTV3ResponseInputLocalShellCallDtoStatus: {
|
|
4306
|
+
readonly in_progress: "in_progress";
|
|
4307
|
+
readonly completed: "completed";
|
|
4308
|
+
readonly incomplete: "incomplete";
|
|
3799
4309
|
};
|
|
3800
4310
|
|
|
3801
4311
|
/**
|
|
@@ -3804,19 +4314,10 @@ type GPTV3ResponseFileSearchToolCallResultDtoAttributes = {
|
|
|
3804
4314
|
* Hautech API
|
|
3805
4315
|
* OpenAPI spec version: 1.0
|
|
3806
4316
|
*/
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
/** The unique ID of the file. */
|
|
3812
|
-
file_id?: string;
|
|
3813
|
-
/** The name of the file. */
|
|
3814
|
-
filename?: string;
|
|
3815
|
-
/** The relevance score of the file. */
|
|
3816
|
-
score?: number;
|
|
3817
|
-
/** The text that was retrieved from the file. */
|
|
3818
|
-
text?: string;
|
|
3819
|
-
}
|
|
4317
|
+
type GPTV3ResponseInputLocalShellCallDtoType = typeof GPTV3ResponseInputLocalShellCallDtoType[keyof typeof GPTV3ResponseInputLocalShellCallDtoType];
|
|
4318
|
+
declare const GPTV3ResponseInputLocalShellCallDtoType: {
|
|
4319
|
+
readonly local_shell_call: "local_shell_call";
|
|
4320
|
+
};
|
|
3820
4321
|
|
|
3821
4322
|
/**
|
|
3822
4323
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3825,20 +4326,12 @@ interface GPTV3ResponseFileSearchToolCallResultDto {
|
|
|
3825
4326
|
* OpenAPI spec version: 1.0
|
|
3826
4327
|
*/
|
|
3827
4328
|
|
|
3828
|
-
interface
|
|
3829
|
-
/** The type of the file search result. This is the FIRST output item when file_search tool is called. */
|
|
3830
|
-
type: GPTV3ResponseFileSearchToolCallDtoType;
|
|
3831
|
-
/** The unique identifier for this file search call. */
|
|
4329
|
+
interface GPTV3ResponseInputLocalShellCallDto {
|
|
3832
4330
|
id: string;
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
/**
|
|
3838
|
-
* The search results from the file search. Can be null if no results found.
|
|
3839
|
-
* @nullable
|
|
3840
|
-
*/
|
|
3841
|
-
results?: GPTV3ResponseFileSearchToolCallResultDto[] | null;
|
|
4331
|
+
action: GPTV3ResponseInputLocalShellCallActionDto;
|
|
4332
|
+
call_id: string;
|
|
4333
|
+
status: GPTV3ResponseInputLocalShellCallDtoStatus;
|
|
4334
|
+
type: GPTV3ResponseInputLocalShellCallDtoType;
|
|
3842
4335
|
}
|
|
3843
4336
|
|
|
3844
4337
|
/**
|
|
@@ -3847,12 +4340,9 @@ interface GPTV3ResponseFileSearchToolCallDto {
|
|
|
3847
4340
|
* Hautech API
|
|
3848
4341
|
* OpenAPI spec version: 1.0
|
|
3849
4342
|
*/
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
type GPTV3ResponseFunctionWebSearchDtoType = typeof GPTV3ResponseFunctionWebSearchDtoType[keyof typeof GPTV3ResponseFunctionWebSearchDtoType];
|
|
3854
|
-
declare const GPTV3ResponseFunctionWebSearchDtoType: {
|
|
3855
|
-
readonly web_search_call: "web_search_call";
|
|
4343
|
+
type GPTV3ResponseInputLocalShellCallOutputDtoType = typeof GPTV3ResponseInputLocalShellCallOutputDtoType[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoType];
|
|
4344
|
+
declare const GPTV3ResponseInputLocalShellCallOutputDtoType: {
|
|
4345
|
+
readonly local_shell_call_output: "local_shell_call_output";
|
|
3856
4346
|
};
|
|
3857
4347
|
|
|
3858
4348
|
/**
|
|
@@ -3861,15 +4351,11 @@ declare const GPTV3ResponseFunctionWebSearchDtoType: {
|
|
|
3861
4351
|
* Hautech API
|
|
3862
4352
|
* OpenAPI spec version: 1.0
|
|
3863
4353
|
*/
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
*/
|
|
3867
|
-
type GPTV3ResponseFunctionWebSearchDtoStatus = typeof GPTV3ResponseFunctionWebSearchDtoStatus[keyof typeof GPTV3ResponseFunctionWebSearchDtoStatus];
|
|
3868
|
-
declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
|
|
4354
|
+
type GPTV3ResponseInputLocalShellCallOutputDtoStatus = typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus];
|
|
4355
|
+
declare const GPTV3ResponseInputLocalShellCallOutputDtoStatus: {
|
|
3869
4356
|
readonly in_progress: "in_progress";
|
|
3870
|
-
readonly searching: "searching";
|
|
3871
4357
|
readonly completed: "completed";
|
|
3872
|
-
readonly
|
|
4358
|
+
readonly incomplete: "incomplete";
|
|
3873
4359
|
};
|
|
3874
4360
|
|
|
3875
4361
|
/**
|
|
@@ -3879,13 +4365,12 @@ declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
|
|
|
3879
4365
|
* OpenAPI spec version: 1.0
|
|
3880
4366
|
*/
|
|
3881
4367
|
|
|
3882
|
-
interface
|
|
3883
|
-
/** The type of the web search result. This is the FIRST output item when web_search tool is called. */
|
|
3884
|
-
type: GPTV3ResponseFunctionWebSearchDtoType;
|
|
3885
|
-
/** The unique identifier for this web search call. */
|
|
4368
|
+
interface GPTV3ResponseInputLocalShellCallOutputDto {
|
|
3886
4369
|
id: string;
|
|
3887
|
-
/**
|
|
3888
|
-
|
|
4370
|
+
/** JSON string result from the local shell call. */
|
|
4371
|
+
output: string;
|
|
4372
|
+
type: GPTV3ResponseInputLocalShellCallOutputDtoType;
|
|
4373
|
+
status?: GPTV3ResponseInputLocalShellCallOutputDtoStatus;
|
|
3889
4374
|
}
|
|
3890
4375
|
|
|
3891
4376
|
/**
|
|
@@ -3894,29 +4379,8 @@ interface GPTV3ResponseFunctionWebSearchDto {
|
|
|
3894
4379
|
* Hautech API
|
|
3895
4380
|
* OpenAPI spec version: 1.0
|
|
3896
4381
|
*/
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
*/
|
|
3900
|
-
type GPTV3ResponseOutputItemImageGenerationCallDtoType = typeof GPTV3ResponseOutputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoType];
|
|
3901
|
-
declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
|
|
3902
|
-
readonly image_generation_call: "image_generation_call";
|
|
3903
|
-
};
|
|
3904
|
-
|
|
3905
|
-
/**
|
|
3906
|
-
* Generated by orval v7.10.0 🍺
|
|
3907
|
-
* Do not edit manually.
|
|
3908
|
-
* Hautech API
|
|
3909
|
-
* OpenAPI spec version: 1.0
|
|
3910
|
-
*/
|
|
3911
|
-
/**
|
|
3912
|
-
* The status of the image generation call.
|
|
3913
|
-
*/
|
|
3914
|
-
type GPTV3ResponseOutputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus];
|
|
3915
|
-
declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
|
|
3916
|
-
readonly in_progress: "in_progress";
|
|
3917
|
-
readonly completed: "completed";
|
|
3918
|
-
readonly generating: "generating";
|
|
3919
|
-
readonly failed: "failed";
|
|
4382
|
+
type GPTV3ResponseInputMcpListToolsToolDtoInputSchema = {
|
|
4383
|
+
[key: string]: unknown;
|
|
3920
4384
|
};
|
|
3921
4385
|
|
|
3922
4386
|
/**
|
|
@@ -3926,11 +4390,11 @@ declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
|
|
|
3926
4390
|
* OpenAPI spec version: 1.0
|
|
3927
4391
|
*/
|
|
3928
4392
|
/**
|
|
3929
|
-
*
|
|
4393
|
+
* @nullable
|
|
3930
4394
|
*/
|
|
3931
|
-
type
|
|
4395
|
+
type GPTV3ResponseInputMcpListToolsToolDtoAnnotations = {
|
|
3932
4396
|
[key: string]: unknown;
|
|
3933
|
-
};
|
|
4397
|
+
} | null;
|
|
3934
4398
|
|
|
3935
4399
|
/**
|
|
3936
4400
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3939,23 +4403,13 @@ type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
|
|
|
3939
4403
|
* OpenAPI spec version: 1.0
|
|
3940
4404
|
*/
|
|
3941
4405
|
|
|
3942
|
-
interface
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
/**
|
|
3946
|
-
|
|
3947
|
-
/**
|
|
3948
|
-
|
|
3949
|
-
/** The generated image ID (when conversion is successful). */
|
|
3950
|
-
imageId?: string;
|
|
3951
|
-
/** The format of the generated image (e.g., "png", "jpeg"). */
|
|
3952
|
-
format?: string;
|
|
3953
|
-
/** The size of the generated image in bytes. */
|
|
3954
|
-
size?: number;
|
|
3955
|
-
/** Error message if the image generation failed. */
|
|
3956
|
-
error?: string;
|
|
3957
|
-
/** Additional metadata about the image generation. */
|
|
3958
|
-
metadata?: GPTV3ResponseOutputItemImageGenerationCallDtoMetadata;
|
|
4406
|
+
interface GPTV3ResponseInputMcpListToolsToolDto {
|
|
4407
|
+
input_schema: GPTV3ResponseInputMcpListToolsToolDtoInputSchema;
|
|
4408
|
+
name: string;
|
|
4409
|
+
/** @nullable */
|
|
4410
|
+
annotations?: GPTV3ResponseInputMcpListToolsToolDtoAnnotations;
|
|
4411
|
+
/** @nullable */
|
|
4412
|
+
description?: string | null;
|
|
3959
4413
|
}
|
|
3960
4414
|
|
|
3961
4415
|
/**
|
|
@@ -3964,12 +4418,9 @@ interface GPTV3ResponseOutputItemImageGenerationCallDto {
|
|
|
3964
4418
|
* Hautech API
|
|
3965
4419
|
* OpenAPI spec version: 1.0
|
|
3966
4420
|
*/
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
type GPTV3ResponseFunctionToolCallDtoType = typeof GPTV3ResponseFunctionToolCallDtoType[keyof typeof GPTV3ResponseFunctionToolCallDtoType];
|
|
3971
|
-
declare const GPTV3ResponseFunctionToolCallDtoType: {
|
|
3972
|
-
readonly function_call: "function_call";
|
|
4421
|
+
type GPTV3ResponseInputMcpListToolsDtoType = typeof GPTV3ResponseInputMcpListToolsDtoType[keyof typeof GPTV3ResponseInputMcpListToolsDtoType];
|
|
4422
|
+
declare const GPTV3ResponseInputMcpListToolsDtoType: {
|
|
4423
|
+
readonly mcp_list_tools: "mcp_list_tools";
|
|
3973
4424
|
};
|
|
3974
4425
|
|
|
3975
4426
|
/**
|
|
@@ -3978,15 +4429,15 @@ declare const GPTV3ResponseFunctionToolCallDtoType: {
|
|
|
3978
4429
|
* Hautech API
|
|
3979
4430
|
* OpenAPI spec version: 1.0
|
|
3980
4431
|
*/
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
}
|
|
4432
|
+
|
|
4433
|
+
interface GPTV3ResponseInputMcpListToolsDto {
|
|
4434
|
+
id: string;
|
|
4435
|
+
server_label: string;
|
|
4436
|
+
tools: GPTV3ResponseInputMcpListToolsToolDto[];
|
|
4437
|
+
type: GPTV3ResponseInputMcpListToolsDtoType;
|
|
4438
|
+
/** @nullable */
|
|
4439
|
+
error?: string | null;
|
|
4440
|
+
}
|
|
3990
4441
|
|
|
3991
4442
|
/**
|
|
3992
4443
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3994,21 +4445,10 @@ declare const GPTV3ResponseFunctionToolCallDtoStatus: {
|
|
|
3994
4445
|
* Hautech API
|
|
3995
4446
|
* OpenAPI spec version: 1.0
|
|
3996
4447
|
*/
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
/** The type of the tool call. */
|
|
4002
|
-
type: GPTV3ResponseFunctionToolCallDtoType;
|
|
4003
|
-
/** The name of the function to run. */
|
|
4004
|
-
name: string;
|
|
4005
|
-
/** The unique ID of the function tool call generated by the model. */
|
|
4006
|
-
call_id: string;
|
|
4007
|
-
/** A JSON string of the arguments passed to the function. */
|
|
4008
|
-
arguments: string;
|
|
4009
|
-
/** The status of the function call. */
|
|
4010
|
-
status?: GPTV3ResponseFunctionToolCallDtoStatus;
|
|
4011
|
-
}
|
|
4448
|
+
type GPTV3ResponseInputMcpApprovalRequestDtoType = typeof GPTV3ResponseInputMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseInputMcpApprovalRequestDtoType];
|
|
4449
|
+
declare const GPTV3ResponseInputMcpApprovalRequestDtoType: {
|
|
4450
|
+
readonly mcp_approval_request: "mcp_approval_request";
|
|
4451
|
+
};
|
|
4012
4452
|
|
|
4013
4453
|
/**
|
|
4014
4454
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4016,10 +4456,14 @@ interface GPTV3ResponseFunctionToolCallDto {
|
|
|
4016
4456
|
* Hautech API
|
|
4017
4457
|
* OpenAPI spec version: 1.0
|
|
4018
4458
|
*/
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4459
|
+
|
|
4460
|
+
interface GPTV3ResponseInputMcpApprovalRequestDto {
|
|
4461
|
+
id: string;
|
|
4462
|
+
arguments: string;
|
|
4463
|
+
name: string;
|
|
4464
|
+
server_label: string;
|
|
4465
|
+
type: GPTV3ResponseInputMcpApprovalRequestDtoType;
|
|
4466
|
+
}
|
|
4023
4467
|
|
|
4024
4468
|
/**
|
|
4025
4469
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4027,13 +4471,9 @@ declare const GPTV3ResponseComputerToolCallClickDtoType: {
|
|
|
4027
4471
|
* Hautech API
|
|
4028
4472
|
* OpenAPI spec version: 1.0
|
|
4029
4473
|
*/
|
|
4030
|
-
type
|
|
4031
|
-
declare const
|
|
4032
|
-
readonly
|
|
4033
|
-
readonly right: "right";
|
|
4034
|
-
readonly wheel: "wheel";
|
|
4035
|
-
readonly back: "back";
|
|
4036
|
-
readonly forward: "forward";
|
|
4474
|
+
type GPTV3ResponseInputMcpApprovalResponseDtoType = typeof GPTV3ResponseInputMcpApprovalResponseDtoType[keyof typeof GPTV3ResponseInputMcpApprovalResponseDtoType];
|
|
4475
|
+
declare const GPTV3ResponseInputMcpApprovalResponseDtoType: {
|
|
4476
|
+
readonly mcp_approval_response: "mcp_approval_response";
|
|
4037
4477
|
};
|
|
4038
4478
|
|
|
4039
4479
|
/**
|
|
@@ -4043,11 +4483,14 @@ declare const GPTV3ResponseComputerToolCallClickDtoButton: {
|
|
|
4043
4483
|
* OpenAPI spec version: 1.0
|
|
4044
4484
|
*/
|
|
4045
4485
|
|
|
4046
|
-
interface
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4486
|
+
interface GPTV3ResponseInputMcpApprovalResponseDto {
|
|
4487
|
+
approval_request_id: string;
|
|
4488
|
+
approve: boolean;
|
|
4489
|
+
type: GPTV3ResponseInputMcpApprovalResponseDtoType;
|
|
4490
|
+
/** @nullable */
|
|
4491
|
+
id?: string | null;
|
|
4492
|
+
/** @nullable */
|
|
4493
|
+
reason?: string | null;
|
|
4051
4494
|
}
|
|
4052
4495
|
|
|
4053
4496
|
/**
|
|
@@ -4056,9 +4499,9 @@ interface GPTV3ResponseComputerToolCallClickDto {
|
|
|
4056
4499
|
* Hautech API
|
|
4057
4500
|
* OpenAPI spec version: 1.0
|
|
4058
4501
|
*/
|
|
4059
|
-
type
|
|
4060
|
-
declare const
|
|
4061
|
-
readonly
|
|
4502
|
+
type GPTV3ResponseInputMcpCallDtoType = typeof GPTV3ResponseInputMcpCallDtoType[keyof typeof GPTV3ResponseInputMcpCallDtoType];
|
|
4503
|
+
declare const GPTV3ResponseInputMcpCallDtoType: {
|
|
4504
|
+
readonly mcp_call: "mcp_call";
|
|
4062
4505
|
};
|
|
4063
4506
|
|
|
4064
4507
|
/**
|
|
@@ -4068,10 +4511,16 @@ declare const GPTV3ResponseComputerToolCallDoubleClickDtoType: {
|
|
|
4068
4511
|
* OpenAPI spec version: 1.0
|
|
4069
4512
|
*/
|
|
4070
4513
|
|
|
4071
|
-
interface
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4514
|
+
interface GPTV3ResponseInputMcpCallDto {
|
|
4515
|
+
id: string;
|
|
4516
|
+
arguments: string;
|
|
4517
|
+
name: string;
|
|
4518
|
+
server_label: string;
|
|
4519
|
+
type: GPTV3ResponseInputMcpCallDtoType;
|
|
4520
|
+
/** @nullable */
|
|
4521
|
+
error?: string | null;
|
|
4522
|
+
/** @nullable */
|
|
4523
|
+
output?: string | null;
|
|
4075
4524
|
}
|
|
4076
4525
|
|
|
4077
4526
|
/**
|
|
@@ -4080,9 +4529,9 @@ interface GPTV3ResponseComputerToolCallDoubleClickDto {
|
|
|
4080
4529
|
* Hautech API
|
|
4081
4530
|
* OpenAPI spec version: 1.0
|
|
4082
4531
|
*/
|
|
4083
|
-
type
|
|
4084
|
-
declare const
|
|
4085
|
-
readonly
|
|
4532
|
+
type GPTV3ResponseCustomToolCallOutputDtoType = typeof GPTV3ResponseCustomToolCallOutputDtoType[keyof typeof GPTV3ResponseCustomToolCallOutputDtoType];
|
|
4533
|
+
declare const GPTV3ResponseCustomToolCallOutputDtoType: {
|
|
4534
|
+
readonly custom_tool_call_output: "custom_tool_call_output";
|
|
4086
4535
|
};
|
|
4087
4536
|
|
|
4088
4537
|
/**
|
|
@@ -4091,9 +4540,13 @@ declare const GPTV3ResponseComputerToolCallDragDtoType: {
|
|
|
4091
4540
|
* Hautech API
|
|
4092
4541
|
* OpenAPI spec version: 1.0
|
|
4093
4542
|
*/
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4543
|
+
|
|
4544
|
+
interface GPTV3ResponseCustomToolCallOutputDto {
|
|
4545
|
+
call_id: string;
|
|
4546
|
+
/** JSON string result from your custom tool. */
|
|
4547
|
+
output: string;
|
|
4548
|
+
type: GPTV3ResponseCustomToolCallOutputDtoType;
|
|
4549
|
+
id?: string;
|
|
4097
4550
|
}
|
|
4098
4551
|
|
|
4099
4552
|
/**
|
|
@@ -4102,11 +4555,13 @@ interface GPTV3ResponseComputerToolCallDragPathDto {
|
|
|
4102
4555
|
* Hautech API
|
|
4103
4556
|
* OpenAPI spec version: 1.0
|
|
4104
4557
|
*/
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4558
|
+
/**
|
|
4559
|
+
* The type of the tool call.
|
|
4560
|
+
*/
|
|
4561
|
+
type GPTV3ResponseCustomToolCallDtoType = typeof GPTV3ResponseCustomToolCallDtoType[keyof typeof GPTV3ResponseCustomToolCallDtoType];
|
|
4562
|
+
declare const GPTV3ResponseCustomToolCallDtoType: {
|
|
4563
|
+
readonly custom_tool_call: "custom_tool_call";
|
|
4564
|
+
};
|
|
4110
4565
|
|
|
4111
4566
|
/**
|
|
4112
4567
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4114,9 +4569,14 @@ interface GPTV3ResponseComputerToolCallDragDto {
|
|
|
4114
4569
|
* Hautech API
|
|
4115
4570
|
* OpenAPI spec version: 1.0
|
|
4116
4571
|
*/
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4572
|
+
/**
|
|
4573
|
+
* The status of the tool call.
|
|
4574
|
+
*/
|
|
4575
|
+
type GPTV3ResponseCustomToolCallDtoStatus = typeof GPTV3ResponseCustomToolCallDtoStatus[keyof typeof GPTV3ResponseCustomToolCallDtoStatus];
|
|
4576
|
+
declare const GPTV3ResponseCustomToolCallDtoStatus: {
|
|
4577
|
+
readonly in_progress: "in_progress";
|
|
4578
|
+
readonly completed: "completed";
|
|
4579
|
+
readonly incomplete: "incomplete";
|
|
4120
4580
|
};
|
|
4121
4581
|
|
|
4122
4582
|
/**
|
|
@@ -4126,9 +4586,19 @@ declare const GPTV3ResponseComputerToolCallKeypressDtoType: {
|
|
|
4126
4586
|
* OpenAPI spec version: 1.0
|
|
4127
4587
|
*/
|
|
4128
4588
|
|
|
4129
|
-
interface
|
|
4130
|
-
|
|
4131
|
-
|
|
4589
|
+
interface GPTV3ResponseCustomToolCallDto {
|
|
4590
|
+
/** The unique identifier for this custom tool call. */
|
|
4591
|
+
id?: string;
|
|
4592
|
+
/** The type of the tool call. */
|
|
4593
|
+
type: GPTV3ResponseCustomToolCallDtoType;
|
|
4594
|
+
/** The name of the custom tool to run. */
|
|
4595
|
+
name: string;
|
|
4596
|
+
/** The unique ID of the tool call generated by the model. */
|
|
4597
|
+
call_id: string;
|
|
4598
|
+
/** The status of the tool call. */
|
|
4599
|
+
status?: GPTV3ResponseCustomToolCallDtoStatus;
|
|
4600
|
+
/** Input payload for the custom tool. */
|
|
4601
|
+
input: string;
|
|
4132
4602
|
}
|
|
4133
4603
|
|
|
4134
4604
|
/**
|
|
@@ -4137,9 +4607,12 @@ interface GPTV3ResponseComputerToolCallKeypressDto {
|
|
|
4137
4607
|
* Hautech API
|
|
4138
4608
|
* OpenAPI spec version: 1.0
|
|
4139
4609
|
*/
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4610
|
+
/**
|
|
4611
|
+
* @nullable
|
|
4612
|
+
*/
|
|
4613
|
+
type GPTV3ResponseInputItemReferenceDtoType = typeof GPTV3ResponseInputItemReferenceDtoType[keyof typeof GPTV3ResponseInputItemReferenceDtoType] | null;
|
|
4614
|
+
declare const GPTV3ResponseInputItemReferenceDtoType: {
|
|
4615
|
+
readonly item_reference: "item_reference";
|
|
4143
4616
|
};
|
|
4144
4617
|
|
|
4145
4618
|
/**
|
|
@@ -4149,10 +4622,10 @@ declare const GPTV3ResponseComputerToolCallMoveDtoType: {
|
|
|
4149
4622
|
* OpenAPI spec version: 1.0
|
|
4150
4623
|
*/
|
|
4151
4624
|
|
|
4152
|
-
interface
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4625
|
+
interface GPTV3ResponseInputItemReferenceDto {
|
|
4626
|
+
id: string;
|
|
4627
|
+
/** @nullable */
|
|
4628
|
+
type?: GPTV3ResponseInputItemReferenceDtoType;
|
|
4156
4629
|
}
|
|
4157
4630
|
|
|
4158
4631
|
/**
|
|
@@ -4161,10 +4634,8 @@ interface GPTV3ResponseComputerToolCallMoveDto {
|
|
|
4161
4634
|
* Hautech API
|
|
4162
4635
|
* OpenAPI spec version: 1.0
|
|
4163
4636
|
*/
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
readonly screenshot: "screenshot";
|
|
4167
|
-
};
|
|
4637
|
+
|
|
4638
|
+
type GPTV3InputInputOneOfItem = GPTV3ResponseInputItemMessage | GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseInputComputerCallOutputDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseInputFunctionCallOutputDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseInputItemImageGenerationCallDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseInputLocalShellCallDto | GPTV3ResponseInputLocalShellCallOutputDto | GPTV3ResponseInputMcpListToolsDto | GPTV3ResponseInputMcpApprovalRequestDto | GPTV3ResponseInputMcpApprovalResponseDto | GPTV3ResponseInputMcpCallDto | GPTV3ResponseCustomToolCallOutputDto | GPTV3ResponseCustomToolCallDto | GPTV3ResponseInputItemReferenceDto;
|
|
4168
4639
|
|
|
4169
4640
|
/**
|
|
4170
4641
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4173,9 +4644,10 @@ declare const GPTV3ResponseComputerToolCallScreenshotDtoType: {
|
|
|
4173
4644
|
* OpenAPI spec version: 1.0
|
|
4174
4645
|
*/
|
|
4175
4646
|
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4647
|
+
/**
|
|
4648
|
+
* Text, image, or file inputs to the model, used to generate a response. Can be a simple string, a single message object, or an array of messages with different roles.
|
|
4649
|
+
*/
|
|
4650
|
+
type GPTV3InputInput = string | GPTV3InputInputOneOfItem[];
|
|
4179
4651
|
|
|
4180
4652
|
/**
|
|
4181
4653
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4183,9 +4655,12 @@ interface GPTV3ResponseComputerToolCallScreenshotDto {
|
|
|
4183
4655
|
* Hautech API
|
|
4184
4656
|
* OpenAPI spec version: 1.0
|
|
4185
4657
|
*/
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4658
|
+
/**
|
|
4659
|
+
* The type of response format being defined: 'text'.
|
|
4660
|
+
*/
|
|
4661
|
+
type GPTV3ResponseFormatTextDtoType = typeof GPTV3ResponseFormatTextDtoType[keyof typeof GPTV3ResponseFormatTextDtoType];
|
|
4662
|
+
declare const GPTV3ResponseFormatTextDtoType: {
|
|
4663
|
+
readonly text: "text";
|
|
4189
4664
|
};
|
|
4190
4665
|
|
|
4191
4666
|
/**
|
|
@@ -4195,12 +4670,9 @@ declare const GPTV3ResponseComputerToolCallScrollDtoType: {
|
|
|
4195
4670
|
* OpenAPI spec version: 1.0
|
|
4196
4671
|
*/
|
|
4197
4672
|
|
|
4198
|
-
interface
|
|
4199
|
-
type:
|
|
4200
|
-
|
|
4201
|
-
scroll_y: number;
|
|
4202
|
-
x: number;
|
|
4203
|
-
y: number;
|
|
4673
|
+
interface GPTV3ResponseFormatTextDto {
|
|
4674
|
+
/** The type of response format being defined: 'text'. */
|
|
4675
|
+
type: GPTV3ResponseFormatTextDtoType;
|
|
4204
4676
|
}
|
|
4205
4677
|
|
|
4206
4678
|
/**
|
|
@@ -4209,9 +4681,11 @@ interface GPTV3ResponseComputerToolCallScrollDto {
|
|
|
4209
4681
|
* Hautech API
|
|
4210
4682
|
* OpenAPI spec version: 1.0
|
|
4211
4683
|
*/
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4684
|
+
/**
|
|
4685
|
+
* The schema for the response format, described satisfies a JSON Schema object.
|
|
4686
|
+
*/
|
|
4687
|
+
type GPTV3ResponseFormatJsonSchemaDtoSchema = {
|
|
4688
|
+
[key: string]: unknown;
|
|
4215
4689
|
};
|
|
4216
4690
|
|
|
4217
4691
|
/**
|
|
@@ -4220,21 +4694,12 @@ declare const GPTV3ResponseComputerToolCallTypeDtoType: {
|
|
|
4220
4694
|
* Hautech API
|
|
4221
4695
|
* OpenAPI spec version: 1.0
|
|
4222
4696
|
*/
|
|
4223
|
-
|
|
4224
|
-
interface GPTV3ResponseComputerToolCallTypeDto {
|
|
4225
|
-
type: GPTV3ResponseComputerToolCallTypeDtoType;
|
|
4226
|
-
text: string;
|
|
4227
|
-
}
|
|
4228
|
-
|
|
4229
4697
|
/**
|
|
4230
|
-
*
|
|
4231
|
-
* Do not edit manually.
|
|
4232
|
-
* Hautech API
|
|
4233
|
-
* OpenAPI spec version: 1.0
|
|
4698
|
+
* The type of response format being defined: json_schema.
|
|
4234
4699
|
*/
|
|
4235
|
-
type
|
|
4236
|
-
declare const
|
|
4237
|
-
readonly
|
|
4700
|
+
type GPTV3ResponseFormatJsonSchemaDtoType = typeof GPTV3ResponseFormatJsonSchemaDtoType[keyof typeof GPTV3ResponseFormatJsonSchemaDtoType];
|
|
4701
|
+
declare const GPTV3ResponseFormatJsonSchemaDtoType: {
|
|
4702
|
+
readonly json_schema: "json_schema";
|
|
4238
4703
|
};
|
|
4239
4704
|
|
|
4240
4705
|
/**
|
|
@@ -4244,8 +4709,17 @@ declare const GPTV3ResponseComputerToolCallWaitDtoType: {
|
|
|
4244
4709
|
* OpenAPI spec version: 1.0
|
|
4245
4710
|
*/
|
|
4246
4711
|
|
|
4247
|
-
interface
|
|
4248
|
-
|
|
4712
|
+
interface GPTV3ResponseFormatJsonSchemaDto {
|
|
4713
|
+
/** The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
|
|
4714
|
+
name: string;
|
|
4715
|
+
/** The schema for the response format, described satisfies a JSON Schema object. */
|
|
4716
|
+
schema: GPTV3ResponseFormatJsonSchemaDtoSchema;
|
|
4717
|
+
/** The type of response format being defined: json_schema. */
|
|
4718
|
+
type: GPTV3ResponseFormatJsonSchemaDtoType;
|
|
4719
|
+
/** A description of what the response format is for, used by the model to determine how to respond in the format. */
|
|
4720
|
+
description?: string;
|
|
4721
|
+
/** Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. */
|
|
4722
|
+
strict?: boolean;
|
|
4249
4723
|
}
|
|
4250
4724
|
|
|
4251
4725
|
/**
|
|
@@ -4256,9 +4730,9 @@ interface GPTV3ResponseComputerToolCallWaitDto {
|
|
|
4256
4730
|
*/
|
|
4257
4731
|
|
|
4258
4732
|
/**
|
|
4259
|
-
* The
|
|
4733
|
+
* The format for the text response.
|
|
4260
4734
|
*/
|
|
4261
|
-
type
|
|
4735
|
+
type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormatJsonSchemaDto;
|
|
4262
4736
|
|
|
4263
4737
|
/**
|
|
4264
4738
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4266,10 +4740,10 @@ type GPTV3ResponseComputerToolCallDtoAction = GPTV3ResponseComputerToolCallClick
|
|
|
4266
4740
|
* Hautech API
|
|
4267
4741
|
* OpenAPI spec version: 1.0
|
|
4268
4742
|
*/
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4743
|
+
|
|
4744
|
+
interface GPTV3TextConfigDto {
|
|
4745
|
+
/** The format for the text response. */
|
|
4746
|
+
format?: GPTV3TextConfigDtoFormat;
|
|
4273
4747
|
}
|
|
4274
4748
|
|
|
4275
4749
|
/**
|
|
@@ -4278,11 +4752,13 @@ interface GPTV3ResponseComputerToolCallPendingSafetyCheckDto {
|
|
|
4278
4752
|
* Hautech API
|
|
4279
4753
|
* OpenAPI spec version: 1.0
|
|
4280
4754
|
*/
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4755
|
+
/**
|
|
4756
|
+
* The type of the tool.
|
|
4757
|
+
*/
|
|
4758
|
+
type GPTV3WebSearchToolDtoType = typeof GPTV3WebSearchToolDtoType[keyof typeof GPTV3WebSearchToolDtoType];
|
|
4759
|
+
declare const GPTV3WebSearchToolDtoType: {
|
|
4760
|
+
readonly web_search_preview: "web_search_preview";
|
|
4761
|
+
readonly web_search_preview_2025_03_11: "web_search_preview_2025_03_11";
|
|
4286
4762
|
};
|
|
4287
4763
|
|
|
4288
4764
|
/**
|
|
@@ -4291,9 +4767,14 @@ declare const GPTV3ResponseComputerToolCallDtoStatus: {
|
|
|
4291
4767
|
* Hautech API
|
|
4292
4768
|
* OpenAPI spec version: 1.0
|
|
4293
4769
|
*/
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4770
|
+
/**
|
|
4771
|
+
* High level guidance for the amount of context window space to use for the search.
|
|
4772
|
+
*/
|
|
4773
|
+
type GPTV3WebSearchToolDtoSearchContextSize = typeof GPTV3WebSearchToolDtoSearchContextSize[keyof typeof GPTV3WebSearchToolDtoSearchContextSize];
|
|
4774
|
+
declare const GPTV3WebSearchToolDtoSearchContextSize: {
|
|
4775
|
+
readonly low: "low";
|
|
4776
|
+
readonly medium: "medium";
|
|
4777
|
+
readonly high: "high";
|
|
4297
4778
|
};
|
|
4298
4779
|
|
|
4299
4780
|
/**
|
|
@@ -4303,17 +4784,11 @@ declare const GPTV3ResponseComputerToolCallDtoType: {
|
|
|
4303
4784
|
* OpenAPI spec version: 1.0
|
|
4304
4785
|
*/
|
|
4305
4786
|
|
|
4306
|
-
interface
|
|
4307
|
-
/** The
|
|
4308
|
-
|
|
4309
|
-
/**
|
|
4310
|
-
|
|
4311
|
-
/** The ID of the tool call. */
|
|
4312
|
-
call_id: string;
|
|
4313
|
-
/** Pending safety checks for the computer call. */
|
|
4314
|
-
pending_safety_checks: GPTV3ResponseComputerToolCallPendingSafetyCheckDto[];
|
|
4315
|
-
status: GPTV3ResponseComputerToolCallDtoStatus;
|
|
4316
|
-
type: GPTV3ResponseComputerToolCallDtoType;
|
|
4787
|
+
interface GPTV3WebSearchToolDto {
|
|
4788
|
+
/** The type of the tool. */
|
|
4789
|
+
type: GPTV3WebSearchToolDtoType;
|
|
4790
|
+
/** High level guidance for the amount of context window space to use for the search. */
|
|
4791
|
+
search_context_size?: GPTV3WebSearchToolDtoSearchContextSize;
|
|
4317
4792
|
}
|
|
4318
4793
|
|
|
4319
4794
|
/**
|
|
@@ -4322,10 +4797,8 @@ interface GPTV3ResponseComputerToolCallDto {
|
|
|
4322
4797
|
* Hautech API
|
|
4323
4798
|
* OpenAPI spec version: 1.0
|
|
4324
4799
|
*/
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
readonly summary_text: "summary_text";
|
|
4328
|
-
};
|
|
4800
|
+
|
|
4801
|
+
type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3WebSearchToolDto | GPTV3ImageGenerationToolDto;
|
|
4329
4802
|
|
|
4330
4803
|
/**
|
|
4331
4804
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4333,21 +4806,11 @@ declare const GPTV3ResponseReasoningItemSummaryDtoType: {
|
|
|
4333
4806
|
* Hautech API
|
|
4334
4807
|
* OpenAPI spec version: 1.0
|
|
4335
4808
|
*/
|
|
4336
|
-
|
|
4337
|
-
interface GPTV3ResponseReasoningItemSummaryDto {
|
|
4338
|
-
type: GPTV3ResponseReasoningItemSummaryDtoType;
|
|
4339
|
-
text: string;
|
|
4340
|
-
}
|
|
4341
|
-
|
|
4342
4809
|
/**
|
|
4343
|
-
*
|
|
4344
|
-
* Do not edit manually.
|
|
4345
|
-
* Hautech API
|
|
4346
|
-
* OpenAPI spec version: 1.0
|
|
4810
|
+
* Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice.
|
|
4347
4811
|
*/
|
|
4348
|
-
type
|
|
4349
|
-
|
|
4350
|
-
readonly reasoning: "reasoning";
|
|
4812
|
+
type GPTV3InputToolChoice = {
|
|
4813
|
+
[key: string]: unknown;
|
|
4351
4814
|
};
|
|
4352
4815
|
|
|
4353
4816
|
/**
|
|
@@ -4356,12 +4819,25 @@ declare const GPTV3ResponseReasoningItemDtoType: {
|
|
|
4356
4819
|
* Hautech API
|
|
4357
4820
|
* OpenAPI spec version: 1.0
|
|
4358
4821
|
*/
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4822
|
+
|
|
4823
|
+
interface GPTV3Input {
|
|
4824
|
+
/** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
|
|
4825
|
+
model?: GPTV3InputModel;
|
|
4826
|
+
/** Text, image, or file inputs to the model, used to generate a response. Can be a simple string, a single message object, or an array of messages with different roles. */
|
|
4827
|
+
input?: GPTV3InputInput;
|
|
4828
|
+
/** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
|
|
4829
|
+
text?: GPTV3TextConfigDto;
|
|
4830
|
+
/** This feature is in Beta. If specified, OpenAI will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result. */
|
|
4831
|
+
seed?: number;
|
|
4832
|
+
/** A list of tools the model may call. Supports function, file_search, web_search_preview, and image_generation tools. */
|
|
4833
|
+
tools?: GPTV3InputToolsItem[];
|
|
4834
|
+
/** Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice. */
|
|
4835
|
+
tool_choice?: GPTV3InputToolChoice;
|
|
4836
|
+
/** Maximum number of output tokens to generate. */
|
|
4837
|
+
max_output_tokens?: number;
|
|
4838
|
+
/** Specifies which additional data to include in the response. For file search, use ["file_search_call.results"] to include search results. */
|
|
4839
|
+
include?: string[];
|
|
4840
|
+
}
|
|
4365
4841
|
|
|
4366
4842
|
/**
|
|
4367
4843
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4369,15 +4845,13 @@ declare const GPTV3ResponseReasoningItemDtoStatus: {
|
|
|
4369
4845
|
* Hautech API
|
|
4370
4846
|
* OpenAPI spec version: 1.0
|
|
4371
4847
|
*/
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
status?: GPTV3ResponseReasoningItemDtoStatus;
|
|
4380
|
-
}
|
|
4848
|
+
/**
|
|
4849
|
+
* The type of the message. This is the SECOND output item when file_search or web_search tool is called, containing the model response with citations.
|
|
4850
|
+
*/
|
|
4851
|
+
type GPTV3MessageContentDtoType = typeof GPTV3MessageContentDtoType[keyof typeof GPTV3MessageContentDtoType];
|
|
4852
|
+
declare const GPTV3MessageContentDtoType: {
|
|
4853
|
+
readonly message: "message";
|
|
4854
|
+
};
|
|
4381
4855
|
|
|
4382
4856
|
/**
|
|
4383
4857
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4385,9 +4859,12 @@ interface GPTV3ResponseReasoningItemDto {
|
|
|
4385
4859
|
* Hautech API
|
|
4386
4860
|
* OpenAPI spec version: 1.0
|
|
4387
4861
|
*/
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4862
|
+
/**
|
|
4863
|
+
* The role of the message sender.
|
|
4864
|
+
*/
|
|
4865
|
+
type GPTV3MessageContentDtoRole = typeof GPTV3MessageContentDtoRole[keyof typeof GPTV3MessageContentDtoRole];
|
|
4866
|
+
declare const GPTV3MessageContentDtoRole: {
|
|
4867
|
+
readonly assistant: "assistant";
|
|
4391
4868
|
};
|
|
4392
4869
|
|
|
4393
4870
|
/**
|
|
@@ -4397,9 +4874,15 @@ declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
|
|
|
4397
4874
|
* OpenAPI spec version: 1.0
|
|
4398
4875
|
*/
|
|
4399
4876
|
|
|
4400
|
-
interface
|
|
4401
|
-
|
|
4402
|
-
|
|
4877
|
+
interface GPTV3MessageContentDto {
|
|
4878
|
+
/** The unique identifier for the message. */
|
|
4879
|
+
id: string;
|
|
4880
|
+
/** The type of the message. This is the SECOND output item when file_search or web_search tool is called, containing the model response with citations. */
|
|
4881
|
+
type: GPTV3MessageContentDtoType;
|
|
4882
|
+
/** The role of the message sender. */
|
|
4883
|
+
role: GPTV3MessageContentDtoRole;
|
|
4884
|
+
/** The content of the message with annotations and citations. */
|
|
4885
|
+
content: GPTV3ContentWithAnnotationsDto[];
|
|
4403
4886
|
}
|
|
4404
4887
|
|
|
4405
4888
|
/**
|
|
@@ -4408,9 +4891,9 @@ interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
|
|
|
4408
4891
|
* Hautech API
|
|
4409
4892
|
* OpenAPI spec version: 1.0
|
|
4410
4893
|
*/
|
|
4411
|
-
type
|
|
4412
|
-
declare const
|
|
4413
|
-
readonly
|
|
4894
|
+
type GPTV3OutputKind = typeof GPTV3OutputKind[keyof typeof GPTV3OutputKind];
|
|
4895
|
+
declare const GPTV3OutputKind: {
|
|
4896
|
+
readonly json: "json";
|
|
4414
4897
|
};
|
|
4415
4898
|
|
|
4416
4899
|
/**
|
|
@@ -4419,20 +4902,13 @@ declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
|
|
|
4419
4902
|
* Hautech API
|
|
4420
4903
|
* OpenAPI spec version: 1.0
|
|
4421
4904
|
*/
|
|
4422
|
-
|
|
4423
|
-
interface GPTV3ResponseCodeInterpreterToolCallImageDto {
|
|
4424
|
-
type: GPTV3ResponseCodeInterpreterToolCallImageDtoType;
|
|
4425
|
-
url: string;
|
|
4426
|
-
}
|
|
4427
|
-
|
|
4428
4905
|
/**
|
|
4429
|
-
*
|
|
4430
|
-
* Do not edit manually.
|
|
4431
|
-
* Hautech API
|
|
4432
|
-
* OpenAPI spec version: 1.0
|
|
4906
|
+
* The type of the image generation output item.
|
|
4433
4907
|
*/
|
|
4434
|
-
|
|
4435
|
-
|
|
4908
|
+
type GPTV3ResponseOutputItemImageGenerationCallDtoType = typeof GPTV3ResponseOutputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoType];
|
|
4909
|
+
declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
|
|
4910
|
+
readonly image_generation_call: "image_generation_call";
|
|
4911
|
+
};
|
|
4436
4912
|
|
|
4437
4913
|
/**
|
|
4438
4914
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4440,12 +4916,14 @@ type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem = GPTV3ResponseCodeInter
|
|
|
4440
4916
|
* Hautech API
|
|
4441
4917
|
* OpenAPI spec version: 1.0
|
|
4442
4918
|
*/
|
|
4443
|
-
|
|
4444
|
-
|
|
4919
|
+
/**
|
|
4920
|
+
* The status of the image generation call.
|
|
4921
|
+
*/
|
|
4922
|
+
type GPTV3ResponseOutputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus];
|
|
4923
|
+
declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
|
|
4445
4924
|
readonly in_progress: "in_progress";
|
|
4446
4925
|
readonly completed: "completed";
|
|
4447
|
-
readonly
|
|
4448
|
-
readonly interpreting: "interpreting";
|
|
4926
|
+
readonly generating: "generating";
|
|
4449
4927
|
readonly failed: "failed";
|
|
4450
4928
|
};
|
|
4451
4929
|
|
|
@@ -4455,9 +4933,11 @@ declare const GPTV3ResponseCodeInterpreterToolCallDtoStatus: {
|
|
|
4455
4933
|
* Hautech API
|
|
4456
4934
|
* OpenAPI spec version: 1.0
|
|
4457
4935
|
*/
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4936
|
+
/**
|
|
4937
|
+
* Additional metadata about the image generation.
|
|
4938
|
+
*/
|
|
4939
|
+
type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
|
|
4940
|
+
[key: string]: unknown;
|
|
4461
4941
|
};
|
|
4462
4942
|
|
|
4463
4943
|
/**
|
|
@@ -4467,18 +4947,23 @@ declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
|
|
|
4467
4947
|
* OpenAPI spec version: 1.0
|
|
4468
4948
|
*/
|
|
4469
4949
|
|
|
4470
|
-
interface
|
|
4950
|
+
interface GPTV3ResponseOutputItemImageGenerationCallDto {
|
|
4951
|
+
/** The type of the image generation output item. */
|
|
4952
|
+
type: GPTV3ResponseOutputItemImageGenerationCallDtoType;
|
|
4953
|
+
/** The unique identifier for this image generation call. */
|
|
4471
4954
|
id: string;
|
|
4472
|
-
/**
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4955
|
+
/** The status of the image generation call. */
|
|
4956
|
+
status: GPTV3ResponseOutputItemImageGenerationCallDtoStatus;
|
|
4957
|
+
/** The generated image ID (when conversion is successful). */
|
|
4958
|
+
imageId?: string;
|
|
4959
|
+
/** The format of the generated image (e.g., "png", "jpeg"). */
|
|
4960
|
+
format?: string;
|
|
4961
|
+
/** The size of the generated image in bytes. */
|
|
4962
|
+
size?: number;
|
|
4963
|
+
/** Error message if the image generation failed. */
|
|
4964
|
+
error?: string;
|
|
4965
|
+
/** Additional metadata about the image generation. */
|
|
4966
|
+
metadata?: GPTV3ResponseOutputItemImageGenerationCallDtoMetadata;
|
|
4482
4967
|
}
|
|
4483
4968
|
|
|
4484
4969
|
/**
|
|
@@ -4600,9 +5085,12 @@ interface GPTV3ResponseMcpCallDto {
|
|
|
4600
5085
|
* Hautech API
|
|
4601
5086
|
* OpenAPI spec version: 1.0
|
|
4602
5087
|
*/
|
|
4603
|
-
|
|
5088
|
+
/**
|
|
5089
|
+
* @nullable
|
|
5090
|
+
*/
|
|
5091
|
+
type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
|
|
4604
5092
|
[key: string]: unknown;
|
|
4605
|
-
};
|
|
5093
|
+
} | null;
|
|
4606
5094
|
|
|
4607
5095
|
/**
|
|
4608
5096
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4610,12 +5098,9 @@ type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
|
|
|
4610
5098
|
* Hautech API
|
|
4611
5099
|
* OpenAPI spec version: 1.0
|
|
4612
5100
|
*/
|
|
4613
|
-
|
|
4614
|
-
* @nullable
|
|
4615
|
-
*/
|
|
4616
|
-
type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
|
|
5101
|
+
type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
|
|
4617
5102
|
[key: string]: unknown;
|
|
4618
|
-
}
|
|
5103
|
+
};
|
|
4619
5104
|
|
|
4620
5105
|
/**
|
|
4621
5106
|
* Generated by orval v7.10.0 🍺
|
|
@@ -4626,11 +5111,11 @@ type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
|
|
|
4626
5111
|
|
|
4627
5112
|
interface GPTV3ResponseMcpListToolsToolDto {
|
|
4628
5113
|
name: string;
|
|
4629
|
-
input_schema?: GPTV3ResponseMcpListToolsToolDtoInputSchema;
|
|
4630
5114
|
/** @nullable */
|
|
4631
5115
|
annotations?: GPTV3ResponseMcpListToolsToolDtoAnnotations;
|
|
4632
5116
|
/** @nullable */
|
|
4633
5117
|
description?: string | null;
|
|
5118
|
+
input_schema: GPTV3ResponseMcpListToolsToolDtoInputSchema;
|
|
4634
5119
|
}
|
|
4635
5120
|
|
|
4636
5121
|
/**
|
|
@@ -4686,58 +5171,6 @@ interface GPTV3ResponseMcpApprovalRequestDto {
|
|
|
4686
5171
|
type: GPTV3ResponseMcpApprovalRequestDtoType;
|
|
4687
5172
|
}
|
|
4688
5173
|
|
|
4689
|
-
/**
|
|
4690
|
-
* Generated by orval v7.10.0 🍺
|
|
4691
|
-
* Do not edit manually.
|
|
4692
|
-
* Hautech API
|
|
4693
|
-
* OpenAPI spec version: 1.0
|
|
4694
|
-
*/
|
|
4695
|
-
/**
|
|
4696
|
-
* The type of the tool call.
|
|
4697
|
-
*/
|
|
4698
|
-
type GPTV3ResponseCustomToolCallDtoType = typeof GPTV3ResponseCustomToolCallDtoType[keyof typeof GPTV3ResponseCustomToolCallDtoType];
|
|
4699
|
-
declare const GPTV3ResponseCustomToolCallDtoType: {
|
|
4700
|
-
readonly custom_tool_call: "custom_tool_call";
|
|
4701
|
-
};
|
|
4702
|
-
|
|
4703
|
-
/**
|
|
4704
|
-
* Generated by orval v7.10.0 🍺
|
|
4705
|
-
* Do not edit manually.
|
|
4706
|
-
* Hautech API
|
|
4707
|
-
* OpenAPI spec version: 1.0
|
|
4708
|
-
*/
|
|
4709
|
-
/**
|
|
4710
|
-
* The status of the tool call.
|
|
4711
|
-
*/
|
|
4712
|
-
type GPTV3ResponseCustomToolCallDtoStatus = typeof GPTV3ResponseCustomToolCallDtoStatus[keyof typeof GPTV3ResponseCustomToolCallDtoStatus];
|
|
4713
|
-
declare const GPTV3ResponseCustomToolCallDtoStatus: {
|
|
4714
|
-
readonly in_progress: "in_progress";
|
|
4715
|
-
readonly completed: "completed";
|
|
4716
|
-
readonly incomplete: "incomplete";
|
|
4717
|
-
};
|
|
4718
|
-
|
|
4719
|
-
/**
|
|
4720
|
-
* Generated by orval v7.10.0 🍺
|
|
4721
|
-
* Do not edit manually.
|
|
4722
|
-
* Hautech API
|
|
4723
|
-
* OpenAPI spec version: 1.0
|
|
4724
|
-
*/
|
|
4725
|
-
|
|
4726
|
-
interface GPTV3ResponseCustomToolCallDto {
|
|
4727
|
-
/** The unique identifier for this custom tool call. */
|
|
4728
|
-
id?: string;
|
|
4729
|
-
/** The type of the tool call. */
|
|
4730
|
-
type: GPTV3ResponseCustomToolCallDtoType;
|
|
4731
|
-
/** The name of the custom tool to run. */
|
|
4732
|
-
name: string;
|
|
4733
|
-
/** The unique ID of the tool call generated by the model. */
|
|
4734
|
-
call_id: string;
|
|
4735
|
-
/** The status of the tool call. */
|
|
4736
|
-
status?: GPTV3ResponseCustomToolCallDtoStatus;
|
|
4737
|
-
/** Input payload for the custom tool. */
|
|
4738
|
-
input: string;
|
|
4739
|
-
}
|
|
4740
|
-
|
|
4741
5174
|
/**
|
|
4742
5175
|
* Generated by orval v7.10.0 🍺
|
|
4743
5176
|
* Do not edit manually.
|
|
@@ -4863,6 +5296,59 @@ interface GPTV3ResponseImageGenerationResultsDto {
|
|
|
4863
5296
|
results: GPTV3ResponseOutputItemImageGenerationCallDto[];
|
|
4864
5297
|
}
|
|
4865
5298
|
|
|
5299
|
+
/**
|
|
5300
|
+
* Generated by orval v7.10.0 🍺
|
|
5301
|
+
* Do not edit manually.
|
|
5302
|
+
* Hautech API
|
|
5303
|
+
* OpenAPI spec version: 1.0
|
|
5304
|
+
*/
|
|
5305
|
+
|
|
5306
|
+
type GPTV3SystemMessageDtoContentItemOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
5307
|
+
|
|
5308
|
+
/**
|
|
5309
|
+
* Generated by orval v7.10.0 🍺
|
|
5310
|
+
* Do not edit manually.
|
|
5311
|
+
* Hautech API
|
|
5312
|
+
* OpenAPI spec version: 1.0
|
|
5313
|
+
*/
|
|
5314
|
+
/**
|
|
5315
|
+
* The role of the message sender.
|
|
5316
|
+
*/
|
|
5317
|
+
type GPTV3SystemMessageDtoRole = typeof GPTV3SystemMessageDtoRole[keyof typeof GPTV3SystemMessageDtoRole];
|
|
5318
|
+
declare const GPTV3SystemMessageDtoRole: {
|
|
5319
|
+
readonly system: "system";
|
|
5320
|
+
};
|
|
5321
|
+
|
|
5322
|
+
/**
|
|
5323
|
+
* Generated by orval v7.10.0 🍺
|
|
5324
|
+
* Do not edit manually.
|
|
5325
|
+
* Hautech API
|
|
5326
|
+
* OpenAPI spec version: 1.0
|
|
5327
|
+
*/
|
|
5328
|
+
/**
|
|
5329
|
+
* The type of the message input. Always message.
|
|
5330
|
+
*/
|
|
5331
|
+
type GPTV3SystemMessageDtoType = typeof GPTV3SystemMessageDtoType[keyof typeof GPTV3SystemMessageDtoType];
|
|
5332
|
+
declare const GPTV3SystemMessageDtoType: {
|
|
5333
|
+
readonly message: "message";
|
|
5334
|
+
};
|
|
5335
|
+
|
|
5336
|
+
/**
|
|
5337
|
+
* Generated by orval v7.10.0 🍺
|
|
5338
|
+
* Do not edit manually.
|
|
5339
|
+
* Hautech API
|
|
5340
|
+
* OpenAPI spec version: 1.0
|
|
5341
|
+
*/
|
|
5342
|
+
|
|
5343
|
+
interface GPTV3SystemMessageDto {
|
|
5344
|
+
/** The content of the system message. Can be a string or an array of text and image inputs. */
|
|
5345
|
+
content: GPTV3SystemMessageDtoContentItemOneOfItem[][];
|
|
5346
|
+
/** The role of the message sender. */
|
|
5347
|
+
role: GPTV3SystemMessageDtoRole;
|
|
5348
|
+
/** The type of the message input. Always message. */
|
|
5349
|
+
type: GPTV3SystemMessageDtoType;
|
|
5350
|
+
}
|
|
5351
|
+
|
|
4866
5352
|
/**
|
|
4867
5353
|
* Generated by orval v7.10.0 🍺
|
|
4868
5354
|
* Do not edit manually.
|
|
@@ -4958,6 +5444,71 @@ interface GPTV3ToolDto {
|
|
|
4958
5444
|
type: GPTV3ToolDtoType;
|
|
4959
5445
|
}
|
|
4960
5446
|
|
|
5447
|
+
/**
|
|
5448
|
+
* Generated by orval v7.10.0 🍺
|
|
5449
|
+
* Do not edit manually.
|
|
5450
|
+
* Hautech API
|
|
5451
|
+
* OpenAPI spec version: 1.0
|
|
5452
|
+
*/
|
|
5453
|
+
|
|
5454
|
+
type GPTV3UserMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
5455
|
+
|
|
5456
|
+
/**
|
|
5457
|
+
* Generated by orval v7.10.0 🍺
|
|
5458
|
+
* Do not edit manually.
|
|
5459
|
+
* Hautech API
|
|
5460
|
+
* OpenAPI spec version: 1.0
|
|
5461
|
+
*/
|
|
5462
|
+
|
|
5463
|
+
/**
|
|
5464
|
+
* The content of the user message. Can be a string or an array of text and image inputs.
|
|
5465
|
+
*/
|
|
5466
|
+
type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[];
|
|
5467
|
+
|
|
5468
|
+
/**
|
|
5469
|
+
* Generated by orval v7.10.0 🍺
|
|
5470
|
+
* Do not edit manually.
|
|
5471
|
+
* Hautech API
|
|
5472
|
+
* OpenAPI spec version: 1.0
|
|
5473
|
+
*/
|
|
5474
|
+
/**
|
|
5475
|
+
* The role of the message sender.
|
|
5476
|
+
*/
|
|
5477
|
+
type GPTV3UserMessageDtoRole = typeof GPTV3UserMessageDtoRole[keyof typeof GPTV3UserMessageDtoRole];
|
|
5478
|
+
declare const GPTV3UserMessageDtoRole: {
|
|
5479
|
+
readonly user: "user";
|
|
5480
|
+
};
|
|
5481
|
+
|
|
5482
|
+
/**
|
|
5483
|
+
* Generated by orval v7.10.0 🍺
|
|
5484
|
+
* Do not edit manually.
|
|
5485
|
+
* Hautech API
|
|
5486
|
+
* OpenAPI spec version: 1.0
|
|
5487
|
+
*/
|
|
5488
|
+
/**
|
|
5489
|
+
* The type of the message input. Always message.
|
|
5490
|
+
*/
|
|
5491
|
+
type GPTV3UserMessageDtoType = typeof GPTV3UserMessageDtoType[keyof typeof GPTV3UserMessageDtoType];
|
|
5492
|
+
declare const GPTV3UserMessageDtoType: {
|
|
5493
|
+
readonly message: "message";
|
|
5494
|
+
};
|
|
5495
|
+
|
|
5496
|
+
/**
|
|
5497
|
+
* Generated by orval v7.10.0 🍺
|
|
5498
|
+
* Do not edit manually.
|
|
5499
|
+
* Hautech API
|
|
5500
|
+
* OpenAPI spec version: 1.0
|
|
5501
|
+
*/
|
|
5502
|
+
|
|
5503
|
+
interface GPTV3UserMessageDto {
|
|
5504
|
+
/** The content of the user message. Can be a string or an array of text and image inputs. */
|
|
5505
|
+
content: GPTV3UserMessageDtoContent;
|
|
5506
|
+
/** The role of the message sender. */
|
|
5507
|
+
role: GPTV3UserMessageDtoRole;
|
|
5508
|
+
/** The type of the message input. Always message. */
|
|
5509
|
+
type: GPTV3UserMessageDtoType;
|
|
5510
|
+
}
|
|
5511
|
+
|
|
4961
5512
|
/**
|
|
4962
5513
|
* Generated by orval v7.10.0 🍺
|
|
4963
5514
|
* Do not edit manually.
|
|
@@ -10981,4 +11532,4 @@ declare const createTokenSigner: (options: {
|
|
|
10981
11532
|
}) => Promise<string>;
|
|
10982
11533
|
};
|
|
10983
11534
|
|
|
10984
|
-
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
|
|
11535
|
+
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
|