@hautechai/sdk 2.3.4 → 2.4.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 +2117 -203
- package/dist/index.d.ts +2117 -203
- package/dist/index.js +500 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +435 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ interface AnimateCreatomateV1Response {
|
|
|
317
317
|
status: AnimateCreatomateV1ResponseStatus;
|
|
318
318
|
type: string;
|
|
319
319
|
price?: string;
|
|
320
|
+
estimatedPrice?: string;
|
|
320
321
|
id: string;
|
|
321
322
|
creatorId: string;
|
|
322
323
|
metadata: AnimateCreatomateV1ResponseMetadata;
|
|
@@ -450,6 +451,7 @@ interface AnimateKling16ProV1Response {
|
|
|
450
451
|
status: AnimateKling16ProV1ResponseStatus;
|
|
451
452
|
type: string;
|
|
452
453
|
price?: string;
|
|
454
|
+
estimatedPrice?: string;
|
|
453
455
|
id: string;
|
|
454
456
|
creatorId: string;
|
|
455
457
|
metadata: AnimateKling16ProV1ResponseMetadata;
|
|
@@ -563,6 +565,7 @@ interface AnimateKling21V1Response {
|
|
|
563
565
|
status: AnimateKling21V1ResponseStatus;
|
|
564
566
|
type: string;
|
|
565
567
|
price?: string;
|
|
568
|
+
estimatedPrice?: string;
|
|
566
569
|
id: string;
|
|
567
570
|
creatorId: string;
|
|
568
571
|
metadata: AnimateKling21V1ResponseMetadata;
|
|
@@ -912,6 +915,7 @@ interface CompositeV1Response {
|
|
|
912
915
|
status: CompositeV1ResponseStatus;
|
|
913
916
|
type: string;
|
|
914
917
|
price?: string;
|
|
918
|
+
estimatedPrice?: string;
|
|
915
919
|
id: string;
|
|
916
920
|
creatorId: string;
|
|
917
921
|
metadata: CompositeV1ResponseMetadata;
|
|
@@ -1010,6 +1014,7 @@ interface ContrastV1Response {
|
|
|
1010
1014
|
status: ContrastV1ResponseStatus;
|
|
1011
1015
|
type: string;
|
|
1012
1016
|
price?: string;
|
|
1017
|
+
estimatedPrice?: string;
|
|
1013
1018
|
id: string;
|
|
1014
1019
|
creatorId: string;
|
|
1015
1020
|
metadata: ContrastV1ResponseMetadata;
|
|
@@ -1353,6 +1358,7 @@ interface CropV1Response {
|
|
|
1353
1358
|
status: CropV1ResponseStatus;
|
|
1354
1359
|
type: string;
|
|
1355
1360
|
price?: string;
|
|
1361
|
+
estimatedPrice?: string;
|
|
1356
1362
|
id: string;
|
|
1357
1363
|
creatorId: string;
|
|
1358
1364
|
metadata: CropV1ResponseMetadata;
|
|
@@ -1451,6 +1457,7 @@ interface CutV1Response {
|
|
|
1451
1457
|
status: CutV1ResponseStatus;
|
|
1452
1458
|
type: string;
|
|
1453
1459
|
price?: string;
|
|
1460
|
+
estimatedPrice?: string;
|
|
1454
1461
|
id: string;
|
|
1455
1462
|
creatorId: string;
|
|
1456
1463
|
metadata: CutV1ResponseMetadata;
|
|
@@ -1602,6 +1609,7 @@ interface EchoV1Response {
|
|
|
1602
1609
|
status: EchoV1ResponseStatus;
|
|
1603
1610
|
type: string;
|
|
1604
1611
|
price?: string;
|
|
1612
|
+
estimatedPrice?: string;
|
|
1605
1613
|
id: string;
|
|
1606
1614
|
creatorId: string;
|
|
1607
1615
|
metadata: EchoV1ResponseMetadata;
|
|
@@ -1711,6 +1719,7 @@ interface EditFluxKontextDevV1Response {
|
|
|
1711
1719
|
status: EditFluxKontextDevV1ResponseStatus;
|
|
1712
1720
|
type: string;
|
|
1713
1721
|
price?: string;
|
|
1722
|
+
estimatedPrice?: string;
|
|
1714
1723
|
id: string;
|
|
1715
1724
|
creatorId: string;
|
|
1716
1725
|
metadata: EditFluxKontextDevV1ResponseMetadata;
|
|
@@ -2396,7 +2405,7 @@ interface GPTV3ImageInputDto {
|
|
|
2396
2405
|
/** The ID of the image to analyze. */
|
|
2397
2406
|
imageId: string;
|
|
2398
2407
|
/** The level of detail to use when processing the image. */
|
|
2399
|
-
detail
|
|
2408
|
+
detail: GPTV3ImageInputDtoDetail;
|
|
2400
2409
|
}
|
|
2401
2410
|
|
|
2402
2411
|
/**
|
|
@@ -2765,7 +2774,7 @@ interface GPTV3FileSearchToolDto {
|
|
|
2765
2774
|
/** The type of the tool. */
|
|
2766
2775
|
type: GPTV3FileSearchToolDtoType;
|
|
2767
2776
|
/** The IDs of the vector stores to search. */
|
|
2768
|
-
vector_store_ids
|
|
2777
|
+
vector_store_ids: string[];
|
|
2769
2778
|
/** The maximum number of results to return. */
|
|
2770
2779
|
max_num_results?: number;
|
|
2771
2780
|
}
|
|
@@ -2862,7 +2871,7 @@ declare const GPTV3FunctionToolDtoType: {
|
|
|
2862
2871
|
* OpenAPI spec version: 1.0
|
|
2863
2872
|
*/
|
|
2864
2873
|
/**
|
|
2865
|
-
* The parameters the functions accepts, described
|
|
2874
|
+
* The parameters the functions accepts, described satisfies a JSON Schema object.
|
|
2866
2875
|
*/
|
|
2867
2876
|
type GPTV3FunctionToolDtoParameters = {
|
|
2868
2877
|
[key: string]: unknown;
|
|
@@ -2882,10 +2891,10 @@ interface GPTV3FunctionToolDto {
|
|
|
2882
2891
|
name: string;
|
|
2883
2892
|
/** A description of what the function does. */
|
|
2884
2893
|
description?: string;
|
|
2885
|
-
/** The parameters the functions accepts, described
|
|
2886
|
-
parameters
|
|
2894
|
+
/** The parameters the functions accepts, described satisfies a JSON Schema object. */
|
|
2895
|
+
parameters: GPTV3FunctionToolDtoParameters;
|
|
2887
2896
|
/** Whether to enable strict schema adherence when generating the function call. */
|
|
2888
|
-
strict
|
|
2897
|
+
strict: boolean;
|
|
2889
2898
|
}
|
|
2890
2899
|
|
|
2891
2900
|
/**
|
|
@@ -3088,7 +3097,7 @@ declare const GPTV3InputModel: {
|
|
|
3088
3097
|
* OpenAPI spec version: 1.0
|
|
3089
3098
|
*/
|
|
3090
3099
|
|
|
3091
|
-
type
|
|
3100
|
+
type GPTV3ResponseInputItemMessageContentItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
3092
3101
|
|
|
3093
3102
|
/**
|
|
3094
3103
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3096,11 +3105,15 @@ type GPTV3SystemMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInput
|
|
|
3096
3105
|
* Hautech API
|
|
3097
3106
|
* OpenAPI spec version: 1.0
|
|
3098
3107
|
*/
|
|
3099
|
-
|
|
3100
3108
|
/**
|
|
3101
|
-
* The
|
|
3109
|
+
* The role of the message sender.
|
|
3102
3110
|
*/
|
|
3103
|
-
type
|
|
3111
|
+
type GPTV3ResponseInputItemMessageRole = typeof GPTV3ResponseInputItemMessageRole[keyof typeof GPTV3ResponseInputItemMessageRole];
|
|
3112
|
+
declare const GPTV3ResponseInputItemMessageRole: {
|
|
3113
|
+
readonly user: "user";
|
|
3114
|
+
readonly system: "system";
|
|
3115
|
+
readonly developer: "developer";
|
|
3116
|
+
};
|
|
3104
3117
|
|
|
3105
3118
|
/**
|
|
3106
3119
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3109,11 +3122,11 @@ type GPTV3SystemMessageDtoContent = string | GPTV3SystemMessageDtoContentOneOfIt
|
|
|
3109
3122
|
* OpenAPI spec version: 1.0
|
|
3110
3123
|
*/
|
|
3111
3124
|
/**
|
|
3112
|
-
* The
|
|
3125
|
+
* The type of the message input. Always message.
|
|
3113
3126
|
*/
|
|
3114
|
-
type
|
|
3115
|
-
declare const
|
|
3116
|
-
readonly
|
|
3127
|
+
type GPTV3ResponseInputItemMessageType = typeof GPTV3ResponseInputItemMessageType[keyof typeof GPTV3ResponseInputItemMessageType];
|
|
3128
|
+
declare const GPTV3ResponseInputItemMessageType: {
|
|
3129
|
+
readonly message: "message";
|
|
3117
3130
|
};
|
|
3118
3131
|
|
|
3119
3132
|
/**
|
|
@@ -3122,12 +3135,11 @@ declare const GPTV3SystemMessageDtoRole: {
|
|
|
3122
3135
|
* Hautech API
|
|
3123
3136
|
* OpenAPI spec version: 1.0
|
|
3124
3137
|
*/
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
readonly message: "message";
|
|
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";
|
|
3131
3143
|
};
|
|
3132
3144
|
|
|
3133
3145
|
/**
|
|
@@ -3137,13 +3149,14 @@ declare const GPTV3SystemMessageDtoType: {
|
|
|
3137
3149
|
* OpenAPI spec version: 1.0
|
|
3138
3150
|
*/
|
|
3139
3151
|
|
|
3140
|
-
interface
|
|
3141
|
-
/**
|
|
3142
|
-
content:
|
|
3152
|
+
interface GPTV3ResponseInputItemMessage {
|
|
3153
|
+
/** A list of input items (text, image, file). */
|
|
3154
|
+
content: GPTV3ResponseInputItemMessageContentItem[];
|
|
3143
3155
|
/** The role of the message sender. */
|
|
3144
|
-
role:
|
|
3156
|
+
role: GPTV3ResponseInputItemMessageRole;
|
|
3145
3157
|
/** The type of the message input. Always message. */
|
|
3146
|
-
type
|
|
3158
|
+
type?: GPTV3ResponseInputItemMessageType;
|
|
3159
|
+
status?: GPTV3ResponseInputItemMessageStatus;
|
|
3147
3160
|
}
|
|
3148
3161
|
|
|
3149
3162
|
/**
|
|
@@ -3152,8 +3165,27 @@ interface GPTV3SystemMessageDto {
|
|
|
3152
3165
|
* Hautech API
|
|
3153
3166
|
* OpenAPI spec version: 1.0
|
|
3154
3167
|
*/
|
|
3168
|
+
/**
|
|
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.
|
|
3170
|
+
*/
|
|
3171
|
+
type GPTV3ResponseOutputMessageDtoType = typeof GPTV3ResponseOutputMessageDtoType[keyof typeof GPTV3ResponseOutputMessageDtoType];
|
|
3172
|
+
declare const GPTV3ResponseOutputMessageDtoType: {
|
|
3173
|
+
readonly message: "message";
|
|
3174
|
+
};
|
|
3155
3175
|
|
|
3156
|
-
|
|
3176
|
+
/**
|
|
3177
|
+
* Generated by orval v7.10.0 🍺
|
|
3178
|
+
* Do not edit manually.
|
|
3179
|
+
* Hautech API
|
|
3180
|
+
* OpenAPI spec version: 1.0
|
|
3181
|
+
*/
|
|
3182
|
+
/**
|
|
3183
|
+
* The role of the message sender.
|
|
3184
|
+
*/
|
|
3185
|
+
type GPTV3ResponseOutputMessageDtoRole = typeof GPTV3ResponseOutputMessageDtoRole[keyof typeof GPTV3ResponseOutputMessageDtoRole];
|
|
3186
|
+
declare const GPTV3ResponseOutputMessageDtoRole: {
|
|
3187
|
+
readonly assistant: "assistant";
|
|
3188
|
+
};
|
|
3157
3189
|
|
|
3158
3190
|
/**
|
|
3159
3191
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3161,11 +3193,24 @@ type GPTV3UserMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDt
|
|
|
3161
3193
|
* Hautech API
|
|
3162
3194
|
* OpenAPI spec version: 1.0
|
|
3163
3195
|
*/
|
|
3196
|
+
/**
|
|
3197
|
+
* The type of content.
|
|
3198
|
+
*/
|
|
3199
|
+
type GPTV3ResponseOutputTextDtoType = typeof GPTV3ResponseOutputTextDtoType[keyof typeof GPTV3ResponseOutputTextDtoType];
|
|
3200
|
+
declare const GPTV3ResponseOutputTextDtoType: {
|
|
3201
|
+
readonly output_text: "output_text";
|
|
3202
|
+
};
|
|
3164
3203
|
|
|
3165
3204
|
/**
|
|
3166
|
-
*
|
|
3205
|
+
* Generated by orval v7.10.0 🍺
|
|
3206
|
+
* Do not edit manually.
|
|
3207
|
+
* Hautech API
|
|
3208
|
+
* OpenAPI spec version: 1.0
|
|
3167
3209
|
*/
|
|
3168
|
-
type
|
|
3210
|
+
type GPTV3ResponseOutputTextFileCitationDtoType = typeof GPTV3ResponseOutputTextFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextFileCitationDtoType];
|
|
3211
|
+
declare const GPTV3ResponseOutputTextFileCitationDtoType: {
|
|
3212
|
+
readonly file_citation: "file_citation";
|
|
3213
|
+
};
|
|
3169
3214
|
|
|
3170
3215
|
/**
|
|
3171
3216
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3173,12 +3218,26 @@ type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[]
|
|
|
3173
3218
|
* Hautech API
|
|
3174
3219
|
* OpenAPI spec version: 1.0
|
|
3175
3220
|
*/
|
|
3221
|
+
|
|
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
|
+
}
|
|
3231
|
+
|
|
3176
3232
|
/**
|
|
3177
|
-
*
|
|
3233
|
+
* Generated by orval v7.10.0 🍺
|
|
3234
|
+
* Do not edit manually.
|
|
3235
|
+
* Hautech API
|
|
3236
|
+
* OpenAPI spec version: 1.0
|
|
3178
3237
|
*/
|
|
3179
|
-
type
|
|
3180
|
-
declare const
|
|
3181
|
-
readonly
|
|
3238
|
+
type GPTV3ResponseOutputTextURLCitationDtoType = typeof GPTV3ResponseOutputTextURLCitationDtoType[keyof typeof GPTV3ResponseOutputTextURLCitationDtoType];
|
|
3239
|
+
declare const GPTV3ResponseOutputTextURLCitationDtoType: {
|
|
3240
|
+
readonly url_citation: "url_citation";
|
|
3182
3241
|
};
|
|
3183
3242
|
|
|
3184
3243
|
/**
|
|
@@ -3187,12 +3246,28 @@ declare const GPTV3UserMessageDtoRole: {
|
|
|
3187
3246
|
* Hautech API
|
|
3188
3247
|
* OpenAPI spec version: 1.0
|
|
3189
3248
|
*/
|
|
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
|
+
}
|
|
3261
|
+
|
|
3190
3262
|
/**
|
|
3191
|
-
*
|
|
3263
|
+
* Generated by orval v7.10.0 🍺
|
|
3264
|
+
* Do not edit manually.
|
|
3265
|
+
* Hautech API
|
|
3266
|
+
* OpenAPI spec version: 1.0
|
|
3192
3267
|
*/
|
|
3193
|
-
type
|
|
3194
|
-
declare const
|
|
3195
|
-
readonly
|
|
3268
|
+
type GPTV3ResponseOutputTextContainerFileCitationDtoType = typeof GPTV3ResponseOutputTextContainerFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextContainerFileCitationDtoType];
|
|
3269
|
+
declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
|
|
3270
|
+
readonly container_file_citation: "container_file_citation";
|
|
3196
3271
|
};
|
|
3197
3272
|
|
|
3198
3273
|
/**
|
|
@@ -3202,15 +3277,31 @@ declare const GPTV3UserMessageDtoType: {
|
|
|
3202
3277
|
* OpenAPI spec version: 1.0
|
|
3203
3278
|
*/
|
|
3204
3279
|
|
|
3205
|
-
interface
|
|
3206
|
-
/** The
|
|
3207
|
-
|
|
3208
|
-
/** The
|
|
3209
|
-
|
|
3210
|
-
/** The
|
|
3211
|
-
|
|
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;
|
|
3212
3292
|
}
|
|
3213
3293
|
|
|
3294
|
+
/**
|
|
3295
|
+
* Generated by orval v7.10.0 🍺
|
|
3296
|
+
* Do not edit manually.
|
|
3297
|
+
* Hautech API
|
|
3298
|
+
* OpenAPI spec version: 1.0
|
|
3299
|
+
*/
|
|
3300
|
+
type GPTV3ResponseOutputTextFilePathDtoType = typeof GPTV3ResponseOutputTextFilePathDtoType[keyof typeof GPTV3ResponseOutputTextFilePathDtoType];
|
|
3301
|
+
declare const GPTV3ResponseOutputTextFilePathDtoType: {
|
|
3302
|
+
readonly file_path: "file_path";
|
|
3303
|
+
};
|
|
3304
|
+
|
|
3214
3305
|
/**
|
|
3215
3306
|
* Generated by orval v7.10.0 🍺
|
|
3216
3307
|
* Do not edit manually.
|
|
@@ -3218,7 +3309,13 @@ interface GPTV3UserMessageDto {
|
|
|
3218
3309
|
* OpenAPI spec version: 1.0
|
|
3219
3310
|
*/
|
|
3220
3311
|
|
|
3221
|
-
|
|
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
|
+
}
|
|
3222
3319
|
|
|
3223
3320
|
/**
|
|
3224
3321
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3227,10 +3324,19 @@ type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GP
|
|
|
3227
3324
|
* OpenAPI spec version: 1.0
|
|
3228
3325
|
*/
|
|
3229
3326
|
|
|
3327
|
+
type GPTV3ResponseOutputTextDtoAnnotationsItem = GPTV3ResponseOutputTextFileCitationDto | GPTV3ResponseOutputTextURLCitationDto | GPTV3ResponseOutputTextContainerFileCitationDto | GPTV3ResponseOutputTextFilePathDto;
|
|
3328
|
+
|
|
3230
3329
|
/**
|
|
3231
|
-
*
|
|
3330
|
+
* Generated by orval v7.10.0 🍺
|
|
3331
|
+
* Do not edit manually.
|
|
3332
|
+
* Hautech API
|
|
3333
|
+
* OpenAPI spec version: 1.0
|
|
3232
3334
|
*/
|
|
3233
|
-
|
|
3335
|
+
interface GPTV3ResponseOutputTextLogprobTopLogprobDto {
|
|
3336
|
+
token: string;
|
|
3337
|
+
bytes: number[];
|
|
3338
|
+
logprob: number;
|
|
3339
|
+
}
|
|
3234
3340
|
|
|
3235
3341
|
/**
|
|
3236
3342
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3238,12 +3344,44 @@ type GPTV3InputInput = string | GPTV3SystemMessageDto | GPTV3UserMessageDto | GP
|
|
|
3238
3344
|
* Hautech API
|
|
3239
3345
|
* OpenAPI spec version: 1.0
|
|
3240
3346
|
*/
|
|
3347
|
+
|
|
3348
|
+
interface GPTV3ResponseOutputTextLogprobDto {
|
|
3349
|
+
token: string;
|
|
3350
|
+
bytes: number[];
|
|
3351
|
+
logprob: number;
|
|
3352
|
+
top_logprobs: GPTV3ResponseOutputTextLogprobTopLogprobDto[];
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3241
3355
|
/**
|
|
3242
|
-
*
|
|
3356
|
+
* Generated by orval v7.10.0 🍺
|
|
3357
|
+
* Do not edit manually.
|
|
3358
|
+
* Hautech API
|
|
3359
|
+
* OpenAPI spec version: 1.0
|
|
3243
3360
|
*/
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
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
|
+
}
|
|
3372
|
+
|
|
3373
|
+
/**
|
|
3374
|
+
* Generated by orval v7.10.0 🍺
|
|
3375
|
+
* Do not edit manually.
|
|
3376
|
+
* Hautech API
|
|
3377
|
+
* OpenAPI spec version: 1.0
|
|
3378
|
+
*/
|
|
3379
|
+
/**
|
|
3380
|
+
* The type of content.
|
|
3381
|
+
*/
|
|
3382
|
+
type GPTV3ResponseOutputRefusalDtoType = typeof GPTV3ResponseOutputRefusalDtoType[keyof typeof GPTV3ResponseOutputRefusalDtoType];
|
|
3383
|
+
declare const GPTV3ResponseOutputRefusalDtoType: {
|
|
3384
|
+
readonly refusal: "refusal";
|
|
3247
3385
|
};
|
|
3248
3386
|
|
|
3249
3387
|
/**
|
|
@@ -3253,9 +3391,11 @@ declare const GPTV3ResponseFormatTextDtoType: {
|
|
|
3253
3391
|
* OpenAPI spec version: 1.0
|
|
3254
3392
|
*/
|
|
3255
3393
|
|
|
3256
|
-
interface
|
|
3257
|
-
/** The type of
|
|
3258
|
-
type:
|
|
3394
|
+
interface GPTV3ResponseOutputRefusalDto {
|
|
3395
|
+
/** The type of content. */
|
|
3396
|
+
type: GPTV3ResponseOutputRefusalDtoType;
|
|
3397
|
+
/** The refusal explanation from the model. */
|
|
3398
|
+
refusal: string;
|
|
3259
3399
|
}
|
|
3260
3400
|
|
|
3261
3401
|
/**
|
|
@@ -3264,13 +3404,52 @@ interface GPTV3ResponseFormatTextDto {
|
|
|
3264
3404
|
* Hautech API
|
|
3265
3405
|
* OpenAPI spec version: 1.0
|
|
3266
3406
|
*/
|
|
3407
|
+
|
|
3408
|
+
type GPTV3ResponseOutputMessageDtoContentItem = GPTV3ResponseOutputTextDto | GPTV3ResponseOutputRefusalDto;
|
|
3409
|
+
|
|
3267
3410
|
/**
|
|
3268
|
-
*
|
|
3411
|
+
* Generated by orval v7.10.0 🍺
|
|
3412
|
+
* Do not edit manually.
|
|
3413
|
+
* Hautech API
|
|
3414
|
+
* OpenAPI spec version: 1.0
|
|
3269
3415
|
*/
|
|
3270
|
-
type
|
|
3416
|
+
type GPTV3ResponseOutputMessageDtoStatus = {
|
|
3271
3417
|
[key: string]: unknown;
|
|
3272
3418
|
};
|
|
3273
3419
|
|
|
3420
|
+
/**
|
|
3421
|
+
* Generated by orval v7.10.0 🍺
|
|
3422
|
+
* Do not edit manually.
|
|
3423
|
+
* Hautech API
|
|
3424
|
+
* OpenAPI spec version: 1.0
|
|
3425
|
+
*/
|
|
3426
|
+
|
|
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;
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
/**
|
|
3440
|
+
* Generated by orval v7.10.0 🍺
|
|
3441
|
+
* Do not edit manually.
|
|
3442
|
+
* Hautech API
|
|
3443
|
+
* OpenAPI spec version: 1.0
|
|
3444
|
+
*/
|
|
3445
|
+
/**
|
|
3446
|
+
* The type of the file search result. This is the FIRST output item when file_search tool is called.
|
|
3447
|
+
*/
|
|
3448
|
+
type GPTV3ResponseFileSearchToolCallDtoType = typeof GPTV3ResponseFileSearchToolCallDtoType[keyof typeof GPTV3ResponseFileSearchToolCallDtoType];
|
|
3449
|
+
declare const GPTV3ResponseFileSearchToolCallDtoType: {
|
|
3450
|
+
readonly file_search_call: "file_search_call";
|
|
3451
|
+
};
|
|
3452
|
+
|
|
3274
3453
|
/**
|
|
3275
3454
|
* Generated by orval v7.10.0 🍺
|
|
3276
3455
|
* Do not edit manually.
|
|
@@ -3278,11 +3457,97 @@ type GPTV3ResponseFormatJsonSchemaDtoSchema = {
|
|
|
3278
3457
|
* OpenAPI spec version: 1.0
|
|
3279
3458
|
*/
|
|
3280
3459
|
/**
|
|
3281
|
-
* The
|
|
3460
|
+
* The status of the file search call.
|
|
3282
3461
|
*/
|
|
3283
|
-
type
|
|
3284
|
-
declare const
|
|
3285
|
-
readonly
|
|
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";
|
|
3286
3551
|
};
|
|
3287
3552
|
|
|
3288
3553
|
/**
|
|
@@ -3292,17 +3557,1641 @@ declare const GPTV3ResponseFormatJsonSchemaDtoType: {
|
|
|
3292
3557
|
* OpenAPI spec version: 1.0
|
|
3293
3558
|
*/
|
|
3294
3559
|
|
|
3295
|
-
interface
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
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
|
+
|
|
3868
|
+
/**
|
|
3869
|
+
* Generated by orval v7.10.0 🍺
|
|
3870
|
+
* Do not edit manually.
|
|
3871
|
+
* Hautech API
|
|
3872
|
+
* OpenAPI spec version: 1.0
|
|
3873
|
+
*/
|
|
3874
|
+
interface GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto {
|
|
3875
|
+
id: string;
|
|
3876
|
+
/** @nullable */
|
|
3877
|
+
code?: string | null;
|
|
3878
|
+
/** @nullable */
|
|
3879
|
+
message?: string | null;
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
/**
|
|
3883
|
+
* Generated by orval v7.10.0 🍺
|
|
3884
|
+
* Do not edit manually.
|
|
3885
|
+
* Hautech API
|
|
3886
|
+
* OpenAPI spec version: 1.0
|
|
3887
|
+
*/
|
|
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";
|
|
3893
|
+
};
|
|
3894
|
+
|
|
3895
|
+
/**
|
|
3896
|
+
* Generated by orval v7.10.0 🍺
|
|
3897
|
+
* Do not edit manually.
|
|
3898
|
+
* Hautech API
|
|
3899
|
+
* OpenAPI spec version: 1.0
|
|
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
|
+
|
|
3913
|
+
/**
|
|
3914
|
+
* Generated by orval v7.10.0 🍺
|
|
3915
|
+
* Do not edit manually.
|
|
3916
|
+
* Hautech API
|
|
3917
|
+
* OpenAPI spec version: 1.0
|
|
3918
|
+
*/
|
|
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";
|
|
3925
|
+
};
|
|
3926
|
+
|
|
3927
|
+
/**
|
|
3928
|
+
* Generated by orval v7.10.0 🍺
|
|
3929
|
+
* Do not edit manually.
|
|
3930
|
+
* Hautech API
|
|
3931
|
+
* OpenAPI spec version: 1.0
|
|
3932
|
+
*/
|
|
3933
|
+
/**
|
|
3934
|
+
* The status of the web search call.
|
|
3935
|
+
*/
|
|
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";
|
|
3942
|
+
};
|
|
3943
|
+
|
|
3944
|
+
/**
|
|
3945
|
+
* Generated by orval v7.10.0 🍺
|
|
3946
|
+
* Do not edit manually.
|
|
3947
|
+
* Hautech API
|
|
3948
|
+
* OpenAPI spec version: 1.0
|
|
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
|
+
|
|
3960
|
+
/**
|
|
3961
|
+
* Generated by orval v7.10.0 🍺
|
|
3962
|
+
* Do not edit manually.
|
|
3963
|
+
* Hautech API
|
|
3964
|
+
* OpenAPI spec version: 1.0
|
|
3965
|
+
*/
|
|
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";
|
|
3972
|
+
};
|
|
3973
|
+
|
|
3974
|
+
/**
|
|
3975
|
+
* Generated by orval v7.10.0 🍺
|
|
3976
|
+
* Do not edit manually.
|
|
3977
|
+
* Hautech API
|
|
3978
|
+
* OpenAPI spec version: 1.0
|
|
3979
|
+
*/
|
|
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";
|
|
3988
|
+
};
|
|
3989
|
+
|
|
3990
|
+
/**
|
|
3991
|
+
* Generated by orval v7.10.0 🍺
|
|
3992
|
+
* Do not edit manually.
|
|
3993
|
+
* Hautech API
|
|
3994
|
+
* OpenAPI spec version: 1.0
|
|
3995
|
+
*/
|
|
3996
|
+
|
|
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;
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
/**
|
|
4013
|
+
* Generated by orval v7.10.0 🍺
|
|
4014
|
+
* Do not edit manually.
|
|
4015
|
+
* Hautech API
|
|
4016
|
+
* OpenAPI spec version: 1.0
|
|
4017
|
+
*/
|
|
4018
|
+
type GPTV3ResponseInputFunctionCallOutputDtoType = typeof GPTV3ResponseInputFunctionCallOutputDtoType[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoType];
|
|
4019
|
+
declare const GPTV3ResponseInputFunctionCallOutputDtoType: {
|
|
4020
|
+
readonly function_call_output: "function_call_output";
|
|
4021
|
+
};
|
|
4022
|
+
|
|
4023
|
+
/**
|
|
4024
|
+
* Generated by orval v7.10.0 🍺
|
|
4025
|
+
* Do not edit manually.
|
|
4026
|
+
* Hautech API
|
|
4027
|
+
* OpenAPI spec version: 1.0
|
|
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
|
+
};
|
|
4035
|
+
|
|
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;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
/**
|
|
4054
|
+
* Generated by orval v7.10.0 🍺
|
|
4055
|
+
* Do not edit manually.
|
|
4056
|
+
* Hautech API
|
|
4057
|
+
* OpenAPI spec version: 1.0
|
|
4058
|
+
*/
|
|
4059
|
+
type GPTV3ResponseReasoningItemSummaryDtoType = typeof GPTV3ResponseReasoningItemSummaryDtoType[keyof typeof GPTV3ResponseReasoningItemSummaryDtoType];
|
|
4060
|
+
declare const GPTV3ResponseReasoningItemSummaryDtoType: {
|
|
4061
|
+
readonly summary_text: "summary_text";
|
|
4062
|
+
};
|
|
4063
|
+
|
|
4064
|
+
/**
|
|
4065
|
+
* Generated by orval v7.10.0 🍺
|
|
4066
|
+
* Do not edit manually.
|
|
4067
|
+
* Hautech API
|
|
4068
|
+
* OpenAPI spec version: 1.0
|
|
4069
|
+
*/
|
|
4070
|
+
|
|
4071
|
+
interface GPTV3ResponseReasoningItemSummaryDto {
|
|
4072
|
+
type: GPTV3ResponseReasoningItemSummaryDtoType;
|
|
4073
|
+
text: string;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
/**
|
|
4077
|
+
* Generated by orval v7.10.0 🍺
|
|
4078
|
+
* Do not edit manually.
|
|
4079
|
+
* Hautech API
|
|
4080
|
+
* OpenAPI spec version: 1.0
|
|
4081
|
+
*/
|
|
4082
|
+
type GPTV3ResponseReasoningItemDtoType = typeof GPTV3ResponseReasoningItemDtoType[keyof typeof GPTV3ResponseReasoningItemDtoType];
|
|
4083
|
+
declare const GPTV3ResponseReasoningItemDtoType: {
|
|
4084
|
+
readonly reasoning: "reasoning";
|
|
4085
|
+
};
|
|
4086
|
+
|
|
4087
|
+
/**
|
|
4088
|
+
* Generated by orval v7.10.0 🍺
|
|
4089
|
+
* Do not edit manually.
|
|
4090
|
+
* Hautech API
|
|
4091
|
+
* OpenAPI spec version: 1.0
|
|
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
|
+
};
|
|
4099
|
+
|
|
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;
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
/**
|
|
4117
|
+
* Generated by orval v7.10.0 🍺
|
|
4118
|
+
* Do not edit manually.
|
|
4119
|
+
* Hautech API
|
|
4120
|
+
* OpenAPI spec version: 1.0
|
|
4121
|
+
*/
|
|
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
|
+
};
|
|
4129
|
+
|
|
4130
|
+
/**
|
|
4131
|
+
* Generated by orval v7.10.0 🍺
|
|
4132
|
+
* Do not edit manually.
|
|
4133
|
+
* Hautech API
|
|
4134
|
+
* OpenAPI spec version: 1.0
|
|
4135
|
+
*/
|
|
4136
|
+
type GPTV3ResponseInputItemImageGenerationCallDtoType = typeof GPTV3ResponseInputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoType];
|
|
4137
|
+
declare const GPTV3ResponseInputItemImageGenerationCallDtoType: {
|
|
4138
|
+
readonly image_generation_call: "image_generation_call";
|
|
4139
|
+
};
|
|
4140
|
+
|
|
4141
|
+
/**
|
|
4142
|
+
* Generated by orval v7.10.0 🍺
|
|
4143
|
+
* Do not edit manually.
|
|
4144
|
+
* Hautech API
|
|
4145
|
+
* OpenAPI spec version: 1.0
|
|
4146
|
+
*/
|
|
4147
|
+
|
|
4148
|
+
interface GPTV3ResponseInputItemImageGenerationCallDto {
|
|
4149
|
+
id: string;
|
|
4150
|
+
/** @nullable */
|
|
4151
|
+
result?: string | null;
|
|
4152
|
+
status: GPTV3ResponseInputItemImageGenerationCallDtoStatus;
|
|
4153
|
+
type: GPTV3ResponseInputItemImageGenerationCallDtoType;
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4156
|
+
/**
|
|
4157
|
+
* Generated by orval v7.10.0 🍺
|
|
4158
|
+
* Do not edit manually.
|
|
4159
|
+
* Hautech API
|
|
4160
|
+
* OpenAPI spec version: 1.0
|
|
4161
|
+
*/
|
|
4162
|
+
type GPTV3ResponseCodeInterpreterToolCallLogsDtoType = typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType];
|
|
4163
|
+
declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
|
|
4164
|
+
readonly logs: "logs";
|
|
4165
|
+
};
|
|
4166
|
+
|
|
4167
|
+
/**
|
|
4168
|
+
* Generated by orval v7.10.0 🍺
|
|
4169
|
+
* Do not edit manually.
|
|
4170
|
+
* Hautech API
|
|
4171
|
+
* OpenAPI spec version: 1.0
|
|
4172
|
+
*/
|
|
4173
|
+
|
|
4174
|
+
interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
|
|
4175
|
+
type: GPTV3ResponseCodeInterpreterToolCallLogsDtoType;
|
|
4176
|
+
logs: string;
|
|
4177
|
+
}
|
|
4178
|
+
|
|
4179
|
+
/**
|
|
4180
|
+
* Generated by orval v7.10.0 🍺
|
|
4181
|
+
* Do not edit manually.
|
|
4182
|
+
* Hautech API
|
|
4183
|
+
* OpenAPI spec version: 1.0
|
|
4184
|
+
*/
|
|
4185
|
+
type GPTV3ResponseCodeInterpreterToolCallImageDtoType = typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType];
|
|
4186
|
+
declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
|
|
4187
|
+
readonly image: "image";
|
|
4188
|
+
};
|
|
4189
|
+
|
|
4190
|
+
/**
|
|
4191
|
+
* Generated by orval v7.10.0 🍺
|
|
4192
|
+
* Do not edit manually.
|
|
4193
|
+
* Hautech API
|
|
4194
|
+
* OpenAPI spec version: 1.0
|
|
4195
|
+
*/
|
|
4196
|
+
|
|
4197
|
+
interface GPTV3ResponseCodeInterpreterToolCallImageDto {
|
|
4198
|
+
type: GPTV3ResponseCodeInterpreterToolCallImageDtoType;
|
|
4199
|
+
url: string;
|
|
4200
|
+
}
|
|
4201
|
+
|
|
4202
|
+
/**
|
|
4203
|
+
* Generated by orval v7.10.0 🍺
|
|
4204
|
+
* Do not edit manually.
|
|
4205
|
+
* Hautech API
|
|
4206
|
+
* OpenAPI spec version: 1.0
|
|
4207
|
+
*/
|
|
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
|
+
};
|
|
4225
|
+
|
|
4226
|
+
/**
|
|
4227
|
+
* Generated by orval v7.10.0 🍺
|
|
4228
|
+
* Do not edit manually.
|
|
4229
|
+
* Hautech API
|
|
4230
|
+
* OpenAPI spec version: 1.0
|
|
4231
|
+
*/
|
|
4232
|
+
type GPTV3ResponseCodeInterpreterToolCallDtoType = typeof GPTV3ResponseCodeInterpreterToolCallDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoType];
|
|
4233
|
+
declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
|
|
4234
|
+
readonly code_interpreter_call: "code_interpreter_call";
|
|
4235
|
+
};
|
|
4236
|
+
|
|
4237
|
+
/**
|
|
4238
|
+
* Generated by orval v7.10.0 🍺
|
|
4239
|
+
* Do not edit manually.
|
|
4240
|
+
* Hautech API
|
|
4241
|
+
* OpenAPI spec version: 1.0
|
|
4242
|
+
*/
|
|
4243
|
+
|
|
4244
|
+
interface GPTV3ResponseCodeInterpreterToolCallDto {
|
|
4245
|
+
id: string;
|
|
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;
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
/**
|
|
4259
|
+
* Generated by orval v7.10.0 🍺
|
|
4260
|
+
* Do not edit manually.
|
|
4261
|
+
* Hautech API
|
|
4262
|
+
* OpenAPI spec version: 1.0
|
|
4263
|
+
*/
|
|
4264
|
+
type GPTV3ResponseInputLocalShellCallActionDtoEnv = {
|
|
4265
|
+
[key: string]: unknown;
|
|
4266
|
+
};
|
|
4267
|
+
|
|
4268
|
+
/**
|
|
4269
|
+
* Generated by orval v7.10.0 🍺
|
|
4270
|
+
* Do not edit manually.
|
|
4271
|
+
* Hautech API
|
|
4272
|
+
* OpenAPI spec version: 1.0
|
|
4273
|
+
*/
|
|
4274
|
+
type GPTV3ResponseInputLocalShellCallActionDtoType = typeof GPTV3ResponseInputLocalShellCallActionDtoType[keyof typeof GPTV3ResponseInputLocalShellCallActionDtoType];
|
|
4275
|
+
declare const GPTV3ResponseInputLocalShellCallActionDtoType: {
|
|
4276
|
+
readonly exec: "exec";
|
|
4277
|
+
};
|
|
4278
|
+
|
|
4279
|
+
/**
|
|
4280
|
+
* Generated by orval v7.10.0 🍺
|
|
4281
|
+
* Do not edit manually.
|
|
4282
|
+
* Hautech API
|
|
4283
|
+
* OpenAPI spec version: 1.0
|
|
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
|
+
|
|
4298
|
+
/**
|
|
4299
|
+
* Generated by orval v7.10.0 🍺
|
|
4300
|
+
* Do not edit manually.
|
|
4301
|
+
* Hautech API
|
|
4302
|
+
* OpenAPI spec version: 1.0
|
|
4303
|
+
*/
|
|
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";
|
|
4309
|
+
};
|
|
4310
|
+
|
|
4311
|
+
/**
|
|
4312
|
+
* Generated by orval v7.10.0 🍺
|
|
4313
|
+
* Do not edit manually.
|
|
4314
|
+
* Hautech API
|
|
4315
|
+
* OpenAPI spec version: 1.0
|
|
4316
|
+
*/
|
|
4317
|
+
type GPTV3ResponseInputLocalShellCallDtoType = typeof GPTV3ResponseInputLocalShellCallDtoType[keyof typeof GPTV3ResponseInputLocalShellCallDtoType];
|
|
4318
|
+
declare const GPTV3ResponseInputLocalShellCallDtoType: {
|
|
4319
|
+
readonly local_shell_call: "local_shell_call";
|
|
4320
|
+
};
|
|
4321
|
+
|
|
4322
|
+
/**
|
|
4323
|
+
* Generated by orval v7.10.0 🍺
|
|
4324
|
+
* Do not edit manually.
|
|
4325
|
+
* Hautech API
|
|
4326
|
+
* OpenAPI spec version: 1.0
|
|
4327
|
+
*/
|
|
4328
|
+
|
|
4329
|
+
interface GPTV3ResponseInputLocalShellCallDto {
|
|
4330
|
+
id: string;
|
|
4331
|
+
action: GPTV3ResponseInputLocalShellCallActionDto;
|
|
4332
|
+
call_id: string;
|
|
4333
|
+
status: GPTV3ResponseInputLocalShellCallDtoStatus;
|
|
4334
|
+
type: GPTV3ResponseInputLocalShellCallDtoType;
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4337
|
+
/**
|
|
4338
|
+
* Generated by orval v7.10.0 🍺
|
|
4339
|
+
* Do not edit manually.
|
|
4340
|
+
* Hautech API
|
|
4341
|
+
* OpenAPI spec version: 1.0
|
|
4342
|
+
*/
|
|
4343
|
+
type GPTV3ResponseInputLocalShellCallOutputDtoType = typeof GPTV3ResponseInputLocalShellCallOutputDtoType[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoType];
|
|
4344
|
+
declare const GPTV3ResponseInputLocalShellCallOutputDtoType: {
|
|
4345
|
+
readonly local_shell_call_output: "local_shell_call_output";
|
|
4346
|
+
};
|
|
4347
|
+
|
|
4348
|
+
/**
|
|
4349
|
+
* Generated by orval v7.10.0 🍺
|
|
4350
|
+
* Do not edit manually.
|
|
4351
|
+
* Hautech API
|
|
4352
|
+
* OpenAPI spec version: 1.0
|
|
4353
|
+
*/
|
|
4354
|
+
type GPTV3ResponseInputLocalShellCallOutputDtoStatus = typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus];
|
|
4355
|
+
declare const GPTV3ResponseInputLocalShellCallOutputDtoStatus: {
|
|
4356
|
+
readonly in_progress: "in_progress";
|
|
4357
|
+
readonly completed: "completed";
|
|
4358
|
+
readonly incomplete: "incomplete";
|
|
4359
|
+
};
|
|
4360
|
+
|
|
4361
|
+
/**
|
|
4362
|
+
* Generated by orval v7.10.0 🍺
|
|
4363
|
+
* Do not edit manually.
|
|
4364
|
+
* Hautech API
|
|
4365
|
+
* OpenAPI spec version: 1.0
|
|
4366
|
+
*/
|
|
4367
|
+
|
|
4368
|
+
interface GPTV3ResponseInputLocalShellCallOutputDto {
|
|
4369
|
+
id: string;
|
|
4370
|
+
/** JSON string result from the local shell call. */
|
|
4371
|
+
output: string;
|
|
4372
|
+
type: GPTV3ResponseInputLocalShellCallOutputDtoType;
|
|
4373
|
+
status?: GPTV3ResponseInputLocalShellCallOutputDtoStatus;
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4376
|
+
/**
|
|
4377
|
+
* Generated by orval v7.10.0 🍺
|
|
4378
|
+
* Do not edit manually.
|
|
4379
|
+
* Hautech API
|
|
4380
|
+
* OpenAPI spec version: 1.0
|
|
4381
|
+
*/
|
|
4382
|
+
type GPTV3ResponseInputMcpListToolsToolDtoInputSchema = {
|
|
4383
|
+
[key: string]: unknown;
|
|
4384
|
+
};
|
|
4385
|
+
|
|
4386
|
+
/**
|
|
4387
|
+
* Generated by orval v7.10.0 🍺
|
|
4388
|
+
* Do not edit manually.
|
|
4389
|
+
* Hautech API
|
|
4390
|
+
* OpenAPI spec version: 1.0
|
|
4391
|
+
*/
|
|
4392
|
+
/**
|
|
4393
|
+
* @nullable
|
|
4394
|
+
*/
|
|
4395
|
+
type GPTV3ResponseInputMcpListToolsToolDtoAnnotations = {
|
|
4396
|
+
[key: string]: unknown;
|
|
4397
|
+
} | null;
|
|
4398
|
+
|
|
4399
|
+
/**
|
|
4400
|
+
* Generated by orval v7.10.0 🍺
|
|
4401
|
+
* Do not edit manually.
|
|
4402
|
+
* Hautech API
|
|
4403
|
+
* OpenAPI spec version: 1.0
|
|
4404
|
+
*/
|
|
4405
|
+
|
|
4406
|
+
interface GPTV3ResponseInputMcpListToolsToolDto {
|
|
4407
|
+
input_schema: GPTV3ResponseInputMcpListToolsToolDtoInputSchema;
|
|
4408
|
+
name: string;
|
|
4409
|
+
/** @nullable */
|
|
4410
|
+
annotations?: GPTV3ResponseInputMcpListToolsToolDtoAnnotations;
|
|
4411
|
+
/** @nullable */
|
|
4412
|
+
description?: string | null;
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
/**
|
|
4416
|
+
* Generated by orval v7.10.0 🍺
|
|
4417
|
+
* Do not edit manually.
|
|
4418
|
+
* Hautech API
|
|
4419
|
+
* OpenAPI spec version: 1.0
|
|
4420
|
+
*/
|
|
4421
|
+
type GPTV3ResponseInputMcpListToolsDtoType = typeof GPTV3ResponseInputMcpListToolsDtoType[keyof typeof GPTV3ResponseInputMcpListToolsDtoType];
|
|
4422
|
+
declare const GPTV3ResponseInputMcpListToolsDtoType: {
|
|
4423
|
+
readonly mcp_list_tools: "mcp_list_tools";
|
|
4424
|
+
};
|
|
4425
|
+
|
|
4426
|
+
/**
|
|
4427
|
+
* Generated by orval v7.10.0 🍺
|
|
4428
|
+
* Do not edit manually.
|
|
4429
|
+
* Hautech API
|
|
4430
|
+
* OpenAPI spec version: 1.0
|
|
4431
|
+
*/
|
|
4432
|
+
|
|
4433
|
+
interface GPTV3ResponseInputMcpListToolsDto {
|
|
4434
|
+
id: string;
|
|
4435
|
+
server_label: string;
|
|
4436
|
+
tools: GPTV3ResponseInputMcpListToolsToolDto[];
|
|
4437
|
+
type: GPTV3ResponseInputMcpListToolsDtoType;
|
|
4438
|
+
/** @nullable */
|
|
4439
|
+
error?: string | null;
|
|
4440
|
+
}
|
|
4441
|
+
|
|
4442
|
+
/**
|
|
4443
|
+
* Generated by orval v7.10.0 🍺
|
|
4444
|
+
* Do not edit manually.
|
|
4445
|
+
* Hautech API
|
|
4446
|
+
* OpenAPI spec version: 1.0
|
|
4447
|
+
*/
|
|
4448
|
+
type GPTV3ResponseInputMcpApprovalRequestDtoType = typeof GPTV3ResponseInputMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseInputMcpApprovalRequestDtoType];
|
|
4449
|
+
declare const GPTV3ResponseInputMcpApprovalRequestDtoType: {
|
|
4450
|
+
readonly mcp_approval_request: "mcp_approval_request";
|
|
4451
|
+
};
|
|
4452
|
+
|
|
4453
|
+
/**
|
|
4454
|
+
* Generated by orval v7.10.0 🍺
|
|
4455
|
+
* Do not edit manually.
|
|
4456
|
+
* Hautech API
|
|
4457
|
+
* OpenAPI spec version: 1.0
|
|
4458
|
+
*/
|
|
4459
|
+
|
|
4460
|
+
interface GPTV3ResponseInputMcpApprovalRequestDto {
|
|
4461
|
+
id: string;
|
|
4462
|
+
arguments: string;
|
|
4463
|
+
name: string;
|
|
4464
|
+
server_label: string;
|
|
4465
|
+
type: GPTV3ResponseInputMcpApprovalRequestDtoType;
|
|
4466
|
+
}
|
|
4467
|
+
|
|
4468
|
+
/**
|
|
4469
|
+
* Generated by orval v7.10.0 🍺
|
|
4470
|
+
* Do not edit manually.
|
|
4471
|
+
* Hautech API
|
|
4472
|
+
* OpenAPI spec version: 1.0
|
|
4473
|
+
*/
|
|
4474
|
+
type GPTV3ResponseInputMcpApprovalResponseDtoType = typeof GPTV3ResponseInputMcpApprovalResponseDtoType[keyof typeof GPTV3ResponseInputMcpApprovalResponseDtoType];
|
|
4475
|
+
declare const GPTV3ResponseInputMcpApprovalResponseDtoType: {
|
|
4476
|
+
readonly mcp_approval_response: "mcp_approval_response";
|
|
4477
|
+
};
|
|
4478
|
+
|
|
4479
|
+
/**
|
|
4480
|
+
* Generated by orval v7.10.0 🍺
|
|
4481
|
+
* Do not edit manually.
|
|
4482
|
+
* Hautech API
|
|
4483
|
+
* OpenAPI spec version: 1.0
|
|
4484
|
+
*/
|
|
4485
|
+
|
|
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;
|
|
4494
|
+
}
|
|
4495
|
+
|
|
4496
|
+
/**
|
|
4497
|
+
* Generated by orval v7.10.0 🍺
|
|
4498
|
+
* Do not edit manually.
|
|
4499
|
+
* Hautech API
|
|
4500
|
+
* OpenAPI spec version: 1.0
|
|
4501
|
+
*/
|
|
4502
|
+
type GPTV3ResponseInputMcpCallDtoType = typeof GPTV3ResponseInputMcpCallDtoType[keyof typeof GPTV3ResponseInputMcpCallDtoType];
|
|
4503
|
+
declare const GPTV3ResponseInputMcpCallDtoType: {
|
|
4504
|
+
readonly mcp_call: "mcp_call";
|
|
4505
|
+
};
|
|
4506
|
+
|
|
4507
|
+
/**
|
|
4508
|
+
* Generated by orval v7.10.0 🍺
|
|
4509
|
+
* Do not edit manually.
|
|
4510
|
+
* Hautech API
|
|
4511
|
+
* OpenAPI spec version: 1.0
|
|
4512
|
+
*/
|
|
4513
|
+
|
|
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;
|
|
4524
|
+
}
|
|
4525
|
+
|
|
4526
|
+
/**
|
|
4527
|
+
* Generated by orval v7.10.0 🍺
|
|
4528
|
+
* Do not edit manually.
|
|
4529
|
+
* Hautech API
|
|
4530
|
+
* OpenAPI spec version: 1.0
|
|
4531
|
+
*/
|
|
4532
|
+
type GPTV3ResponseCustomToolCallOutputDtoType = typeof GPTV3ResponseCustomToolCallOutputDtoType[keyof typeof GPTV3ResponseCustomToolCallOutputDtoType];
|
|
4533
|
+
declare const GPTV3ResponseCustomToolCallOutputDtoType: {
|
|
4534
|
+
readonly custom_tool_call_output: "custom_tool_call_output";
|
|
4535
|
+
};
|
|
4536
|
+
|
|
4537
|
+
/**
|
|
4538
|
+
* Generated by orval v7.10.0 🍺
|
|
4539
|
+
* Do not edit manually.
|
|
4540
|
+
* Hautech API
|
|
4541
|
+
* OpenAPI spec version: 1.0
|
|
4542
|
+
*/
|
|
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;
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4552
|
+
/**
|
|
4553
|
+
* Generated by orval v7.10.0 🍺
|
|
4554
|
+
* Do not edit manually.
|
|
4555
|
+
* Hautech API
|
|
4556
|
+
* OpenAPI spec version: 1.0
|
|
4557
|
+
*/
|
|
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
|
+
};
|
|
4565
|
+
|
|
4566
|
+
/**
|
|
4567
|
+
* Generated by orval v7.10.0 🍺
|
|
4568
|
+
* Do not edit manually.
|
|
4569
|
+
* Hautech API
|
|
4570
|
+
* OpenAPI spec version: 1.0
|
|
4571
|
+
*/
|
|
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";
|
|
4580
|
+
};
|
|
4581
|
+
|
|
4582
|
+
/**
|
|
4583
|
+
* Generated by orval v7.10.0 🍺
|
|
4584
|
+
* Do not edit manually.
|
|
4585
|
+
* Hautech API
|
|
4586
|
+
* OpenAPI spec version: 1.0
|
|
4587
|
+
*/
|
|
4588
|
+
|
|
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;
|
|
4602
|
+
}
|
|
4603
|
+
|
|
4604
|
+
/**
|
|
4605
|
+
* Generated by orval v7.10.0 🍺
|
|
4606
|
+
* Do not edit manually.
|
|
4607
|
+
* Hautech API
|
|
4608
|
+
* OpenAPI spec version: 1.0
|
|
4609
|
+
*/
|
|
4610
|
+
/**
|
|
4611
|
+
* @nullable
|
|
4612
|
+
*/
|
|
4613
|
+
type GPTV3ResponseInputItemReferenceDtoType = typeof GPTV3ResponseInputItemReferenceDtoType[keyof typeof GPTV3ResponseInputItemReferenceDtoType] | null;
|
|
4614
|
+
declare const GPTV3ResponseInputItemReferenceDtoType: {
|
|
4615
|
+
readonly item_reference: "item_reference";
|
|
4616
|
+
};
|
|
4617
|
+
|
|
4618
|
+
/**
|
|
4619
|
+
* Generated by orval v7.10.0 🍺
|
|
4620
|
+
* Do not edit manually.
|
|
4621
|
+
* Hautech API
|
|
4622
|
+
* OpenAPI spec version: 1.0
|
|
4623
|
+
*/
|
|
4624
|
+
|
|
4625
|
+
interface GPTV3ResponseInputItemReferenceDto {
|
|
4626
|
+
id: string;
|
|
4627
|
+
/** @nullable */
|
|
4628
|
+
type?: GPTV3ResponseInputItemReferenceDtoType;
|
|
4629
|
+
}
|
|
4630
|
+
|
|
4631
|
+
/**
|
|
4632
|
+
* Generated by orval v7.10.0 🍺
|
|
4633
|
+
* Do not edit manually.
|
|
4634
|
+
* Hautech API
|
|
4635
|
+
* OpenAPI spec version: 1.0
|
|
4636
|
+
*/
|
|
4637
|
+
|
|
4638
|
+
type GPTV3InputInputOneOfItem = GPTV3ResponseInputItemMessage | GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseInputComputerCallOutputDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseInputFunctionCallOutputDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseInputItemImageGenerationCallDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseInputLocalShellCallDto | GPTV3ResponseInputLocalShellCallOutputDto | GPTV3ResponseInputMcpListToolsDto | GPTV3ResponseInputMcpApprovalRequestDto | GPTV3ResponseInputMcpApprovalResponseDto | GPTV3ResponseInputMcpCallDto | GPTV3ResponseCustomToolCallOutputDto | GPTV3ResponseCustomToolCallDto | GPTV3ResponseInputItemReferenceDto;
|
|
4639
|
+
|
|
4640
|
+
/**
|
|
4641
|
+
* Generated by orval v7.10.0 🍺
|
|
4642
|
+
* Do not edit manually.
|
|
4643
|
+
* Hautech API
|
|
4644
|
+
* OpenAPI spec version: 1.0
|
|
4645
|
+
*/
|
|
4646
|
+
|
|
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[];
|
|
4651
|
+
|
|
4652
|
+
/**
|
|
4653
|
+
* Generated by orval v7.10.0 🍺
|
|
4654
|
+
* Do not edit manually.
|
|
4655
|
+
* Hautech API
|
|
4656
|
+
* OpenAPI spec version: 1.0
|
|
4657
|
+
*/
|
|
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";
|
|
4664
|
+
};
|
|
4665
|
+
|
|
4666
|
+
/**
|
|
4667
|
+
* Generated by orval v7.10.0 🍺
|
|
4668
|
+
* Do not edit manually.
|
|
4669
|
+
* Hautech API
|
|
4670
|
+
* OpenAPI spec version: 1.0
|
|
4671
|
+
*/
|
|
4672
|
+
|
|
4673
|
+
interface GPTV3ResponseFormatTextDto {
|
|
4674
|
+
/** The type of response format being defined: 'text'. */
|
|
4675
|
+
type: GPTV3ResponseFormatTextDtoType;
|
|
4676
|
+
}
|
|
4677
|
+
|
|
4678
|
+
/**
|
|
4679
|
+
* Generated by orval v7.10.0 🍺
|
|
4680
|
+
* Do not edit manually.
|
|
4681
|
+
* Hautech API
|
|
4682
|
+
* OpenAPI spec version: 1.0
|
|
4683
|
+
*/
|
|
4684
|
+
/**
|
|
4685
|
+
* The schema for the response format, described satisfies a JSON Schema object.
|
|
4686
|
+
*/
|
|
4687
|
+
type GPTV3ResponseFormatJsonSchemaDtoSchema = {
|
|
4688
|
+
[key: string]: unknown;
|
|
4689
|
+
};
|
|
4690
|
+
|
|
4691
|
+
/**
|
|
4692
|
+
* Generated by orval v7.10.0 🍺
|
|
4693
|
+
* Do not edit manually.
|
|
4694
|
+
* Hautech API
|
|
4695
|
+
* OpenAPI spec version: 1.0
|
|
4696
|
+
*/
|
|
4697
|
+
/**
|
|
4698
|
+
* The type of response format being defined: json_schema.
|
|
4699
|
+
*/
|
|
4700
|
+
type GPTV3ResponseFormatJsonSchemaDtoType = typeof GPTV3ResponseFormatJsonSchemaDtoType[keyof typeof GPTV3ResponseFormatJsonSchemaDtoType];
|
|
4701
|
+
declare const GPTV3ResponseFormatJsonSchemaDtoType: {
|
|
4702
|
+
readonly json_schema: "json_schema";
|
|
4703
|
+
};
|
|
4704
|
+
|
|
4705
|
+
/**
|
|
4706
|
+
* Generated by orval v7.10.0 🍺
|
|
4707
|
+
* Do not edit manually.
|
|
4708
|
+
* Hautech API
|
|
4709
|
+
* OpenAPI spec version: 1.0
|
|
4710
|
+
*/
|
|
4711
|
+
|
|
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;
|
|
4723
|
+
}
|
|
4724
|
+
|
|
4725
|
+
/**
|
|
4726
|
+
* Generated by orval v7.10.0 🍺
|
|
4727
|
+
* Do not edit manually.
|
|
4728
|
+
* Hautech API
|
|
4729
|
+
* OpenAPI spec version: 1.0
|
|
4730
|
+
*/
|
|
4731
|
+
|
|
4732
|
+
/**
|
|
4733
|
+
* The format for the text response.
|
|
4734
|
+
*/
|
|
4735
|
+
type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormatJsonSchemaDto;
|
|
4736
|
+
|
|
4737
|
+
/**
|
|
4738
|
+
* Generated by orval v7.10.0 🍺
|
|
4739
|
+
* Do not edit manually.
|
|
4740
|
+
* Hautech API
|
|
4741
|
+
* OpenAPI spec version: 1.0
|
|
4742
|
+
*/
|
|
4743
|
+
|
|
4744
|
+
interface GPTV3TextConfigDto {
|
|
4745
|
+
/** The format for the text response. */
|
|
4746
|
+
format?: GPTV3TextConfigDtoFormat;
|
|
4747
|
+
}
|
|
4748
|
+
|
|
4749
|
+
/**
|
|
4750
|
+
* Generated by orval v7.10.0 🍺
|
|
4751
|
+
* Do not edit manually.
|
|
4752
|
+
* Hautech API
|
|
4753
|
+
* OpenAPI spec version: 1.0
|
|
4754
|
+
*/
|
|
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";
|
|
4762
|
+
};
|
|
4763
|
+
|
|
4764
|
+
/**
|
|
4765
|
+
* Generated by orval v7.10.0 🍺
|
|
4766
|
+
* Do not edit manually.
|
|
4767
|
+
* Hautech API
|
|
4768
|
+
* OpenAPI spec version: 1.0
|
|
4769
|
+
*/
|
|
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";
|
|
4778
|
+
};
|
|
4779
|
+
|
|
4780
|
+
/**
|
|
4781
|
+
* Generated by orval v7.10.0 🍺
|
|
4782
|
+
* Do not edit manually.
|
|
4783
|
+
* Hautech API
|
|
4784
|
+
* OpenAPI spec version: 1.0
|
|
4785
|
+
*/
|
|
4786
|
+
|
|
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;
|
|
4792
|
+
}
|
|
4793
|
+
|
|
4794
|
+
/**
|
|
4795
|
+
* Generated by orval v7.10.0 🍺
|
|
4796
|
+
* Do not edit manually.
|
|
4797
|
+
* Hautech API
|
|
4798
|
+
* OpenAPI spec version: 1.0
|
|
4799
|
+
*/
|
|
4800
|
+
|
|
4801
|
+
type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3WebSearchToolDto | GPTV3ImageGenerationToolDto;
|
|
4802
|
+
|
|
4803
|
+
/**
|
|
4804
|
+
* Generated by orval v7.10.0 🍺
|
|
4805
|
+
* Do not edit manually.
|
|
4806
|
+
* Hautech API
|
|
4807
|
+
* OpenAPI spec version: 1.0
|
|
4808
|
+
*/
|
|
4809
|
+
/**
|
|
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.
|
|
4811
|
+
*/
|
|
4812
|
+
type GPTV3InputToolChoice = {
|
|
4813
|
+
[key: string]: unknown;
|
|
4814
|
+
};
|
|
4815
|
+
|
|
4816
|
+
/**
|
|
4817
|
+
* Generated by orval v7.10.0 🍺
|
|
4818
|
+
* Do not edit manually.
|
|
4819
|
+
* Hautech API
|
|
4820
|
+
* OpenAPI spec version: 1.0
|
|
4821
|
+
*/
|
|
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
|
+
}
|
|
4841
|
+
|
|
4842
|
+
/**
|
|
4843
|
+
* Generated by orval v7.10.0 🍺
|
|
4844
|
+
* Do not edit manually.
|
|
4845
|
+
* Hautech API
|
|
4846
|
+
* OpenAPI spec version: 1.0
|
|
4847
|
+
*/
|
|
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
|
+
};
|
|
4855
|
+
|
|
4856
|
+
/**
|
|
4857
|
+
* Generated by orval v7.10.0 🍺
|
|
4858
|
+
* Do not edit manually.
|
|
4859
|
+
* Hautech API
|
|
4860
|
+
* OpenAPI spec version: 1.0
|
|
4861
|
+
*/
|
|
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";
|
|
4868
|
+
};
|
|
4869
|
+
|
|
4870
|
+
/**
|
|
4871
|
+
* Generated by orval v7.10.0 🍺
|
|
4872
|
+
* Do not edit manually.
|
|
4873
|
+
* Hautech API
|
|
4874
|
+
* OpenAPI spec version: 1.0
|
|
4875
|
+
*/
|
|
4876
|
+
|
|
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[];
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4888
|
+
/**
|
|
4889
|
+
* Generated by orval v7.10.0 🍺
|
|
4890
|
+
* Do not edit manually.
|
|
4891
|
+
* Hautech API
|
|
4892
|
+
* OpenAPI spec version: 1.0
|
|
4893
|
+
*/
|
|
4894
|
+
type GPTV3OutputKind = typeof GPTV3OutputKind[keyof typeof GPTV3OutputKind];
|
|
4895
|
+
declare const GPTV3OutputKind: {
|
|
4896
|
+
readonly json: "json";
|
|
4897
|
+
};
|
|
4898
|
+
|
|
4899
|
+
/**
|
|
4900
|
+
* Generated by orval v7.10.0 🍺
|
|
4901
|
+
* Do not edit manually.
|
|
4902
|
+
* Hautech API
|
|
4903
|
+
* OpenAPI spec version: 1.0
|
|
4904
|
+
*/
|
|
4905
|
+
/**
|
|
4906
|
+
* The type of the image generation output item.
|
|
4907
|
+
*/
|
|
4908
|
+
type GPTV3ResponseOutputItemImageGenerationCallDtoType = typeof GPTV3ResponseOutputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoType];
|
|
4909
|
+
declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
|
|
4910
|
+
readonly image_generation_call: "image_generation_call";
|
|
4911
|
+
};
|
|
4912
|
+
|
|
4913
|
+
/**
|
|
4914
|
+
* Generated by orval v7.10.0 🍺
|
|
4915
|
+
* Do not edit manually.
|
|
4916
|
+
* Hautech API
|
|
4917
|
+
* OpenAPI spec version: 1.0
|
|
4918
|
+
*/
|
|
4919
|
+
/**
|
|
4920
|
+
* The status of the image generation call.
|
|
4921
|
+
*/
|
|
4922
|
+
type GPTV3ResponseOutputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus];
|
|
4923
|
+
declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
|
|
4924
|
+
readonly in_progress: "in_progress";
|
|
4925
|
+
readonly completed: "completed";
|
|
4926
|
+
readonly generating: "generating";
|
|
4927
|
+
readonly failed: "failed";
|
|
4928
|
+
};
|
|
4929
|
+
|
|
4930
|
+
/**
|
|
4931
|
+
* Generated by orval v7.10.0 🍺
|
|
4932
|
+
* Do not edit manually.
|
|
4933
|
+
* Hautech API
|
|
4934
|
+
* OpenAPI spec version: 1.0
|
|
4935
|
+
*/
|
|
4936
|
+
/**
|
|
4937
|
+
* Additional metadata about the image generation.
|
|
4938
|
+
*/
|
|
4939
|
+
type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
|
|
4940
|
+
[key: string]: unknown;
|
|
4941
|
+
};
|
|
4942
|
+
|
|
4943
|
+
/**
|
|
4944
|
+
* Generated by orval v7.10.0 🍺
|
|
4945
|
+
* Do not edit manually.
|
|
4946
|
+
* Hautech API
|
|
4947
|
+
* OpenAPI spec version: 1.0
|
|
4948
|
+
*/
|
|
4949
|
+
|
|
4950
|
+
interface GPTV3ResponseOutputItemImageGenerationCallDto {
|
|
4951
|
+
/** The type of the image generation output item. */
|
|
4952
|
+
type: GPTV3ResponseOutputItemImageGenerationCallDtoType;
|
|
4953
|
+
/** The unique identifier for this image generation call. */
|
|
4954
|
+
id: string;
|
|
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;
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
/**
|
|
4970
|
+
* Generated by orval v7.10.0 🍺
|
|
4971
|
+
* Do not edit manually.
|
|
4972
|
+
* Hautech API
|
|
4973
|
+
* OpenAPI spec version: 1.0
|
|
4974
|
+
*/
|
|
4975
|
+
type GPTV3ResponseLocalShellCallActionDtoType = typeof GPTV3ResponseLocalShellCallActionDtoType[keyof typeof GPTV3ResponseLocalShellCallActionDtoType];
|
|
4976
|
+
declare const GPTV3ResponseLocalShellCallActionDtoType: {
|
|
4977
|
+
readonly exec: "exec";
|
|
4978
|
+
};
|
|
4979
|
+
|
|
4980
|
+
/**
|
|
4981
|
+
* Generated by orval v7.10.0 🍺
|
|
4982
|
+
* Do not edit manually.
|
|
4983
|
+
* Hautech API
|
|
4984
|
+
* OpenAPI spec version: 1.0
|
|
4985
|
+
*/
|
|
4986
|
+
/**
|
|
4987
|
+
* Environment variables map.
|
|
4988
|
+
*/
|
|
4989
|
+
type GPTV3ResponseLocalShellCallActionDtoEnv = {
|
|
4990
|
+
[key: string]: unknown;
|
|
4991
|
+
};
|
|
4992
|
+
|
|
4993
|
+
/**
|
|
4994
|
+
* Generated by orval v7.10.0 🍺
|
|
4995
|
+
* Do not edit manually.
|
|
4996
|
+
* Hautech API
|
|
4997
|
+
* OpenAPI spec version: 1.0
|
|
4998
|
+
*/
|
|
4999
|
+
|
|
5000
|
+
interface GPTV3ResponseLocalShellCallActionDto {
|
|
5001
|
+
type: GPTV3ResponseLocalShellCallActionDtoType;
|
|
5002
|
+
command: string[];
|
|
5003
|
+
/** Environment variables map. */
|
|
5004
|
+
env: GPTV3ResponseLocalShellCallActionDtoEnv;
|
|
5005
|
+
/** @nullable */
|
|
5006
|
+
timeout_ms?: number | null;
|
|
5007
|
+
/** @nullable */
|
|
5008
|
+
user?: string | null;
|
|
5009
|
+
/** @nullable */
|
|
5010
|
+
working_directory?: string | null;
|
|
5011
|
+
}
|
|
5012
|
+
|
|
5013
|
+
/**
|
|
5014
|
+
* Generated by orval v7.10.0 🍺
|
|
5015
|
+
* Do not edit manually.
|
|
5016
|
+
* Hautech API
|
|
5017
|
+
* OpenAPI spec version: 1.0
|
|
5018
|
+
*/
|
|
5019
|
+
type GPTV3ResponseLocalShellCallDtoStatus = typeof GPTV3ResponseLocalShellCallDtoStatus[keyof typeof GPTV3ResponseLocalShellCallDtoStatus];
|
|
5020
|
+
declare const GPTV3ResponseLocalShellCallDtoStatus: {
|
|
5021
|
+
readonly in_progress: "in_progress";
|
|
5022
|
+
readonly completed: "completed";
|
|
5023
|
+
readonly incomplete: "incomplete";
|
|
5024
|
+
};
|
|
5025
|
+
|
|
5026
|
+
/**
|
|
5027
|
+
* Generated by orval v7.10.0 🍺
|
|
5028
|
+
* Do not edit manually.
|
|
5029
|
+
* Hautech API
|
|
5030
|
+
* OpenAPI spec version: 1.0
|
|
5031
|
+
*/
|
|
5032
|
+
type GPTV3ResponseLocalShellCallDtoType = typeof GPTV3ResponseLocalShellCallDtoType[keyof typeof GPTV3ResponseLocalShellCallDtoType];
|
|
5033
|
+
declare const GPTV3ResponseLocalShellCallDtoType: {
|
|
5034
|
+
readonly local_shell_call: "local_shell_call";
|
|
5035
|
+
};
|
|
5036
|
+
|
|
5037
|
+
/**
|
|
5038
|
+
* Generated by orval v7.10.0 🍺
|
|
5039
|
+
* Do not edit manually.
|
|
5040
|
+
* Hautech API
|
|
5041
|
+
* OpenAPI spec version: 1.0
|
|
5042
|
+
*/
|
|
5043
|
+
|
|
5044
|
+
interface GPTV3ResponseLocalShellCallDto {
|
|
5045
|
+
id: string;
|
|
5046
|
+
action: GPTV3ResponseLocalShellCallActionDto;
|
|
5047
|
+
call_id: string;
|
|
5048
|
+
status: GPTV3ResponseLocalShellCallDtoStatus;
|
|
5049
|
+
type: GPTV3ResponseLocalShellCallDtoType;
|
|
5050
|
+
}
|
|
5051
|
+
|
|
5052
|
+
/**
|
|
5053
|
+
* Generated by orval v7.10.0 🍺
|
|
5054
|
+
* Do not edit manually.
|
|
5055
|
+
* Hautech API
|
|
5056
|
+
* OpenAPI spec version: 1.0
|
|
5057
|
+
*/
|
|
5058
|
+
type GPTV3ResponseMcpCallDtoType = typeof GPTV3ResponseMcpCallDtoType[keyof typeof GPTV3ResponseMcpCallDtoType];
|
|
5059
|
+
declare const GPTV3ResponseMcpCallDtoType: {
|
|
5060
|
+
readonly mcp_call: "mcp_call";
|
|
5061
|
+
};
|
|
5062
|
+
|
|
5063
|
+
/**
|
|
5064
|
+
* Generated by orval v7.10.0 🍺
|
|
5065
|
+
* Do not edit manually.
|
|
5066
|
+
* Hautech API
|
|
5067
|
+
* OpenAPI spec version: 1.0
|
|
5068
|
+
*/
|
|
5069
|
+
|
|
5070
|
+
interface GPTV3ResponseMcpCallDto {
|
|
5071
|
+
id: string;
|
|
5072
|
+
arguments: string;
|
|
5073
|
+
name: string;
|
|
5074
|
+
server_label: string;
|
|
5075
|
+
type: GPTV3ResponseMcpCallDtoType;
|
|
5076
|
+
/** @nullable */
|
|
5077
|
+
error?: string | null;
|
|
5078
|
+
/** @nullable */
|
|
5079
|
+
output?: string | null;
|
|
5080
|
+
}
|
|
5081
|
+
|
|
5082
|
+
/**
|
|
5083
|
+
* Generated by orval v7.10.0 🍺
|
|
5084
|
+
* Do not edit manually.
|
|
5085
|
+
* Hautech API
|
|
5086
|
+
* OpenAPI spec version: 1.0
|
|
5087
|
+
*/
|
|
5088
|
+
type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
|
|
5089
|
+
[key: string]: unknown;
|
|
5090
|
+
};
|
|
5091
|
+
|
|
5092
|
+
/**
|
|
5093
|
+
* Generated by orval v7.10.0 🍺
|
|
5094
|
+
* Do not edit manually.
|
|
5095
|
+
* Hautech API
|
|
5096
|
+
* OpenAPI spec version: 1.0
|
|
5097
|
+
*/
|
|
5098
|
+
/**
|
|
5099
|
+
* @nullable
|
|
5100
|
+
*/
|
|
5101
|
+
type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
|
|
5102
|
+
[key: string]: unknown;
|
|
5103
|
+
} | null;
|
|
5104
|
+
|
|
5105
|
+
/**
|
|
5106
|
+
* Generated by orval v7.10.0 🍺
|
|
5107
|
+
* Do not edit manually.
|
|
5108
|
+
* Hautech API
|
|
5109
|
+
* OpenAPI spec version: 1.0
|
|
5110
|
+
*/
|
|
5111
|
+
|
|
5112
|
+
interface GPTV3ResponseMcpListToolsToolDto {
|
|
5113
|
+
name: string;
|
|
5114
|
+
input_schema?: GPTV3ResponseMcpListToolsToolDtoInputSchema;
|
|
5115
|
+
/** @nullable */
|
|
5116
|
+
annotations?: GPTV3ResponseMcpListToolsToolDtoAnnotations;
|
|
5117
|
+
/** @nullable */
|
|
5118
|
+
description?: string | null;
|
|
5119
|
+
}
|
|
5120
|
+
|
|
5121
|
+
/**
|
|
5122
|
+
* Generated by orval v7.10.0 🍺
|
|
5123
|
+
* Do not edit manually.
|
|
5124
|
+
* Hautech API
|
|
5125
|
+
* OpenAPI spec version: 1.0
|
|
5126
|
+
*/
|
|
5127
|
+
type GPTV3ResponseMcpListToolsDtoType = typeof GPTV3ResponseMcpListToolsDtoType[keyof typeof GPTV3ResponseMcpListToolsDtoType];
|
|
5128
|
+
declare const GPTV3ResponseMcpListToolsDtoType: {
|
|
5129
|
+
readonly mcp_list_tools: "mcp_list_tools";
|
|
5130
|
+
};
|
|
5131
|
+
|
|
5132
|
+
/**
|
|
5133
|
+
* Generated by orval v7.10.0 🍺
|
|
5134
|
+
* Do not edit manually.
|
|
5135
|
+
* Hautech API
|
|
5136
|
+
* OpenAPI spec version: 1.0
|
|
5137
|
+
*/
|
|
5138
|
+
|
|
5139
|
+
interface GPTV3ResponseMcpListToolsDto {
|
|
5140
|
+
id: string;
|
|
5141
|
+
server_label: string;
|
|
5142
|
+
tools: GPTV3ResponseMcpListToolsToolDto[];
|
|
5143
|
+
type: GPTV3ResponseMcpListToolsDtoType;
|
|
5144
|
+
/** @nullable */
|
|
5145
|
+
error?: string | null;
|
|
5146
|
+
}
|
|
5147
|
+
|
|
5148
|
+
/**
|
|
5149
|
+
* Generated by orval v7.10.0 🍺
|
|
5150
|
+
* Do not edit manually.
|
|
5151
|
+
* Hautech API
|
|
5152
|
+
* OpenAPI spec version: 1.0
|
|
5153
|
+
*/
|
|
5154
|
+
type GPTV3ResponseMcpApprovalRequestDtoType = typeof GPTV3ResponseMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseMcpApprovalRequestDtoType];
|
|
5155
|
+
declare const GPTV3ResponseMcpApprovalRequestDtoType: {
|
|
5156
|
+
readonly mcp_approval_request: "mcp_approval_request";
|
|
5157
|
+
};
|
|
5158
|
+
|
|
5159
|
+
/**
|
|
5160
|
+
* Generated by orval v7.10.0 🍺
|
|
5161
|
+
* Do not edit manually.
|
|
5162
|
+
* Hautech API
|
|
5163
|
+
* OpenAPI spec version: 1.0
|
|
5164
|
+
*/
|
|
5165
|
+
|
|
5166
|
+
interface GPTV3ResponseMcpApprovalRequestDto {
|
|
5167
|
+
id: string;
|
|
5168
|
+
arguments: string;
|
|
5169
|
+
name: string;
|
|
5170
|
+
server_label: string;
|
|
5171
|
+
type: GPTV3ResponseMcpApprovalRequestDtoType;
|
|
5172
|
+
}
|
|
5173
|
+
|
|
5174
|
+
/**
|
|
5175
|
+
* Generated by orval v7.10.0 🍺
|
|
5176
|
+
* Do not edit manually.
|
|
5177
|
+
* Hautech API
|
|
5178
|
+
* OpenAPI spec version: 1.0
|
|
5179
|
+
*/
|
|
5180
|
+
|
|
5181
|
+
type GPTV3ResponseDtoOutputItem = GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseOutputItemImageGenerationCallDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseLocalShellCallDto | GPTV3ResponseMcpCallDto | GPTV3ResponseMcpListToolsDto | GPTV3ResponseMcpApprovalRequestDto | GPTV3ResponseCustomToolCallDto;
|
|
5182
|
+
|
|
5183
|
+
/**
|
|
5184
|
+
* Generated by orval v7.10.0 🍺
|
|
5185
|
+
* Do not edit manually.
|
|
5186
|
+
* Hautech API
|
|
5187
|
+
* OpenAPI spec version: 1.0
|
|
5188
|
+
*/
|
|
5189
|
+
|
|
5190
|
+
interface GPTV3ResponseDto {
|
|
5191
|
+
/** Model output items. */
|
|
5192
|
+
output: GPTV3ResponseDtoOutputItem[];
|
|
5193
|
+
/** Concatenated text output from the model. */
|
|
5194
|
+
output_text: string;
|
|
3306
5195
|
}
|
|
3307
5196
|
|
|
3308
5197
|
/**
|
|
@@ -3312,10 +5201,10 @@ interface GPTV3ResponseFormatJsonSchemaDto {
|
|
|
3312
5201
|
* OpenAPI spec version: 1.0
|
|
3313
5202
|
*/
|
|
3314
5203
|
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
5204
|
+
interface GPTV3Output {
|
|
5205
|
+
kind: GPTV3OutputKind;
|
|
5206
|
+
data: GPTV3ResponseDto;
|
|
5207
|
+
}
|
|
3319
5208
|
|
|
3320
5209
|
/**
|
|
3321
5210
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3324,10 +5213,10 @@ type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormat
|
|
|
3324
5213
|
* OpenAPI spec version: 1.0
|
|
3325
5214
|
*/
|
|
3326
5215
|
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
5216
|
+
/**
|
|
5217
|
+
* The content of the response. Can be a string for simple text responses or an array of content with annotations for responses with citations.
|
|
5218
|
+
*/
|
|
5219
|
+
type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
|
|
3331
5220
|
|
|
3332
5221
|
/**
|
|
3333
5222
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3336,11 +5225,12 @@ interface GPTV3TextConfigDto {
|
|
|
3336
5225
|
* OpenAPI spec version: 1.0
|
|
3337
5226
|
*/
|
|
3338
5227
|
/**
|
|
3339
|
-
* The
|
|
5228
|
+
* The finish reason for the response.
|
|
3340
5229
|
*/
|
|
3341
|
-
type
|
|
3342
|
-
declare const
|
|
3343
|
-
readonly
|
|
5230
|
+
type GPTV3ResponseDtoFinishReason = typeof GPTV3ResponseDtoFinishReason[keyof typeof GPTV3ResponseDtoFinishReason];
|
|
5231
|
+
declare const GPTV3ResponseDtoFinishReason: {
|
|
5232
|
+
readonly stop: "stop";
|
|
5233
|
+
readonly tool_calls: "tool_calls";
|
|
3344
5234
|
};
|
|
3345
5235
|
|
|
3346
5236
|
/**
|
|
@@ -3350,13 +5240,11 @@ declare const GPTV3WebSearchToolDtoType: {
|
|
|
3350
5240
|
* OpenAPI spec version: 1.0
|
|
3351
5241
|
*/
|
|
3352
5242
|
/**
|
|
3353
|
-
*
|
|
5243
|
+
* The role of the assistant.
|
|
3354
5244
|
*/
|
|
3355
|
-
type
|
|
3356
|
-
declare const
|
|
3357
|
-
readonly
|
|
3358
|
-
readonly medium: "medium";
|
|
3359
|
-
readonly high: "high";
|
|
5245
|
+
type GPTV3ResponseDtoRole = typeof GPTV3ResponseDtoRole[keyof typeof GPTV3ResponseDtoRole];
|
|
5246
|
+
declare const GPTV3ResponseDtoRole: {
|
|
5247
|
+
readonly assistant: "assistant";
|
|
3360
5248
|
};
|
|
3361
5249
|
|
|
3362
5250
|
/**
|
|
@@ -3365,13 +5253,13 @@ declare const GPTV3WebSearchToolDtoSearchContextSize: {
|
|
|
3365
5253
|
* Hautech API
|
|
3366
5254
|
* OpenAPI spec version: 1.0
|
|
3367
5255
|
*/
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
}
|
|
5256
|
+
/**
|
|
5257
|
+
* The type of tool call: web_search_preview.
|
|
5258
|
+
*/
|
|
5259
|
+
type GPTV3WebSearchCallDtoType = typeof GPTV3WebSearchCallDtoType[keyof typeof GPTV3WebSearchCallDtoType];
|
|
5260
|
+
declare const GPTV3WebSearchCallDtoType: {
|
|
5261
|
+
readonly web_search_preview: "web_search_preview";
|
|
5262
|
+
};
|
|
3375
5263
|
|
|
3376
5264
|
/**
|
|
3377
5265
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3380,7 +5268,12 @@ interface GPTV3WebSearchToolDto {
|
|
|
3380
5268
|
* OpenAPI spec version: 1.0
|
|
3381
5269
|
*/
|
|
3382
5270
|
|
|
3383
|
-
|
|
5271
|
+
interface GPTV3WebSearchCallDto {
|
|
5272
|
+
/** The unique identifier for this tool call. */
|
|
5273
|
+
id: string;
|
|
5274
|
+
/** The type of tool call: web_search_preview. */
|
|
5275
|
+
type: GPTV3WebSearchCallDtoType;
|
|
5276
|
+
}
|
|
3384
5277
|
|
|
3385
5278
|
/**
|
|
3386
5279
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3388,19 +5281,8 @@ type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3
|
|
|
3388
5281
|
* Hautech API
|
|
3389
5282
|
* OpenAPI spec version: 1.0
|
|
3390
5283
|
*/
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
*/
|
|
3394
|
-
type GPTV3ToolChoiceDtoType = typeof GPTV3ToolChoiceDtoType[keyof typeof GPTV3ToolChoiceDtoType];
|
|
3395
|
-
declare const GPTV3ToolChoiceDtoType: {
|
|
3396
|
-
readonly none: "none";
|
|
3397
|
-
readonly auto: "auto";
|
|
3398
|
-
readonly required: "required";
|
|
3399
|
-
readonly function: "function";
|
|
3400
|
-
readonly file_search: "file_search";
|
|
3401
|
-
readonly web_search_preview: "web_search_preview";
|
|
3402
|
-
readonly image_generation: "image_generation";
|
|
3403
|
-
};
|
|
5284
|
+
|
|
5285
|
+
type GPTV3ResponseDtoToolCallsItem = GPTV3FileSearchCallDto | GPTV3WebSearchCallDto | GPTV3ImageGenerationCallDto | GPTV3FunctionCallDto;
|
|
3404
5286
|
|
|
3405
5287
|
/**
|
|
3406
5288
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3408,9 +5290,10 @@ declare const GPTV3ToolChoiceDtoType: {
|
|
|
3408
5290
|
* Hautech API
|
|
3409
5291
|
* OpenAPI spec version: 1.0
|
|
3410
5292
|
*/
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
5293
|
+
|
|
5294
|
+
interface GPTV3ResponseImageGenerationResultsDto {
|
|
5295
|
+
/** Array of image generation results. */
|
|
5296
|
+
results: GPTV3ResponseOutputItemImageGenerationCallDto[];
|
|
3414
5297
|
}
|
|
3415
5298
|
|
|
3416
5299
|
/**
|
|
@@ -3420,12 +5303,7 @@ interface GPTV3ToolChoiceFunctionDto {
|
|
|
3420
5303
|
* OpenAPI spec version: 1.0
|
|
3421
5304
|
*/
|
|
3422
5305
|
|
|
3423
|
-
|
|
3424
|
-
/** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type. */
|
|
3425
|
-
type: GPTV3ToolChoiceDtoType;
|
|
3426
|
-
/** The function to call, if type is `function`. */
|
|
3427
|
-
function?: GPTV3ToolChoiceFunctionDto;
|
|
3428
|
-
}
|
|
5306
|
+
type GPTV3SystemMessageDtoContentItemOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
3429
5307
|
|
|
3430
5308
|
/**
|
|
3431
5309
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3433,24 +5311,13 @@ interface GPTV3ToolChoiceDto {
|
|
|
3433
5311
|
* Hautech API
|
|
3434
5312
|
* OpenAPI spec version: 1.0
|
|
3435
5313
|
*/
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
text?: GPTV3TextConfigDto;
|
|
3444
|
-
/** 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. */
|
|
3445
|
-
seed?: number;
|
|
3446
|
-
/** A list of tools the model may call. Supports function, file_search, web_search_preview, and image_generation tools. */
|
|
3447
|
-
tools?: GPTV3InputToolsItem[];
|
|
3448
|
-
/** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type. */
|
|
3449
|
-
tool_choice?: GPTV3ToolChoiceDto;
|
|
3450
|
-
/** Specifies which additional data to include in the response. For file search, use ["file_search_call.results"] to include search results. */
|
|
3451
|
-
include?: string[];
|
|
3452
|
-
max_output_tokens?: number;
|
|
3453
|
-
}
|
|
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
|
+
};
|
|
3454
5321
|
|
|
3455
5322
|
/**
|
|
3456
5323
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3459,10 +5326,10 @@ interface GPTV3Input {
|
|
|
3459
5326
|
* OpenAPI spec version: 1.0
|
|
3460
5327
|
*/
|
|
3461
5328
|
/**
|
|
3462
|
-
* The type of the message.
|
|
5329
|
+
* The type of the message input. Always message.
|
|
3463
5330
|
*/
|
|
3464
|
-
type
|
|
3465
|
-
declare const
|
|
5331
|
+
type GPTV3SystemMessageDtoType = typeof GPTV3SystemMessageDtoType[keyof typeof GPTV3SystemMessageDtoType];
|
|
5332
|
+
declare const GPTV3SystemMessageDtoType: {
|
|
3466
5333
|
readonly message: "message";
|
|
3467
5334
|
};
|
|
3468
5335
|
|
|
@@ -3472,13 +5339,24 @@ declare const GPTV3MessageContentDtoType: {
|
|
|
3472
5339
|
* Hautech API
|
|
3473
5340
|
* OpenAPI spec version: 1.0
|
|
3474
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
|
+
|
|
3475
5352
|
/**
|
|
3476
|
-
*
|
|
5353
|
+
* Generated by orval v7.10.0 🍺
|
|
5354
|
+
* Do not edit manually.
|
|
5355
|
+
* Hautech API
|
|
5356
|
+
* OpenAPI spec version: 1.0
|
|
3477
5357
|
*/
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
readonly assistant: "assistant";
|
|
3481
|
-
};
|
|
5358
|
+
|
|
5359
|
+
type GPTV3SystemMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
3482
5360
|
|
|
3483
5361
|
/**
|
|
3484
5362
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3487,16 +5365,10 @@ declare const GPTV3MessageContentDtoRole: {
|
|
|
3487
5365
|
* OpenAPI spec version: 1.0
|
|
3488
5366
|
*/
|
|
3489
5367
|
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
type: GPTV3MessageContentDtoType;
|
|
3495
|
-
/** The role of the message sender. */
|
|
3496
|
-
role: GPTV3MessageContentDtoRole;
|
|
3497
|
-
/** The content of the message with annotations and citations. */
|
|
3498
|
-
content: GPTV3ContentWithAnnotationsDto[];
|
|
3499
|
-
}
|
|
5368
|
+
/**
|
|
5369
|
+
* The content of the system message. Can be a string or an array of text and image inputs.
|
|
5370
|
+
*/
|
|
5371
|
+
type GPTV3SystemMessageDtoContent = string | GPTV3SystemMessageDtoContentOneOfItem[];
|
|
3500
5372
|
|
|
3501
5373
|
/**
|
|
3502
5374
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3505,12 +5377,17 @@ interface GPTV3MessageContentDto {
|
|
|
3505
5377
|
* OpenAPI spec version: 1.0
|
|
3506
5378
|
*/
|
|
3507
5379
|
/**
|
|
3508
|
-
*
|
|
5380
|
+
* Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type.
|
|
3509
5381
|
*/
|
|
3510
|
-
type
|
|
3511
|
-
declare const
|
|
3512
|
-
readonly
|
|
3513
|
-
readonly
|
|
5382
|
+
type GPTV3ToolChoiceDtoType = typeof GPTV3ToolChoiceDtoType[keyof typeof GPTV3ToolChoiceDtoType];
|
|
5383
|
+
declare const GPTV3ToolChoiceDtoType: {
|
|
5384
|
+
readonly none: "none";
|
|
5385
|
+
readonly auto: "auto";
|
|
5386
|
+
readonly required: "required";
|
|
5387
|
+
readonly function: "function";
|
|
5388
|
+
readonly file_search: "file_search";
|
|
5389
|
+
readonly web_search_preview: "web_search_preview";
|
|
5390
|
+
readonly image_generation: "image_generation";
|
|
3514
5391
|
};
|
|
3515
5392
|
|
|
3516
5393
|
/**
|
|
@@ -3519,13 +5396,24 @@ declare const GPTV3ResponseDtoFinishReason: {
|
|
|
3519
5396
|
* Hautech API
|
|
3520
5397
|
* OpenAPI spec version: 1.0
|
|
3521
5398
|
*/
|
|
5399
|
+
interface GPTV3ToolChoiceFunctionDto {
|
|
5400
|
+
/** The name of the function to call. */
|
|
5401
|
+
name: string;
|
|
5402
|
+
}
|
|
5403
|
+
|
|
3522
5404
|
/**
|
|
3523
|
-
*
|
|
5405
|
+
* Generated by orval v7.10.0 🍺
|
|
5406
|
+
* Do not edit manually.
|
|
5407
|
+
* Hautech API
|
|
5408
|
+
* OpenAPI spec version: 1.0
|
|
3524
5409
|
*/
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
5410
|
+
|
|
5411
|
+
interface GPTV3ToolChoiceDto {
|
|
5412
|
+
/** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type. */
|
|
5413
|
+
type: GPTV3ToolChoiceDtoType;
|
|
5414
|
+
/** The function to call, if type is `function`. */
|
|
5415
|
+
function?: GPTV3ToolChoiceFunctionDto;
|
|
5416
|
+
}
|
|
3529
5417
|
|
|
3530
5418
|
/**
|
|
3531
5419
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3534,11 +5422,14 @@ declare const GPTV3ResponseDtoRole: {
|
|
|
3534
5422
|
* OpenAPI spec version: 1.0
|
|
3535
5423
|
*/
|
|
3536
5424
|
/**
|
|
3537
|
-
* The type of tool
|
|
5425
|
+
* The type of the tool.
|
|
3538
5426
|
*/
|
|
3539
|
-
type
|
|
3540
|
-
declare const
|
|
5427
|
+
type GPTV3ToolDtoType = typeof GPTV3ToolDtoType[keyof typeof GPTV3ToolDtoType];
|
|
5428
|
+
declare const GPTV3ToolDtoType: {
|
|
5429
|
+
readonly function: "function";
|
|
5430
|
+
readonly file_search: "file_search";
|
|
3541
5431
|
readonly web_search_preview: "web_search_preview";
|
|
5432
|
+
readonly image_generation: "image_generation";
|
|
3542
5433
|
};
|
|
3543
5434
|
|
|
3544
5435
|
/**
|
|
@@ -3548,11 +5439,9 @@ declare const GPTV3WebSearchCallDtoType: {
|
|
|
3548
5439
|
* OpenAPI spec version: 1.0
|
|
3549
5440
|
*/
|
|
3550
5441
|
|
|
3551
|
-
interface
|
|
3552
|
-
/** The
|
|
3553
|
-
|
|
3554
|
-
/** The type of tool call: web_search_preview. */
|
|
3555
|
-
type: GPTV3WebSearchCallDtoType;
|
|
5442
|
+
interface GPTV3ToolDto {
|
|
5443
|
+
/** The type of the tool. */
|
|
5444
|
+
type: GPTV3ToolDtoType;
|
|
3556
5445
|
}
|
|
3557
5446
|
|
|
3558
5447
|
/**
|
|
@@ -3562,7 +5451,7 @@ interface GPTV3WebSearchCallDto {
|
|
|
3562
5451
|
* OpenAPI spec version: 1.0
|
|
3563
5452
|
*/
|
|
3564
5453
|
|
|
3565
|
-
type
|
|
5454
|
+
type GPTV3UserMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
|
|
3566
5455
|
|
|
3567
5456
|
/**
|
|
3568
5457
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3572,9 +5461,9 @@ type GPTV3ResponseDtoToolCallsItem = GPTV3FileSearchCallDto | GPTV3WebSearchCall
|
|
|
3572
5461
|
*/
|
|
3573
5462
|
|
|
3574
5463
|
/**
|
|
3575
|
-
* The content of the
|
|
5464
|
+
* The content of the user message. Can be a string or an array of text and image inputs.
|
|
3576
5465
|
*/
|
|
3577
|
-
type
|
|
5466
|
+
type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[];
|
|
3578
5467
|
|
|
3579
5468
|
/**
|
|
3580
5469
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3582,19 +5471,13 @@ type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
|
|
|
3582
5471
|
* Hautech API
|
|
3583
5472
|
* OpenAPI spec version: 1.0
|
|
3584
5473
|
*/
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
tool_calls?: GPTV3ResponseDtoToolCallsItem[];
|
|
3593
|
-
/** The content of the response. Can be a string for simple text responses or an array of content with annotations for responses with citations. */
|
|
3594
|
-
content?: GPTV3ResponseDtoContent;
|
|
3595
|
-
/** The search results from file search operations. */
|
|
3596
|
-
search_results?: GPTV3FileSearchResultsDto;
|
|
3597
|
-
}
|
|
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
|
+
};
|
|
3598
5481
|
|
|
3599
5482
|
/**
|
|
3600
5483
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3603,14 +5486,11 @@ interface GPTV3ResponseDto {
|
|
|
3603
5486
|
* OpenAPI spec version: 1.0
|
|
3604
5487
|
*/
|
|
3605
5488
|
/**
|
|
3606
|
-
* The type of the
|
|
5489
|
+
* The type of the message input. Always message.
|
|
3607
5490
|
*/
|
|
3608
|
-
type
|
|
3609
|
-
declare const
|
|
3610
|
-
readonly
|
|
3611
|
-
readonly file_search: "file_search";
|
|
3612
|
-
readonly web_search_preview: "web_search_preview";
|
|
3613
|
-
readonly image_generation: "image_generation";
|
|
5491
|
+
type GPTV3UserMessageDtoType = typeof GPTV3UserMessageDtoType[keyof typeof GPTV3UserMessageDtoType];
|
|
5492
|
+
declare const GPTV3UserMessageDtoType: {
|
|
5493
|
+
readonly message: "message";
|
|
3614
5494
|
};
|
|
3615
5495
|
|
|
3616
5496
|
/**
|
|
@@ -3620,9 +5500,13 @@ declare const GPTV3ToolDtoType: {
|
|
|
3620
5500
|
* OpenAPI spec version: 1.0
|
|
3621
5501
|
*/
|
|
3622
5502
|
|
|
3623
|
-
interface
|
|
3624
|
-
/** The
|
|
3625
|
-
|
|
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;
|
|
3626
5510
|
}
|
|
3627
5511
|
|
|
3628
5512
|
/**
|
|
@@ -3980,6 +5864,7 @@ interface GptV1Response {
|
|
|
3980
5864
|
status: GptV1ResponseStatus;
|
|
3981
5865
|
type: string;
|
|
3982
5866
|
price?: string;
|
|
5867
|
+
estimatedPrice?: string;
|
|
3983
5868
|
id: string;
|
|
3984
5869
|
creatorId: string;
|
|
3985
5870
|
metadata: GptV1ResponseMetadata;
|
|
@@ -4067,6 +5952,7 @@ interface GptV2Response {
|
|
|
4067
5952
|
status: GptV2ResponseStatus;
|
|
4068
5953
|
type: string;
|
|
4069
5954
|
price?: string;
|
|
5955
|
+
estimatedPrice?: string;
|
|
4070
5956
|
id: string;
|
|
4071
5957
|
creatorId: string;
|
|
4072
5958
|
metadata: GptV2ResponseMetadata;
|
|
@@ -4149,11 +6035,12 @@ type GptV3ResponseMetadata = {
|
|
|
4149
6035
|
|
|
4150
6036
|
interface GptV3Response {
|
|
4151
6037
|
kind: GptV3ResponseKind;
|
|
4152
|
-
output:
|
|
6038
|
+
output: GPTV3Output;
|
|
4153
6039
|
input: GptV3ResponseInput;
|
|
4154
6040
|
status: GptV3ResponseStatus;
|
|
4155
6041
|
type: string;
|
|
4156
6042
|
price?: string;
|
|
6043
|
+
estimatedPrice?: string;
|
|
4157
6044
|
id: string;
|
|
4158
6045
|
creatorId: string;
|
|
4159
6046
|
metadata: GptV3ResponseMetadata;
|
|
@@ -4381,6 +6268,7 @@ interface HauteLindaV1Response {
|
|
|
4381
6268
|
status: HauteLindaV1ResponseStatus;
|
|
4382
6269
|
type: string;
|
|
4383
6270
|
price?: string;
|
|
6271
|
+
estimatedPrice?: string;
|
|
4384
6272
|
id: string;
|
|
4385
6273
|
creatorId: string;
|
|
4386
6274
|
metadata: HauteLindaV1ResponseMetadata;
|
|
@@ -4519,6 +6407,7 @@ interface HauteNaomiV1Response {
|
|
|
4519
6407
|
status: HauteNaomiV1ResponseStatus;
|
|
4520
6408
|
type: string;
|
|
4521
6409
|
price?: string;
|
|
6410
|
+
estimatedPrice?: string;
|
|
4522
6411
|
id: string;
|
|
4523
6412
|
creatorId: string;
|
|
4524
6413
|
metadata: HauteNaomiV1ResponseMetadata;
|
|
@@ -4620,6 +6509,7 @@ interface IdeogramCharacterV1Response {
|
|
|
4620
6509
|
status: IdeogramCharacterV1ResponseStatus;
|
|
4621
6510
|
type: string;
|
|
4622
6511
|
price?: string;
|
|
6512
|
+
estimatedPrice?: string;
|
|
4623
6513
|
id: string;
|
|
4624
6514
|
creatorId: string;
|
|
4625
6515
|
metadata: IdeogramCharacterV1ResponseMetadata;
|
|
@@ -4670,9 +6560,9 @@ interface ImageEntity {
|
|
|
4670
6560
|
metadata: ImageEntityMetadata;
|
|
4671
6561
|
createdAt: string;
|
|
4672
6562
|
updatedAt: string;
|
|
6563
|
+
format: string;
|
|
4673
6564
|
width: number;
|
|
4674
6565
|
height: number;
|
|
4675
|
-
format: string;
|
|
4676
6566
|
url: string;
|
|
4677
6567
|
}
|
|
4678
6568
|
|
|
@@ -4820,6 +6710,7 @@ interface Imagen4V1Response {
|
|
|
4820
6710
|
status: Imagen4V1ResponseStatus;
|
|
4821
6711
|
type: string;
|
|
4822
6712
|
price?: string;
|
|
6713
|
+
estimatedPrice?: string;
|
|
4823
6714
|
id: string;
|
|
4824
6715
|
creatorId: string;
|
|
4825
6716
|
metadata: Imagen4V1ResponseMetadata;
|
|
@@ -4907,6 +6798,7 @@ interface ImagineFlux11ProUltraV1Response {
|
|
|
4907
6798
|
status: ImagineFlux11ProUltraV1ResponseStatus;
|
|
4908
6799
|
type: string;
|
|
4909
6800
|
price?: string;
|
|
6801
|
+
estimatedPrice?: string;
|
|
4910
6802
|
id: string;
|
|
4911
6803
|
creatorId: string;
|
|
4912
6804
|
metadata: ImagineFlux11ProUltraV1ResponseMetadata;
|
|
@@ -5024,6 +6916,7 @@ interface ImagineKateV1Response {
|
|
|
5024
6916
|
status: ImagineKateV1ResponseStatus;
|
|
5025
6917
|
type: string;
|
|
5026
6918
|
price?: string;
|
|
6919
|
+
estimatedPrice?: string;
|
|
5027
6920
|
id: string;
|
|
5028
6921
|
creatorId: string;
|
|
5029
6922
|
metadata: ImagineKateV1ResponseMetadata;
|
|
@@ -5170,6 +7063,7 @@ interface InpaintKateV1Response {
|
|
|
5170
7063
|
status: InpaintKateV1ResponseStatus;
|
|
5171
7064
|
type: string;
|
|
5172
7065
|
price?: string;
|
|
7066
|
+
estimatedPrice?: string;
|
|
5173
7067
|
id: string;
|
|
5174
7068
|
creatorId: string;
|
|
5175
7069
|
metadata: InpaintKateV1ResponseMetadata;
|
|
@@ -5500,6 +7394,7 @@ interface OperationEntity {
|
|
|
5500
7394
|
status: OperationEntityStatus;
|
|
5501
7395
|
type: string;
|
|
5502
7396
|
price?: string;
|
|
7397
|
+
estimatedPrice?: string;
|
|
5503
7398
|
id: string;
|
|
5504
7399
|
creatorId: string;
|
|
5505
7400
|
metadata: OperationEntityMetadata;
|
|
@@ -5736,10 +7631,10 @@ type VideoEntityMetadata = {
|
|
|
5736
7631
|
interface VideoEntity {
|
|
5737
7632
|
duration: string;
|
|
5738
7633
|
kind: VideoEntityKind;
|
|
5739
|
-
width: number;
|
|
5740
|
-
height: number;
|
|
5741
7634
|
previewImage?: ImageEntity;
|
|
5742
7635
|
previewImageId?: string;
|
|
7636
|
+
width: number;
|
|
7637
|
+
height: number;
|
|
5743
7638
|
url: string;
|
|
5744
7639
|
id: string;
|
|
5745
7640
|
creatorId: string;
|
|
@@ -5995,6 +7890,7 @@ interface LumaPhotonV1Response {
|
|
|
5995
7890
|
status: LumaPhotonV1ResponseStatus;
|
|
5996
7891
|
type: string;
|
|
5997
7892
|
price?: string;
|
|
7893
|
+
estimatedPrice?: string;
|
|
5998
7894
|
id: string;
|
|
5999
7895
|
creatorId: string;
|
|
6000
7896
|
metadata: LumaPhotonV1ResponseMetadata;
|
|
@@ -6109,6 +8005,7 @@ interface MathV1Response {
|
|
|
6109
8005
|
status: MathV1ResponseStatus;
|
|
6110
8006
|
type: string;
|
|
6111
8007
|
price?: string;
|
|
8008
|
+
estimatedPrice?: string;
|
|
6112
8009
|
id: string;
|
|
6113
8010
|
creatorId: string;
|
|
6114
8011
|
metadata: MathV1ResponseMetadata;
|
|
@@ -6259,6 +8156,7 @@ interface NegateImageV1Response {
|
|
|
6259
8156
|
status: NegateImageV1ResponseStatus;
|
|
6260
8157
|
type: string;
|
|
6261
8158
|
price?: string;
|
|
8159
|
+
estimatedPrice?: string;
|
|
6262
8160
|
id: string;
|
|
6263
8161
|
creatorId: string;
|
|
6264
8162
|
metadata: NegateImageV1ResponseMetadata;
|
|
@@ -6358,6 +8256,7 @@ interface NoiseV1Response {
|
|
|
6358
8256
|
status: NoiseV1ResponseStatus;
|
|
6359
8257
|
type: string;
|
|
6360
8258
|
price?: string;
|
|
8259
|
+
estimatedPrice?: string;
|
|
6361
8260
|
id: string;
|
|
6362
8261
|
creatorId: string;
|
|
6363
8262
|
metadata: NoiseV1ResponseMetadata;
|
|
@@ -6479,6 +8378,7 @@ interface ObjectDetectionV1Response {
|
|
|
6479
8378
|
status: ObjectDetectionV1ResponseStatus;
|
|
6480
8379
|
type: string;
|
|
6481
8380
|
price?: string;
|
|
8381
|
+
estimatedPrice?: string;
|
|
6482
8382
|
id: string;
|
|
6483
8383
|
creatorId: string;
|
|
6484
8384
|
metadata: ObjectDetectionV1ResponseMetadata;
|
|
@@ -6672,6 +8572,7 @@ interface OnecompilerV1Response {
|
|
|
6672
8572
|
status: OnecompilerV1ResponseStatus;
|
|
6673
8573
|
type: string;
|
|
6674
8574
|
price?: string;
|
|
8575
|
+
estimatedPrice?: string;
|
|
6675
8576
|
id: string;
|
|
6676
8577
|
creatorId: string;
|
|
6677
8578
|
metadata: OnecompilerV1ResponseMetadata;
|
|
@@ -6972,6 +8873,7 @@ interface PipelineMapV1Response {
|
|
|
6972
8873
|
status: PipelineMapV1ResponseStatus;
|
|
6973
8874
|
type: string;
|
|
6974
8875
|
price?: string;
|
|
8876
|
+
estimatedPrice?: string;
|
|
6975
8877
|
id: string;
|
|
6976
8878
|
creatorId: string;
|
|
6977
8879
|
metadata: PipelineMapV1ResponseMetadata;
|
|
@@ -7167,6 +9069,7 @@ interface PoseEstimationV1Response {
|
|
|
7167
9069
|
status: PoseEstimationV1ResponseStatus;
|
|
7168
9070
|
type: string;
|
|
7169
9071
|
price?: string;
|
|
9072
|
+
estimatedPrice?: string;
|
|
7170
9073
|
id: string;
|
|
7171
9074
|
creatorId: string;
|
|
7172
9075
|
metadata: PoseEstimationV1ResponseMetadata;
|
|
@@ -7374,6 +9277,7 @@ interface ResizeV1Response {
|
|
|
7374
9277
|
status: ResizeV1ResponseStatus;
|
|
7375
9278
|
type: string;
|
|
7376
9279
|
price?: string;
|
|
9280
|
+
estimatedPrice?: string;
|
|
7377
9281
|
id: string;
|
|
7378
9282
|
creatorId: string;
|
|
7379
9283
|
metadata: ResizeV1ResponseMetadata;
|
|
@@ -7616,6 +9520,7 @@ interface Seedream3V1Response {
|
|
|
7616
9520
|
status: Seedream3V1ResponseStatus;
|
|
7617
9521
|
type: string;
|
|
7618
9522
|
price?: string;
|
|
9523
|
+
estimatedPrice?: string;
|
|
7619
9524
|
id: string;
|
|
7620
9525
|
creatorId: string;
|
|
7621
9526
|
metadata: Seedream3V1ResponseMetadata;
|
|
@@ -7713,6 +9618,7 @@ interface SegmentAnythingEmbeddingsV1Response {
|
|
|
7713
9618
|
status: SegmentAnythingEmbeddingsV1ResponseStatus;
|
|
7714
9619
|
type: string;
|
|
7715
9620
|
price?: string;
|
|
9621
|
+
estimatedPrice?: string;
|
|
7716
9622
|
id: string;
|
|
7717
9623
|
creatorId: string;
|
|
7718
9624
|
metadata: SegmentAnythingEmbeddingsV1ResponseMetadata;
|
|
@@ -7817,6 +9723,7 @@ interface SegmentAnythingMaskV1Response {
|
|
|
7817
9723
|
status: SegmentAnythingMaskV1ResponseStatus;
|
|
7818
9724
|
type: string;
|
|
7819
9725
|
price?: string;
|
|
9726
|
+
estimatedPrice?: string;
|
|
7820
9727
|
id: string;
|
|
7821
9728
|
creatorId: string;
|
|
7822
9729
|
metadata: SegmentAnythingMaskV1ResponseMetadata;
|
|
@@ -8097,6 +10004,7 @@ interface StringsTemplateV1Response {
|
|
|
8097
10004
|
status: StringsTemplateV1ResponseStatus;
|
|
8098
10005
|
type: string;
|
|
8099
10006
|
price?: string;
|
|
10007
|
+
estimatedPrice?: string;
|
|
8100
10008
|
id: string;
|
|
8101
10009
|
creatorId: string;
|
|
8102
10010
|
metadata: StringsTemplateV1ResponseMetadata;
|
|
@@ -8251,6 +10159,7 @@ interface TopazUpscaleV1Response {
|
|
|
8251
10159
|
status: TopazUpscaleV1ResponseStatus;
|
|
8252
10160
|
type: string;
|
|
8253
10161
|
price?: string;
|
|
10162
|
+
estimatedPrice?: string;
|
|
8254
10163
|
id: string;
|
|
8255
10164
|
creatorId: string;
|
|
8256
10165
|
metadata: TopazUpscaleV1ResponseMetadata;
|
|
@@ -8382,6 +10291,7 @@ interface TranslateV1Response {
|
|
|
8382
10291
|
status: TranslateV1ResponseStatus;
|
|
8383
10292
|
type: string;
|
|
8384
10293
|
price?: string;
|
|
10294
|
+
estimatedPrice?: string;
|
|
8385
10295
|
id: string;
|
|
8386
10296
|
creatorId: string;
|
|
8387
10297
|
metadata: TranslateV1ResponseMetadata;
|
|
@@ -8601,6 +10511,7 @@ interface UpscaleV1Response {
|
|
|
8601
10511
|
status: UpscaleV1ResponseStatus;
|
|
8602
10512
|
type: string;
|
|
8603
10513
|
price?: string;
|
|
10514
|
+
estimatedPrice?: string;
|
|
8604
10515
|
id: string;
|
|
8605
10516
|
creatorId: string;
|
|
8606
10517
|
metadata: UpscaleV1ResponseMetadata;
|
|
@@ -8714,6 +10625,7 @@ interface Veo3FastV1Response {
|
|
|
8714
10625
|
status: Veo3FastV1ResponseStatus;
|
|
8715
10626
|
type: string;
|
|
8716
10627
|
price?: string;
|
|
10628
|
+
estimatedPrice?: string;
|
|
8717
10629
|
id: string;
|
|
8718
10630
|
creatorId: string;
|
|
8719
10631
|
metadata: Veo3FastV1ResponseMetadata;
|
|
@@ -8801,6 +10713,7 @@ interface Veo3V1Response {
|
|
|
8801
10713
|
status: Veo3V1ResponseStatus;
|
|
8802
10714
|
type: string;
|
|
8803
10715
|
price?: string;
|
|
10716
|
+
estimatedPrice?: string;
|
|
8804
10717
|
id: string;
|
|
8805
10718
|
creatorId: string;
|
|
8806
10719
|
metadata: Veo3V1ResponseMetadata;
|
|
@@ -8909,6 +10822,7 @@ interface VtonGiseleV1Response {
|
|
|
8909
10822
|
status: VtonGiseleV1ResponseStatus;
|
|
8910
10823
|
type: string;
|
|
8911
10824
|
price?: string;
|
|
10825
|
+
estimatedPrice?: string;
|
|
8912
10826
|
id: string;
|
|
8913
10827
|
creatorId: string;
|
|
8914
10828
|
metadata: VtonGiseleV1ResponseMetadata;
|
|
@@ -9618,4 +11532,4 @@ declare const createTokenSigner: (options: {
|
|
|
9618
11532
|
}) => Promise<string>;
|
|
9619
11533
|
};
|
|
9620
11534
|
|
|
9621
|
-
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 GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, 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 };
|