@hautechai/sdk 2.3.4 → 2.3.5

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.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?: GPTV3ImageInputDtoDetail;
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?: string[];
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 as a JSON Schema object.
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 as a JSON Schema object. */
2886
- parameters?: GPTV3FunctionToolDtoParameters;
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?: boolean;
2897
+ strict: boolean;
2889
2898
  }
2890
2899
 
2891
2900
  /**
@@ -3088,19 +3097,7 @@ declare const GPTV3InputModel: {
3088
3097
  * OpenAPI spec version: 1.0
3089
3098
  */
3090
3099
 
3091
- type GPTV3SystemMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
3092
-
3093
- /**
3094
- * Generated by orval v7.10.0 🍺
3095
- * Do not edit manually.
3096
- * Hautech API
3097
- * OpenAPI spec version: 1.0
3098
- */
3099
-
3100
- /**
3101
- * The content of the system message. Can be a string or an array of text and image inputs.
3102
- */
3103
- type GPTV3SystemMessageDtoContent = string | GPTV3SystemMessageDtoContentOneOfItem[];
3100
+ type GPTV3SystemMessageDtoContentItemOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
3104
3101
 
3105
3102
  /**
3106
3103
  * Generated by orval v7.10.0 🍺
@@ -3139,7 +3136,7 @@ declare const GPTV3SystemMessageDtoType: {
3139
3136
 
3140
3137
  interface GPTV3SystemMessageDto {
3141
3138
  /** The content of the system message. Can be a string or an array of text and image inputs. */
3142
- content: GPTV3SystemMessageDtoContent;
3139
+ content: GPTV3SystemMessageDtoContentItemOneOfItem[][];
3143
3140
  /** The role of the message sender. */
3144
3141
  role: GPTV3SystemMessageDtoRole;
3145
3142
  /** The type of the message input. Always message. */
@@ -3173,12 +3170,1326 @@ type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[]
3173
3170
  * Hautech API
3174
3171
  * OpenAPI spec version: 1.0
3175
3172
  */
3176
- /**
3177
- * The role of the message sender.
3178
- */
3179
- type GPTV3UserMessageDtoRole = typeof GPTV3UserMessageDtoRole[keyof typeof GPTV3UserMessageDtoRole];
3180
- declare const GPTV3UserMessageDtoRole: {
3181
- readonly user: "user";
3173
+ /**
3174
+ * The role of the message sender.
3175
+ */
3176
+ type GPTV3UserMessageDtoRole = typeof GPTV3UserMessageDtoRole[keyof typeof GPTV3UserMessageDtoRole];
3177
+ declare const GPTV3UserMessageDtoRole: {
3178
+ readonly user: "user";
3179
+ };
3180
+
3181
+ /**
3182
+ * Generated by orval v7.10.0 🍺
3183
+ * Do not edit manually.
3184
+ * Hautech API
3185
+ * OpenAPI spec version: 1.0
3186
+ */
3187
+ /**
3188
+ * The type of the message input. Always message.
3189
+ */
3190
+ type GPTV3UserMessageDtoType = typeof GPTV3UserMessageDtoType[keyof typeof GPTV3UserMessageDtoType];
3191
+ declare const GPTV3UserMessageDtoType: {
3192
+ readonly message: "message";
3193
+ };
3194
+
3195
+ /**
3196
+ * Generated by orval v7.10.0 🍺
3197
+ * Do not edit manually.
3198
+ * Hautech API
3199
+ * OpenAPI spec version: 1.0
3200
+ */
3201
+
3202
+ interface GPTV3UserMessageDto {
3203
+ /** The content of the user message. Can be a string or an array of text and image inputs. */
3204
+ content: GPTV3UserMessageDtoContent;
3205
+ /** The role of the message sender. */
3206
+ role: GPTV3UserMessageDtoRole;
3207
+ /** The type of the message input. Always message. */
3208
+ type: GPTV3UserMessageDtoType;
3209
+ }
3210
+
3211
+ /**
3212
+ * Generated by orval v7.10.0 🍺
3213
+ * Do not edit manually.
3214
+ * Hautech API
3215
+ * OpenAPI spec version: 1.0
3216
+ */
3217
+
3218
+ type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto;
3219
+
3220
+ /**
3221
+ * Generated by orval v7.10.0 🍺
3222
+ * Do not edit manually.
3223
+ * Hautech API
3224
+ * OpenAPI spec version: 1.0
3225
+ */
3226
+
3227
+ /**
3228
+ * 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.
3229
+ */
3230
+ type GPTV3InputInput = string | GPTV3InputInputOneOfItem[];
3231
+
3232
+ /**
3233
+ * Generated by orval v7.10.0 🍺
3234
+ * Do not edit manually.
3235
+ * Hautech API
3236
+ * OpenAPI spec version: 1.0
3237
+ */
3238
+ /**
3239
+ * The type of response format being defined: 'text'.
3240
+ */
3241
+ type GPTV3ResponseFormatTextDtoType = typeof GPTV3ResponseFormatTextDtoType[keyof typeof GPTV3ResponseFormatTextDtoType];
3242
+ declare const GPTV3ResponseFormatTextDtoType: {
3243
+ readonly text: "text";
3244
+ };
3245
+
3246
+ /**
3247
+ * Generated by orval v7.10.0 🍺
3248
+ * Do not edit manually.
3249
+ * Hautech API
3250
+ * OpenAPI spec version: 1.0
3251
+ */
3252
+
3253
+ interface GPTV3ResponseFormatTextDto {
3254
+ /** The type of response format being defined: 'text'. */
3255
+ type: GPTV3ResponseFormatTextDtoType;
3256
+ }
3257
+
3258
+ /**
3259
+ * Generated by orval v7.10.0 🍺
3260
+ * Do not edit manually.
3261
+ * Hautech API
3262
+ * OpenAPI spec version: 1.0
3263
+ */
3264
+ /**
3265
+ * The schema for the response format, described satisfies a JSON Schema object.
3266
+ */
3267
+ type GPTV3ResponseFormatJsonSchemaDtoSchema = {
3268
+ [key: string]: unknown;
3269
+ };
3270
+
3271
+ /**
3272
+ * Generated by orval v7.10.0 🍺
3273
+ * Do not edit manually.
3274
+ * Hautech API
3275
+ * OpenAPI spec version: 1.0
3276
+ */
3277
+ /**
3278
+ * The type of response format being defined: json_schema.
3279
+ */
3280
+ type GPTV3ResponseFormatJsonSchemaDtoType = typeof GPTV3ResponseFormatJsonSchemaDtoType[keyof typeof GPTV3ResponseFormatJsonSchemaDtoType];
3281
+ declare const GPTV3ResponseFormatJsonSchemaDtoType: {
3282
+ readonly json_schema: "json_schema";
3283
+ };
3284
+
3285
+ /**
3286
+ * Generated by orval v7.10.0 🍺
3287
+ * Do not edit manually.
3288
+ * Hautech API
3289
+ * OpenAPI spec version: 1.0
3290
+ */
3291
+
3292
+ interface GPTV3ResponseFormatJsonSchemaDto {
3293
+ /** The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
3294
+ name: string;
3295
+ /** The schema for the response format, described satisfies a JSON Schema object. */
3296
+ schema: GPTV3ResponseFormatJsonSchemaDtoSchema;
3297
+ /** The type of response format being defined: json_schema. */
3298
+ type: GPTV3ResponseFormatJsonSchemaDtoType;
3299
+ /** A description of what the response format is for, used by the model to determine how to respond in the format. */
3300
+ description?: string;
3301
+ /** Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. */
3302
+ strict?: boolean;
3303
+ }
3304
+
3305
+ /**
3306
+ * Generated by orval v7.10.0 🍺
3307
+ * Do not edit manually.
3308
+ * Hautech API
3309
+ * OpenAPI spec version: 1.0
3310
+ */
3311
+
3312
+ /**
3313
+ * The format for the text response.
3314
+ */
3315
+ type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormatJsonSchemaDto;
3316
+
3317
+ /**
3318
+ * Generated by orval v7.10.0 🍺
3319
+ * Do not edit manually.
3320
+ * Hautech API
3321
+ * OpenAPI spec version: 1.0
3322
+ */
3323
+
3324
+ interface GPTV3TextConfigDto {
3325
+ /** The format for the text response. */
3326
+ format?: GPTV3TextConfigDtoFormat;
3327
+ }
3328
+
3329
+ /**
3330
+ * Generated by orval v7.10.0 🍺
3331
+ * Do not edit manually.
3332
+ * Hautech API
3333
+ * OpenAPI spec version: 1.0
3334
+ */
3335
+ /**
3336
+ * The type of the tool.
3337
+ */
3338
+ type GPTV3WebSearchToolDtoType = typeof GPTV3WebSearchToolDtoType[keyof typeof GPTV3WebSearchToolDtoType];
3339
+ declare const GPTV3WebSearchToolDtoType: {
3340
+ readonly web_search_preview: "web_search_preview";
3341
+ readonly web_search_preview_2025_03_11: "web_search_preview_2025_03_11";
3342
+ };
3343
+
3344
+ /**
3345
+ * Generated by orval v7.10.0 🍺
3346
+ * Do not edit manually.
3347
+ * Hautech API
3348
+ * OpenAPI spec version: 1.0
3349
+ */
3350
+ /**
3351
+ * High level guidance for the amount of context window space to use for the search.
3352
+ */
3353
+ type GPTV3WebSearchToolDtoSearchContextSize = typeof GPTV3WebSearchToolDtoSearchContextSize[keyof typeof GPTV3WebSearchToolDtoSearchContextSize];
3354
+ declare const GPTV3WebSearchToolDtoSearchContextSize: {
3355
+ readonly low: "low";
3356
+ readonly medium: "medium";
3357
+ readonly high: "high";
3358
+ };
3359
+
3360
+ /**
3361
+ * Generated by orval v7.10.0 🍺
3362
+ * Do not edit manually.
3363
+ * Hautech API
3364
+ * OpenAPI spec version: 1.0
3365
+ */
3366
+
3367
+ interface GPTV3WebSearchToolDto {
3368
+ /** The type of the tool. */
3369
+ type: GPTV3WebSearchToolDtoType;
3370
+ /** High level guidance for the amount of context window space to use for the search. */
3371
+ search_context_size?: GPTV3WebSearchToolDtoSearchContextSize;
3372
+ }
3373
+
3374
+ /**
3375
+ * Generated by orval v7.10.0 🍺
3376
+ * Do not edit manually.
3377
+ * Hautech API
3378
+ * OpenAPI spec version: 1.0
3379
+ */
3380
+
3381
+ type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3WebSearchToolDto | GPTV3ImageGenerationToolDto;
3382
+
3383
+ /**
3384
+ * Generated by orval v7.10.0 🍺
3385
+ * Do not edit manually.
3386
+ * Hautech API
3387
+ * OpenAPI spec version: 1.0
3388
+ */
3389
+ /**
3390
+ * Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice.
3391
+ */
3392
+ type GPTV3InputToolChoice = {
3393
+ [key: string]: unknown;
3394
+ };
3395
+
3396
+ /**
3397
+ * Generated by orval v7.10.0 🍺
3398
+ * Do not edit manually.
3399
+ * Hautech API
3400
+ * OpenAPI spec version: 1.0
3401
+ */
3402
+
3403
+ interface GPTV3Input {
3404
+ /** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
3405
+ model?: GPTV3InputModel;
3406
+ /** 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. */
3407
+ input?: GPTV3InputInput;
3408
+ /** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
3409
+ text?: GPTV3TextConfigDto;
3410
+ /** 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. */
3411
+ seed?: number;
3412
+ /** A list of tools the model may call. Supports function, file_search, web_search_preview, and image_generation tools. */
3413
+ tools?: GPTV3InputToolsItem[];
3414
+ /** Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice. */
3415
+ tool_choice?: GPTV3InputToolChoice;
3416
+ /** Maximum number of output tokens to generate. */
3417
+ max_output_tokens?: number;
3418
+ /** Specifies which additional data to include in the response. For file search, use ["file_search_call.results"] to include search results. */
3419
+ include?: string[];
3420
+ }
3421
+
3422
+ /**
3423
+ * Generated by orval v7.10.0 🍺
3424
+ * Do not edit manually.
3425
+ * Hautech API
3426
+ * OpenAPI spec version: 1.0
3427
+ */
3428
+ /**
3429
+ * 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.
3430
+ */
3431
+ type GPTV3MessageContentDtoType = typeof GPTV3MessageContentDtoType[keyof typeof GPTV3MessageContentDtoType];
3432
+ declare const GPTV3MessageContentDtoType: {
3433
+ readonly message: "message";
3434
+ };
3435
+
3436
+ /**
3437
+ * Generated by orval v7.10.0 🍺
3438
+ * Do not edit manually.
3439
+ * Hautech API
3440
+ * OpenAPI spec version: 1.0
3441
+ */
3442
+ /**
3443
+ * The role of the message sender.
3444
+ */
3445
+ type GPTV3MessageContentDtoRole = typeof GPTV3MessageContentDtoRole[keyof typeof GPTV3MessageContentDtoRole];
3446
+ declare const GPTV3MessageContentDtoRole: {
3447
+ readonly assistant: "assistant";
3448
+ };
3449
+
3450
+ /**
3451
+ * Generated by orval v7.10.0 🍺
3452
+ * Do not edit manually.
3453
+ * Hautech API
3454
+ * OpenAPI spec version: 1.0
3455
+ */
3456
+
3457
+ interface GPTV3MessageContentDto {
3458
+ /** The unique identifier for the message. */
3459
+ id: string;
3460
+ /** 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. */
3461
+ type: GPTV3MessageContentDtoType;
3462
+ /** The role of the message sender. */
3463
+ role: GPTV3MessageContentDtoRole;
3464
+ /** The content of the message with annotations and citations. */
3465
+ content: GPTV3ContentWithAnnotationsDto[];
3466
+ }
3467
+
3468
+ /**
3469
+ * Generated by orval v7.10.0 🍺
3470
+ * Do not edit manually.
3471
+ * Hautech API
3472
+ * OpenAPI spec version: 1.0
3473
+ */
3474
+ type GPTV3OutputKind = typeof GPTV3OutputKind[keyof typeof GPTV3OutputKind];
3475
+ declare const GPTV3OutputKind: {
3476
+ readonly json: "json";
3477
+ };
3478
+
3479
+ /**
3480
+ * Generated by orval v7.10.0 🍺
3481
+ * Do not edit manually.
3482
+ * Hautech API
3483
+ * OpenAPI spec version: 1.0
3484
+ */
3485
+ /**
3486
+ * 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.
3487
+ */
3488
+ type GPTV3ResponseOutputMessageDtoType = typeof GPTV3ResponseOutputMessageDtoType[keyof typeof GPTV3ResponseOutputMessageDtoType];
3489
+ declare const GPTV3ResponseOutputMessageDtoType: {
3490
+ readonly message: "message";
3491
+ };
3492
+
3493
+ /**
3494
+ * Generated by orval v7.10.0 🍺
3495
+ * Do not edit manually.
3496
+ * Hautech API
3497
+ * OpenAPI spec version: 1.0
3498
+ */
3499
+ /**
3500
+ * The role of the message sender.
3501
+ */
3502
+ type GPTV3ResponseOutputMessageDtoRole = typeof GPTV3ResponseOutputMessageDtoRole[keyof typeof GPTV3ResponseOutputMessageDtoRole];
3503
+ declare const GPTV3ResponseOutputMessageDtoRole: {
3504
+ readonly assistant: "assistant";
3505
+ };
3506
+
3507
+ /**
3508
+ * Generated by orval v7.10.0 🍺
3509
+ * Do not edit manually.
3510
+ * Hautech API
3511
+ * OpenAPI spec version: 1.0
3512
+ */
3513
+ /**
3514
+ * The type of content.
3515
+ */
3516
+ type GPTV3ResponseOutputTextDtoType = typeof GPTV3ResponseOutputTextDtoType[keyof typeof GPTV3ResponseOutputTextDtoType];
3517
+ declare const GPTV3ResponseOutputTextDtoType: {
3518
+ readonly output_text: "output_text";
3519
+ };
3520
+
3521
+ /**
3522
+ * Generated by orval v7.10.0 🍺
3523
+ * Do not edit manually.
3524
+ * Hautech API
3525
+ * OpenAPI spec version: 1.0
3526
+ */
3527
+ type GPTV3ResponseOutputTextFileCitationDtoType = typeof GPTV3ResponseOutputTextFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextFileCitationDtoType];
3528
+ declare const GPTV3ResponseOutputTextFileCitationDtoType: {
3529
+ readonly file_citation: "file_citation";
3530
+ };
3531
+
3532
+ /**
3533
+ * Generated by orval v7.10.0 🍺
3534
+ * Do not edit manually.
3535
+ * Hautech API
3536
+ * OpenAPI spec version: 1.0
3537
+ */
3538
+
3539
+ interface GPTV3ResponseOutputTextFileCitationDto {
3540
+ /** The ID of the file. */
3541
+ file_id: string;
3542
+ /** The filename of the file cited. */
3543
+ filename: string;
3544
+ /** The index of the file in the list of files. */
3545
+ index: number;
3546
+ type: GPTV3ResponseOutputTextFileCitationDtoType;
3547
+ }
3548
+
3549
+ /**
3550
+ * Generated by orval v7.10.0 🍺
3551
+ * Do not edit manually.
3552
+ * Hautech API
3553
+ * OpenAPI spec version: 1.0
3554
+ */
3555
+ type GPTV3ResponseOutputTextURLCitationDtoType = typeof GPTV3ResponseOutputTextURLCitationDtoType[keyof typeof GPTV3ResponseOutputTextURLCitationDtoType];
3556
+ declare const GPTV3ResponseOutputTextURLCitationDtoType: {
3557
+ readonly url_citation: "url_citation";
3558
+ };
3559
+
3560
+ /**
3561
+ * Generated by orval v7.10.0 🍺
3562
+ * Do not edit manually.
3563
+ * Hautech API
3564
+ * OpenAPI spec version: 1.0
3565
+ */
3566
+
3567
+ interface GPTV3ResponseOutputTextURLCitationDto {
3568
+ /** The index of the last character of the URL citation in the message. */
3569
+ end_index: number;
3570
+ /** The index of the first character of the URL citation in the message. */
3571
+ start_index: number;
3572
+ /** The title of the web resource. */
3573
+ title: string;
3574
+ type: GPTV3ResponseOutputTextURLCitationDtoType;
3575
+ /** The URL of the web resource. */
3576
+ url: string;
3577
+ }
3578
+
3579
+ /**
3580
+ * Generated by orval v7.10.0 🍺
3581
+ * Do not edit manually.
3582
+ * Hautech API
3583
+ * OpenAPI spec version: 1.0
3584
+ */
3585
+ type GPTV3ResponseOutputTextContainerFileCitationDtoType = typeof GPTV3ResponseOutputTextContainerFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextContainerFileCitationDtoType];
3586
+ declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
3587
+ readonly container_file_citation: "container_file_citation";
3588
+ };
3589
+
3590
+ /**
3591
+ * Generated by orval v7.10.0 🍺
3592
+ * Do not edit manually.
3593
+ * Hautech API
3594
+ * OpenAPI spec version: 1.0
3595
+ */
3596
+
3597
+ interface GPTV3ResponseOutputTextContainerFileCitationDto {
3598
+ /** The ID of the container file. */
3599
+ container_id: string;
3600
+ /** The index of the last character of the container file citation. */
3601
+ end_index: number;
3602
+ /** The ID of the file. */
3603
+ file_id: string;
3604
+ /** The filename of the container file cited. */
3605
+ filename: string;
3606
+ /** The index of the first character of the container file citation. */
3607
+ start_index: number;
3608
+ type: GPTV3ResponseOutputTextContainerFileCitationDtoType;
3609
+ }
3610
+
3611
+ /**
3612
+ * Generated by orval v7.10.0 🍺
3613
+ * Do not edit manually.
3614
+ * Hautech API
3615
+ * OpenAPI spec version: 1.0
3616
+ */
3617
+ type GPTV3ResponseOutputTextFilePathDtoType = typeof GPTV3ResponseOutputTextFilePathDtoType[keyof typeof GPTV3ResponseOutputTextFilePathDtoType];
3618
+ declare const GPTV3ResponseOutputTextFilePathDtoType: {
3619
+ readonly file_path: "file_path";
3620
+ };
3621
+
3622
+ /**
3623
+ * Generated by orval v7.10.0 🍺
3624
+ * Do not edit manually.
3625
+ * Hautech API
3626
+ * OpenAPI spec version: 1.0
3627
+ */
3628
+
3629
+ interface GPTV3ResponseOutputTextFilePathDto {
3630
+ /** The ID of the file. */
3631
+ file_id: string;
3632
+ /** The index of the file in the list of files. */
3633
+ index: number;
3634
+ type: GPTV3ResponseOutputTextFilePathDtoType;
3635
+ }
3636
+
3637
+ /**
3638
+ * Generated by orval v7.10.0 🍺
3639
+ * Do not edit manually.
3640
+ * Hautech API
3641
+ * OpenAPI spec version: 1.0
3642
+ */
3643
+
3644
+ type GPTV3ResponseOutputTextDtoAnnotationsItem = GPTV3ResponseOutputTextFileCitationDto | GPTV3ResponseOutputTextURLCitationDto | GPTV3ResponseOutputTextContainerFileCitationDto | GPTV3ResponseOutputTextFilePathDto;
3645
+
3646
+ /**
3647
+ * Generated by orval v7.10.0 🍺
3648
+ * Do not edit manually.
3649
+ * Hautech API
3650
+ * OpenAPI spec version: 1.0
3651
+ */
3652
+ interface GPTV3ResponseOutputTextLogprobTopLogprobDto {
3653
+ token: string;
3654
+ bytes: number[];
3655
+ logprob: number;
3656
+ }
3657
+
3658
+ /**
3659
+ * Generated by orval v7.10.0 🍺
3660
+ * Do not edit manually.
3661
+ * Hautech API
3662
+ * OpenAPI spec version: 1.0
3663
+ */
3664
+
3665
+ interface GPTV3ResponseOutputTextLogprobDto {
3666
+ token: string;
3667
+ bytes: number[];
3668
+ logprob: number;
3669
+ top_logprobs: GPTV3ResponseOutputTextLogprobTopLogprobDto[];
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
+
3679
+ interface GPTV3ResponseOutputTextDto {
3680
+ /** The type of content. */
3681
+ type: GPTV3ResponseOutputTextDtoType;
3682
+ /** The text content. */
3683
+ text: string;
3684
+ /** Annotations attached to spans of the output text (citations, file paths, etc). */
3685
+ annotations: GPTV3ResponseOutputTextDtoAnnotationsItem[];
3686
+ /** Log probabilities for tokens (when requested). */
3687
+ logprobs?: GPTV3ResponseOutputTextLogprobDto[];
3688
+ }
3689
+
3690
+ /**
3691
+ * Generated by orval v7.10.0 🍺
3692
+ * Do not edit manually.
3693
+ * Hautech API
3694
+ * OpenAPI spec version: 1.0
3695
+ */
3696
+ /**
3697
+ * The type of content.
3698
+ */
3699
+ type GPTV3ResponseOutputRefusalDtoType = typeof GPTV3ResponseOutputRefusalDtoType[keyof typeof GPTV3ResponseOutputRefusalDtoType];
3700
+ declare const GPTV3ResponseOutputRefusalDtoType: {
3701
+ readonly refusal: "refusal";
3702
+ };
3703
+
3704
+ /**
3705
+ * Generated by orval v7.10.0 🍺
3706
+ * Do not edit manually.
3707
+ * Hautech API
3708
+ * OpenAPI spec version: 1.0
3709
+ */
3710
+
3711
+ interface GPTV3ResponseOutputRefusalDto {
3712
+ /** The type of content. */
3713
+ type: GPTV3ResponseOutputRefusalDtoType;
3714
+ /** The refusal explanation from the model. */
3715
+ refusal: string;
3716
+ }
3717
+
3718
+ /**
3719
+ * Generated by orval v7.10.0 🍺
3720
+ * Do not edit manually.
3721
+ * Hautech API
3722
+ * OpenAPI spec version: 1.0
3723
+ */
3724
+
3725
+ type GPTV3ResponseOutputMessageDtoContentItem = GPTV3ResponseOutputTextDto | GPTV3ResponseOutputRefusalDto;
3726
+
3727
+ /**
3728
+ * Generated by orval v7.10.0 🍺
3729
+ * Do not edit manually.
3730
+ * Hautech API
3731
+ * OpenAPI spec version: 1.0
3732
+ */
3733
+ type GPTV3ResponseOutputMessageDtoStatus = {
3734
+ [key: string]: unknown;
3735
+ };
3736
+
3737
+ /**
3738
+ * Generated by orval v7.10.0 🍺
3739
+ * Do not edit manually.
3740
+ * Hautech API
3741
+ * OpenAPI spec version: 1.0
3742
+ */
3743
+
3744
+ interface GPTV3ResponseOutputMessageDto {
3745
+ /** The unique identifier for the message. */
3746
+ id: string;
3747
+ /** 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. */
3748
+ type: GPTV3ResponseOutputMessageDtoType;
3749
+ /** The role of the message sender. */
3750
+ role: GPTV3ResponseOutputMessageDtoRole;
3751
+ /** The content of the message with annotations and citations. */
3752
+ content: GPTV3ResponseOutputMessageDtoContentItem[];
3753
+ status: GPTV3ResponseOutputMessageDtoStatus;
3754
+ }
3755
+
3756
+ /**
3757
+ * Generated by orval v7.10.0 🍺
3758
+ * Do not edit manually.
3759
+ * Hautech API
3760
+ * OpenAPI spec version: 1.0
3761
+ */
3762
+ /**
3763
+ * The type of the file search result. This is the FIRST output item when file_search tool is called.
3764
+ */
3765
+ type GPTV3ResponseFileSearchToolCallDtoType = typeof GPTV3ResponseFileSearchToolCallDtoType[keyof typeof GPTV3ResponseFileSearchToolCallDtoType];
3766
+ declare const GPTV3ResponseFileSearchToolCallDtoType: {
3767
+ readonly file_search_call: "file_search_call";
3768
+ };
3769
+
3770
+ /**
3771
+ * Generated by orval v7.10.0 🍺
3772
+ * Do not edit manually.
3773
+ * Hautech API
3774
+ * OpenAPI spec version: 1.0
3775
+ */
3776
+ /**
3777
+ * The status of the file search call.
3778
+ */
3779
+ type GPTV3ResponseFileSearchToolCallDtoStatus = typeof GPTV3ResponseFileSearchToolCallDtoStatus[keyof typeof GPTV3ResponseFileSearchToolCallDtoStatus];
3780
+ declare const GPTV3ResponseFileSearchToolCallDtoStatus: {
3781
+ readonly in_progress: "in_progress";
3782
+ readonly searching: "searching";
3783
+ readonly completed: "completed";
3784
+ readonly incomplete: "incomplete";
3785
+ readonly failed: "failed";
3786
+ };
3787
+
3788
+ /**
3789
+ * Generated by orval v7.10.0 🍺
3790
+ * Do not edit manually.
3791
+ * Hautech API
3792
+ * OpenAPI spec version: 1.0
3793
+ */
3794
+ /**
3795
+ * Optional attributes map.
3796
+ */
3797
+ type GPTV3ResponseFileSearchToolCallResultDtoAttributes = {
3798
+ [key: string]: unknown;
3799
+ };
3800
+
3801
+ /**
3802
+ * Generated by orval v7.10.0 🍺
3803
+ * Do not edit manually.
3804
+ * Hautech API
3805
+ * OpenAPI spec version: 1.0
3806
+ */
3807
+
3808
+ interface GPTV3ResponseFileSearchToolCallResultDto {
3809
+ /** Optional attributes map. */
3810
+ attributes: GPTV3ResponseFileSearchToolCallResultDtoAttributes;
3811
+ /** The unique ID of the file. */
3812
+ file_id?: string;
3813
+ /** The name of the file. */
3814
+ filename?: string;
3815
+ /** The relevance score of the file. */
3816
+ score?: number;
3817
+ /** The text that was retrieved from the file. */
3818
+ text?: string;
3819
+ }
3820
+
3821
+ /**
3822
+ * Generated by orval v7.10.0 🍺
3823
+ * Do not edit manually.
3824
+ * Hautech API
3825
+ * OpenAPI spec version: 1.0
3826
+ */
3827
+
3828
+ interface GPTV3ResponseFileSearchToolCallDto {
3829
+ /** The type of the file search result. This is the FIRST output item when file_search tool is called. */
3830
+ type: GPTV3ResponseFileSearchToolCallDtoType;
3831
+ /** The unique identifier for this file search call. */
3832
+ id: string;
3833
+ /** The status of the file search call. */
3834
+ status: GPTV3ResponseFileSearchToolCallDtoStatus;
3835
+ /** The search queries used for the file search. */
3836
+ queries: string[];
3837
+ /**
3838
+ * The search results from the file search. Can be null if no results found.
3839
+ * @nullable
3840
+ */
3841
+ results?: GPTV3ResponseFileSearchToolCallResultDto[] | null;
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
+ * The type of the web search result. This is the FIRST output item when web_search tool is called.
3852
+ */
3853
+ type GPTV3ResponseFunctionWebSearchDtoType = typeof GPTV3ResponseFunctionWebSearchDtoType[keyof typeof GPTV3ResponseFunctionWebSearchDtoType];
3854
+ declare const GPTV3ResponseFunctionWebSearchDtoType: {
3855
+ readonly web_search_call: "web_search_call";
3856
+ };
3857
+
3858
+ /**
3859
+ * Generated by orval v7.10.0 🍺
3860
+ * Do not edit manually.
3861
+ * Hautech API
3862
+ * OpenAPI spec version: 1.0
3863
+ */
3864
+ /**
3865
+ * The status of the web search call.
3866
+ */
3867
+ type GPTV3ResponseFunctionWebSearchDtoStatus = typeof GPTV3ResponseFunctionWebSearchDtoStatus[keyof typeof GPTV3ResponseFunctionWebSearchDtoStatus];
3868
+ declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
3869
+ readonly in_progress: "in_progress";
3870
+ readonly searching: "searching";
3871
+ readonly completed: "completed";
3872
+ readonly failed: "failed";
3873
+ };
3874
+
3875
+ /**
3876
+ * Generated by orval v7.10.0 🍺
3877
+ * Do not edit manually.
3878
+ * Hautech API
3879
+ * OpenAPI spec version: 1.0
3880
+ */
3881
+
3882
+ interface GPTV3ResponseFunctionWebSearchDto {
3883
+ /** The type of the web search result. This is the FIRST output item when web_search tool is called. */
3884
+ type: GPTV3ResponseFunctionWebSearchDtoType;
3885
+ /** The unique identifier for this web search call. */
3886
+ id: string;
3887
+ /** The status of the web search call. */
3888
+ status: GPTV3ResponseFunctionWebSearchDtoStatus;
3889
+ }
3890
+
3891
+ /**
3892
+ * Generated by orval v7.10.0 🍺
3893
+ * Do not edit manually.
3894
+ * Hautech API
3895
+ * OpenAPI spec version: 1.0
3896
+ */
3897
+ /**
3898
+ * The type of the image generation output item.
3899
+ */
3900
+ type GPTV3ResponseOutputItemImageGenerationCallDtoType = typeof GPTV3ResponseOutputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoType];
3901
+ declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
3902
+ readonly image_generation_call: "image_generation_call";
3903
+ };
3904
+
3905
+ /**
3906
+ * Generated by orval v7.10.0 🍺
3907
+ * Do not edit manually.
3908
+ * Hautech API
3909
+ * OpenAPI spec version: 1.0
3910
+ */
3911
+ /**
3912
+ * The status of the image generation call.
3913
+ */
3914
+ type GPTV3ResponseOutputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus];
3915
+ declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
3916
+ readonly in_progress: "in_progress";
3917
+ readonly completed: "completed";
3918
+ readonly generating: "generating";
3919
+ readonly failed: "failed";
3920
+ };
3921
+
3922
+ /**
3923
+ * Generated by orval v7.10.0 🍺
3924
+ * Do not edit manually.
3925
+ * Hautech API
3926
+ * OpenAPI spec version: 1.0
3927
+ */
3928
+ /**
3929
+ * Additional metadata about the image generation.
3930
+ */
3931
+ type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
3932
+ [key: string]: unknown;
3933
+ };
3934
+
3935
+ /**
3936
+ * Generated by orval v7.10.0 🍺
3937
+ * Do not edit manually.
3938
+ * Hautech API
3939
+ * OpenAPI spec version: 1.0
3940
+ */
3941
+
3942
+ interface GPTV3ResponseOutputItemImageGenerationCallDto {
3943
+ /** The type of the image generation output item. */
3944
+ type: GPTV3ResponseOutputItemImageGenerationCallDtoType;
3945
+ /** The unique identifier for this image generation call. */
3946
+ id: string;
3947
+ /** The status of the image generation call. */
3948
+ status: GPTV3ResponseOutputItemImageGenerationCallDtoStatus;
3949
+ /** The generated image ID (when conversion is successful). */
3950
+ imageId?: string;
3951
+ /** The format of the generated image (e.g., "png", "jpeg"). */
3952
+ format?: string;
3953
+ /** The size of the generated image in bytes. */
3954
+ size?: number;
3955
+ /** Error message if the image generation failed. */
3956
+ error?: string;
3957
+ /** Additional metadata about the image generation. */
3958
+ metadata?: GPTV3ResponseOutputItemImageGenerationCallDtoMetadata;
3959
+ }
3960
+
3961
+ /**
3962
+ * Generated by orval v7.10.0 🍺
3963
+ * Do not edit manually.
3964
+ * Hautech API
3965
+ * OpenAPI spec version: 1.0
3966
+ */
3967
+ /**
3968
+ * The type of the tool call.
3969
+ */
3970
+ type GPTV3ResponseFunctionToolCallDtoType = typeof GPTV3ResponseFunctionToolCallDtoType[keyof typeof GPTV3ResponseFunctionToolCallDtoType];
3971
+ declare const GPTV3ResponseFunctionToolCallDtoType: {
3972
+ readonly function_call: "function_call";
3973
+ };
3974
+
3975
+ /**
3976
+ * Generated by orval v7.10.0 🍺
3977
+ * Do not edit manually.
3978
+ * Hautech API
3979
+ * OpenAPI spec version: 1.0
3980
+ */
3981
+ /**
3982
+ * The status of the function call.
3983
+ */
3984
+ type GPTV3ResponseFunctionToolCallDtoStatus = typeof GPTV3ResponseFunctionToolCallDtoStatus[keyof typeof GPTV3ResponseFunctionToolCallDtoStatus];
3985
+ declare const GPTV3ResponseFunctionToolCallDtoStatus: {
3986
+ readonly in_progress: "in_progress";
3987
+ readonly completed: "completed";
3988
+ readonly incomplete: "incomplete";
3989
+ };
3990
+
3991
+ /**
3992
+ * Generated by orval v7.10.0 🍺
3993
+ * Do not edit manually.
3994
+ * Hautech API
3995
+ * OpenAPI spec version: 1.0
3996
+ */
3997
+
3998
+ interface GPTV3ResponseFunctionToolCallDto {
3999
+ /** The unique identifier for this function tool call. */
4000
+ id?: string;
4001
+ /** The type of the tool call. */
4002
+ type: GPTV3ResponseFunctionToolCallDtoType;
4003
+ /** The name of the function to run. */
4004
+ name: string;
4005
+ /** The unique ID of the function tool call generated by the model. */
4006
+ call_id: string;
4007
+ /** A JSON string of the arguments passed to the function. */
4008
+ arguments: string;
4009
+ /** The status of the function call. */
4010
+ status?: GPTV3ResponseFunctionToolCallDtoStatus;
4011
+ }
4012
+
4013
+ /**
4014
+ * Generated by orval v7.10.0 🍺
4015
+ * Do not edit manually.
4016
+ * Hautech API
4017
+ * OpenAPI spec version: 1.0
4018
+ */
4019
+ type GPTV3ResponseComputerToolCallClickDtoType = typeof GPTV3ResponseComputerToolCallClickDtoType[keyof typeof GPTV3ResponseComputerToolCallClickDtoType];
4020
+ declare const GPTV3ResponseComputerToolCallClickDtoType: {
4021
+ readonly click: "click";
4022
+ };
4023
+
4024
+ /**
4025
+ * Generated by orval v7.10.0 🍺
4026
+ * Do not edit manually.
4027
+ * Hautech API
4028
+ * OpenAPI spec version: 1.0
4029
+ */
4030
+ type GPTV3ResponseComputerToolCallClickDtoButton = typeof GPTV3ResponseComputerToolCallClickDtoButton[keyof typeof GPTV3ResponseComputerToolCallClickDtoButton];
4031
+ declare const GPTV3ResponseComputerToolCallClickDtoButton: {
4032
+ readonly left: "left";
4033
+ readonly right: "right";
4034
+ readonly wheel: "wheel";
4035
+ readonly back: "back";
4036
+ readonly forward: "forward";
4037
+ };
4038
+
4039
+ /**
4040
+ * Generated by orval v7.10.0 🍺
4041
+ * Do not edit manually.
4042
+ * Hautech API
4043
+ * OpenAPI spec version: 1.0
4044
+ */
4045
+
4046
+ interface GPTV3ResponseComputerToolCallClickDto {
4047
+ type: GPTV3ResponseComputerToolCallClickDtoType;
4048
+ button: GPTV3ResponseComputerToolCallClickDtoButton;
4049
+ x: number;
4050
+ y: number;
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 GPTV3ResponseComputerToolCallDoubleClickDtoType = typeof GPTV3ResponseComputerToolCallDoubleClickDtoType[keyof typeof GPTV3ResponseComputerToolCallDoubleClickDtoType];
4060
+ declare const GPTV3ResponseComputerToolCallDoubleClickDtoType: {
4061
+ readonly double_click: "double_click";
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 GPTV3ResponseComputerToolCallDoubleClickDto {
4072
+ type: GPTV3ResponseComputerToolCallDoubleClickDtoType;
4073
+ x: number;
4074
+ y: number;
4075
+ }
4076
+
4077
+ /**
4078
+ * Generated by orval v7.10.0 🍺
4079
+ * Do not edit manually.
4080
+ * Hautech API
4081
+ * OpenAPI spec version: 1.0
4082
+ */
4083
+ type GPTV3ResponseComputerToolCallDragDtoType = typeof GPTV3ResponseComputerToolCallDragDtoType[keyof typeof GPTV3ResponseComputerToolCallDragDtoType];
4084
+ declare const GPTV3ResponseComputerToolCallDragDtoType: {
4085
+ readonly drag: "drag";
4086
+ };
4087
+
4088
+ /**
4089
+ * Generated by orval v7.10.0 🍺
4090
+ * Do not edit manually.
4091
+ * Hautech API
4092
+ * OpenAPI spec version: 1.0
4093
+ */
4094
+ interface GPTV3ResponseComputerToolCallDragPathDto {
4095
+ x: number;
4096
+ y: number;
4097
+ }
4098
+
4099
+ /**
4100
+ * Generated by orval v7.10.0 🍺
4101
+ * Do not edit manually.
4102
+ * Hautech API
4103
+ * OpenAPI spec version: 1.0
4104
+ */
4105
+
4106
+ interface GPTV3ResponseComputerToolCallDragDto {
4107
+ type: GPTV3ResponseComputerToolCallDragDtoType;
4108
+ path: GPTV3ResponseComputerToolCallDragPathDto[];
4109
+ }
4110
+
4111
+ /**
4112
+ * Generated by orval v7.10.0 🍺
4113
+ * Do not edit manually.
4114
+ * Hautech API
4115
+ * OpenAPI spec version: 1.0
4116
+ */
4117
+ type GPTV3ResponseComputerToolCallKeypressDtoType = typeof GPTV3ResponseComputerToolCallKeypressDtoType[keyof typeof GPTV3ResponseComputerToolCallKeypressDtoType];
4118
+ declare const GPTV3ResponseComputerToolCallKeypressDtoType: {
4119
+ readonly keypress: "keypress";
4120
+ };
4121
+
4122
+ /**
4123
+ * Generated by orval v7.10.0 🍺
4124
+ * Do not edit manually.
4125
+ * Hautech API
4126
+ * OpenAPI spec version: 1.0
4127
+ */
4128
+
4129
+ interface GPTV3ResponseComputerToolCallKeypressDto {
4130
+ type: GPTV3ResponseComputerToolCallKeypressDtoType;
4131
+ keys: string[];
4132
+ }
4133
+
4134
+ /**
4135
+ * Generated by orval v7.10.0 🍺
4136
+ * Do not edit manually.
4137
+ * Hautech API
4138
+ * OpenAPI spec version: 1.0
4139
+ */
4140
+ type GPTV3ResponseComputerToolCallMoveDtoType = typeof GPTV3ResponseComputerToolCallMoveDtoType[keyof typeof GPTV3ResponseComputerToolCallMoveDtoType];
4141
+ declare const GPTV3ResponseComputerToolCallMoveDtoType: {
4142
+ readonly move: "move";
4143
+ };
4144
+
4145
+ /**
4146
+ * Generated by orval v7.10.0 🍺
4147
+ * Do not edit manually.
4148
+ * Hautech API
4149
+ * OpenAPI spec version: 1.0
4150
+ */
4151
+
4152
+ interface GPTV3ResponseComputerToolCallMoveDto {
4153
+ type: GPTV3ResponseComputerToolCallMoveDtoType;
4154
+ x: number;
4155
+ y: number;
4156
+ }
4157
+
4158
+ /**
4159
+ * Generated by orval v7.10.0 🍺
4160
+ * Do not edit manually.
4161
+ * Hautech API
4162
+ * OpenAPI spec version: 1.0
4163
+ */
4164
+ type GPTV3ResponseComputerToolCallScreenshotDtoType = typeof GPTV3ResponseComputerToolCallScreenshotDtoType[keyof typeof GPTV3ResponseComputerToolCallScreenshotDtoType];
4165
+ declare const GPTV3ResponseComputerToolCallScreenshotDtoType: {
4166
+ readonly screenshot: "screenshot";
4167
+ };
4168
+
4169
+ /**
4170
+ * Generated by orval v7.10.0 🍺
4171
+ * Do not edit manually.
4172
+ * Hautech API
4173
+ * OpenAPI spec version: 1.0
4174
+ */
4175
+
4176
+ interface GPTV3ResponseComputerToolCallScreenshotDto {
4177
+ type: GPTV3ResponseComputerToolCallScreenshotDtoType;
4178
+ }
4179
+
4180
+ /**
4181
+ * Generated by orval v7.10.0 🍺
4182
+ * Do not edit manually.
4183
+ * Hautech API
4184
+ * OpenAPI spec version: 1.0
4185
+ */
4186
+ type GPTV3ResponseComputerToolCallScrollDtoType = typeof GPTV3ResponseComputerToolCallScrollDtoType[keyof typeof GPTV3ResponseComputerToolCallScrollDtoType];
4187
+ declare const GPTV3ResponseComputerToolCallScrollDtoType: {
4188
+ readonly scroll: "scroll";
4189
+ };
4190
+
4191
+ /**
4192
+ * Generated by orval v7.10.0 🍺
4193
+ * Do not edit manually.
4194
+ * Hautech API
4195
+ * OpenAPI spec version: 1.0
4196
+ */
4197
+
4198
+ interface GPTV3ResponseComputerToolCallScrollDto {
4199
+ type: GPTV3ResponseComputerToolCallScrollDtoType;
4200
+ scroll_x: number;
4201
+ scroll_y: number;
4202
+ x: number;
4203
+ y: number;
4204
+ }
4205
+
4206
+ /**
4207
+ * Generated by orval v7.10.0 🍺
4208
+ * Do not edit manually.
4209
+ * Hautech API
4210
+ * OpenAPI spec version: 1.0
4211
+ */
4212
+ type GPTV3ResponseComputerToolCallTypeDtoType = typeof GPTV3ResponseComputerToolCallTypeDtoType[keyof typeof GPTV3ResponseComputerToolCallTypeDtoType];
4213
+ declare const GPTV3ResponseComputerToolCallTypeDtoType: {
4214
+ readonly type: "type";
4215
+ };
4216
+
4217
+ /**
4218
+ * Generated by orval v7.10.0 🍺
4219
+ * Do not edit manually.
4220
+ * Hautech API
4221
+ * OpenAPI spec version: 1.0
4222
+ */
4223
+
4224
+ interface GPTV3ResponseComputerToolCallTypeDto {
4225
+ type: GPTV3ResponseComputerToolCallTypeDtoType;
4226
+ text: string;
4227
+ }
4228
+
4229
+ /**
4230
+ * Generated by orval v7.10.0 🍺
4231
+ * Do not edit manually.
4232
+ * Hautech API
4233
+ * OpenAPI spec version: 1.0
4234
+ */
4235
+ type GPTV3ResponseComputerToolCallWaitDtoType = typeof GPTV3ResponseComputerToolCallWaitDtoType[keyof typeof GPTV3ResponseComputerToolCallWaitDtoType];
4236
+ declare const GPTV3ResponseComputerToolCallWaitDtoType: {
4237
+ readonly wait: "wait";
4238
+ };
4239
+
4240
+ /**
4241
+ * Generated by orval v7.10.0 🍺
4242
+ * Do not edit manually.
4243
+ * Hautech API
4244
+ * OpenAPI spec version: 1.0
4245
+ */
4246
+
4247
+ interface GPTV3ResponseComputerToolCallWaitDto {
4248
+ type: GPTV3ResponseComputerToolCallWaitDtoType;
4249
+ }
4250
+
4251
+ /**
4252
+ * Generated by orval v7.10.0 🍺
4253
+ * Do not edit manually.
4254
+ * Hautech API
4255
+ * OpenAPI spec version: 1.0
4256
+ */
4257
+
4258
+ /**
4259
+ * The action requested for the computer call.
4260
+ */
4261
+ type GPTV3ResponseComputerToolCallDtoAction = GPTV3ResponseComputerToolCallClickDto | GPTV3ResponseComputerToolCallDoubleClickDto | GPTV3ResponseComputerToolCallDragDto | GPTV3ResponseComputerToolCallKeypressDto | GPTV3ResponseComputerToolCallMoveDto | GPTV3ResponseComputerToolCallScreenshotDto | GPTV3ResponseComputerToolCallScrollDto | GPTV3ResponseComputerToolCallTypeDto | GPTV3ResponseComputerToolCallWaitDto;
4262
+
4263
+ /**
4264
+ * Generated by orval v7.10.0 🍺
4265
+ * Do not edit manually.
4266
+ * Hautech API
4267
+ * OpenAPI spec version: 1.0
4268
+ */
4269
+ interface GPTV3ResponseComputerToolCallPendingSafetyCheckDto {
4270
+ id: string;
4271
+ code: string;
4272
+ message: string;
4273
+ }
4274
+
4275
+ /**
4276
+ * Generated by orval v7.10.0 🍺
4277
+ * Do not edit manually.
4278
+ * Hautech API
4279
+ * OpenAPI spec version: 1.0
4280
+ */
4281
+ type GPTV3ResponseComputerToolCallDtoStatus = typeof GPTV3ResponseComputerToolCallDtoStatus[keyof typeof GPTV3ResponseComputerToolCallDtoStatus];
4282
+ declare const GPTV3ResponseComputerToolCallDtoStatus: {
4283
+ readonly in_progress: "in_progress";
4284
+ readonly completed: "completed";
4285
+ readonly incomplete: "incomplete";
4286
+ };
4287
+
4288
+ /**
4289
+ * Generated by orval v7.10.0 🍺
4290
+ * Do not edit manually.
4291
+ * Hautech API
4292
+ * OpenAPI spec version: 1.0
4293
+ */
4294
+ type GPTV3ResponseComputerToolCallDtoType = typeof GPTV3ResponseComputerToolCallDtoType[keyof typeof GPTV3ResponseComputerToolCallDtoType];
4295
+ declare const GPTV3ResponseComputerToolCallDtoType: {
4296
+ readonly computer_call: "computer_call";
4297
+ };
4298
+
4299
+ /**
4300
+ * Generated by orval v7.10.0 🍺
4301
+ * Do not edit manually.
4302
+ * Hautech API
4303
+ * OpenAPI spec version: 1.0
4304
+ */
4305
+
4306
+ interface GPTV3ResponseComputerToolCallDto {
4307
+ /** The unique ID of the computer call. */
4308
+ id: string;
4309
+ /** The action requested for the computer call. */
4310
+ action: GPTV3ResponseComputerToolCallDtoAction;
4311
+ /** The ID of the tool call. */
4312
+ call_id: string;
4313
+ /** Pending safety checks for the computer call. */
4314
+ pending_safety_checks: GPTV3ResponseComputerToolCallPendingSafetyCheckDto[];
4315
+ status: GPTV3ResponseComputerToolCallDtoStatus;
4316
+ type: GPTV3ResponseComputerToolCallDtoType;
4317
+ }
4318
+
4319
+ /**
4320
+ * Generated by orval v7.10.0 🍺
4321
+ * Do not edit manually.
4322
+ * Hautech API
4323
+ * OpenAPI spec version: 1.0
4324
+ */
4325
+ type GPTV3ResponseReasoningItemSummaryDtoType = typeof GPTV3ResponseReasoningItemSummaryDtoType[keyof typeof GPTV3ResponseReasoningItemSummaryDtoType];
4326
+ declare const GPTV3ResponseReasoningItemSummaryDtoType: {
4327
+ readonly summary_text: "summary_text";
4328
+ };
4329
+
4330
+ /**
4331
+ * Generated by orval v7.10.0 🍺
4332
+ * Do not edit manually.
4333
+ * Hautech API
4334
+ * OpenAPI spec version: 1.0
4335
+ */
4336
+
4337
+ interface GPTV3ResponseReasoningItemSummaryDto {
4338
+ type: GPTV3ResponseReasoningItemSummaryDtoType;
4339
+ text: string;
4340
+ }
4341
+
4342
+ /**
4343
+ * Generated by orval v7.10.0 🍺
4344
+ * Do not edit manually.
4345
+ * Hautech API
4346
+ * OpenAPI spec version: 1.0
4347
+ */
4348
+ type GPTV3ResponseReasoningItemDtoType = typeof GPTV3ResponseReasoningItemDtoType[keyof typeof GPTV3ResponseReasoningItemDtoType];
4349
+ declare const GPTV3ResponseReasoningItemDtoType: {
4350
+ readonly reasoning: "reasoning";
4351
+ };
4352
+
4353
+ /**
4354
+ * Generated by orval v7.10.0 🍺
4355
+ * Do not edit manually.
4356
+ * Hautech API
4357
+ * OpenAPI spec version: 1.0
4358
+ */
4359
+ type GPTV3ResponseReasoningItemDtoStatus = typeof GPTV3ResponseReasoningItemDtoStatus[keyof typeof GPTV3ResponseReasoningItemDtoStatus];
4360
+ declare const GPTV3ResponseReasoningItemDtoStatus: {
4361
+ readonly in_progress: "in_progress";
4362
+ readonly completed: "completed";
4363
+ readonly incomplete: "incomplete";
4364
+ };
4365
+
4366
+ /**
4367
+ * Generated by orval v7.10.0 🍺
4368
+ * Do not edit manually.
4369
+ * Hautech API
4370
+ * OpenAPI spec version: 1.0
4371
+ */
4372
+
4373
+ interface GPTV3ResponseReasoningItemDto {
4374
+ id: string;
4375
+ summary: GPTV3ResponseReasoningItemSummaryDto[];
4376
+ type: GPTV3ResponseReasoningItemDtoType;
4377
+ /** @nullable */
4378
+ encrypted_content?: string | null;
4379
+ status?: GPTV3ResponseReasoningItemDtoStatus;
4380
+ }
4381
+
4382
+ /**
4383
+ * Generated by orval v7.10.0 🍺
4384
+ * Do not edit manually.
4385
+ * Hautech API
4386
+ * OpenAPI spec version: 1.0
4387
+ */
4388
+ type GPTV3ResponseCodeInterpreterToolCallLogsDtoType = typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType];
4389
+ declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
4390
+ readonly logs: "logs";
4391
+ };
4392
+
4393
+ /**
4394
+ * Generated by orval v7.10.0 🍺
4395
+ * Do not edit manually.
4396
+ * Hautech API
4397
+ * OpenAPI spec version: 1.0
4398
+ */
4399
+
4400
+ interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
4401
+ type: GPTV3ResponseCodeInterpreterToolCallLogsDtoType;
4402
+ logs: string;
4403
+ }
4404
+
4405
+ /**
4406
+ * Generated by orval v7.10.0 🍺
4407
+ * Do not edit manually.
4408
+ * Hautech API
4409
+ * OpenAPI spec version: 1.0
4410
+ */
4411
+ type GPTV3ResponseCodeInterpreterToolCallImageDtoType = typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType];
4412
+ declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
4413
+ readonly image: "image";
4414
+ };
4415
+
4416
+ /**
4417
+ * Generated by orval v7.10.0 🍺
4418
+ * Do not edit manually.
4419
+ * Hautech API
4420
+ * OpenAPI spec version: 1.0
4421
+ */
4422
+
4423
+ interface GPTV3ResponseCodeInterpreterToolCallImageDto {
4424
+ type: GPTV3ResponseCodeInterpreterToolCallImageDtoType;
4425
+ url: string;
4426
+ }
4427
+
4428
+ /**
4429
+ * Generated by orval v7.10.0 🍺
4430
+ * Do not edit manually.
4431
+ * Hautech API
4432
+ * OpenAPI spec version: 1.0
4433
+ */
4434
+
4435
+ type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem = GPTV3ResponseCodeInterpreterToolCallLogsDto | GPTV3ResponseCodeInterpreterToolCallImageDto;
4436
+
4437
+ /**
4438
+ * Generated by orval v7.10.0 🍺
4439
+ * Do not edit manually.
4440
+ * Hautech API
4441
+ * OpenAPI spec version: 1.0
4442
+ */
4443
+ type GPTV3ResponseCodeInterpreterToolCallDtoStatus = typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus];
4444
+ declare const GPTV3ResponseCodeInterpreterToolCallDtoStatus: {
4445
+ readonly in_progress: "in_progress";
4446
+ readonly completed: "completed";
4447
+ readonly incomplete: "incomplete";
4448
+ readonly interpreting: "interpreting";
4449
+ readonly failed: "failed";
4450
+ };
4451
+
4452
+ /**
4453
+ * Generated by orval v7.10.0 🍺
4454
+ * Do not edit manually.
4455
+ * Hautech API
4456
+ * OpenAPI spec version: 1.0
4457
+ */
4458
+ type GPTV3ResponseCodeInterpreterToolCallDtoType = typeof GPTV3ResponseCodeInterpreterToolCallDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoType];
4459
+ declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
4460
+ readonly code_interpreter_call: "code_interpreter_call";
4461
+ };
4462
+
4463
+ /**
4464
+ * Generated by orval v7.10.0 🍺
4465
+ * Do not edit manually.
4466
+ * Hautech API
4467
+ * OpenAPI spec version: 1.0
4468
+ */
4469
+
4470
+ interface GPTV3ResponseCodeInterpreterToolCallDto {
4471
+ id: string;
4472
+ /** @nullable */
4473
+ code?: string | null;
4474
+ container_id: string;
4475
+ /**
4476
+ * Outputs from the code interpreter.
4477
+ * @nullable
4478
+ */
4479
+ outputs?: GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem[] | null;
4480
+ status: GPTV3ResponseCodeInterpreterToolCallDtoStatus;
4481
+ type: GPTV3ResponseCodeInterpreterToolCallDtoType;
4482
+ }
4483
+
4484
+ /**
4485
+ * Generated by orval v7.10.0 🍺
4486
+ * Do not edit manually.
4487
+ * Hautech API
4488
+ * OpenAPI spec version: 1.0
4489
+ */
4490
+ type GPTV3ResponseLocalShellCallActionDtoType = typeof GPTV3ResponseLocalShellCallActionDtoType[keyof typeof GPTV3ResponseLocalShellCallActionDtoType];
4491
+ declare const GPTV3ResponseLocalShellCallActionDtoType: {
4492
+ readonly exec: "exec";
3182
4493
  };
3183
4494
 
3184
4495
  /**
@@ -3188,11 +4499,10 @@ declare const GPTV3UserMessageDtoRole: {
3188
4499
  * OpenAPI spec version: 1.0
3189
4500
  */
3190
4501
  /**
3191
- * The type of the message input. Always message.
4502
+ * Environment variables map.
3192
4503
  */
3193
- type GPTV3UserMessageDtoType = typeof GPTV3UserMessageDtoType[keyof typeof GPTV3UserMessageDtoType];
3194
- declare const GPTV3UserMessageDtoType: {
3195
- readonly message: "message";
4504
+ type GPTV3ResponseLocalShellCallActionDtoEnv = {
4505
+ [key: string]: unknown;
3196
4506
  };
3197
4507
 
3198
4508
  /**
@@ -3202,13 +4512,17 @@ declare const GPTV3UserMessageDtoType: {
3202
4512
  * OpenAPI spec version: 1.0
3203
4513
  */
3204
4514
 
3205
- interface GPTV3UserMessageDto {
3206
- /** The content of the user message. Can be a string or an array of text and image inputs. */
3207
- content: GPTV3UserMessageDtoContent;
3208
- /** The role of the message sender. */
3209
- role: GPTV3UserMessageDtoRole;
3210
- /** The type of the message input. Always message. */
3211
- type: GPTV3UserMessageDtoType;
4515
+ interface GPTV3ResponseLocalShellCallActionDto {
4516
+ type: GPTV3ResponseLocalShellCallActionDtoType;
4517
+ command: string[];
4518
+ /** Environment variables map. */
4519
+ env: GPTV3ResponseLocalShellCallActionDtoEnv;
4520
+ /** @nullable */
4521
+ timeout_ms?: number | null;
4522
+ /** @nullable */
4523
+ user?: string | null;
4524
+ /** @nullable */
4525
+ working_directory?: string | null;
3212
4526
  }
3213
4527
 
3214
4528
  /**
@@ -3217,8 +4531,12 @@ interface GPTV3UserMessageDto {
3217
4531
  * Hautech API
3218
4532
  * OpenAPI spec version: 1.0
3219
4533
  */
3220
-
3221
- type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto;
4534
+ type GPTV3ResponseLocalShellCallDtoStatus = typeof GPTV3ResponseLocalShellCallDtoStatus[keyof typeof GPTV3ResponseLocalShellCallDtoStatus];
4535
+ declare const GPTV3ResponseLocalShellCallDtoStatus: {
4536
+ readonly in_progress: "in_progress";
4537
+ readonly completed: "completed";
4538
+ readonly incomplete: "incomplete";
4539
+ };
3222
4540
 
3223
4541
  /**
3224
4542
  * Generated by orval v7.10.0 🍺
@@ -3226,11 +4544,25 @@ type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GP
3226
4544
  * Hautech API
3227
4545
  * OpenAPI spec version: 1.0
3228
4546
  */
4547
+ type GPTV3ResponseLocalShellCallDtoType = typeof GPTV3ResponseLocalShellCallDtoType[keyof typeof GPTV3ResponseLocalShellCallDtoType];
4548
+ declare const GPTV3ResponseLocalShellCallDtoType: {
4549
+ readonly local_shell_call: "local_shell_call";
4550
+ };
3229
4551
 
3230
4552
  /**
3231
- * 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.
4553
+ * Generated by orval v7.10.0 🍺
4554
+ * Do not edit manually.
4555
+ * Hautech API
4556
+ * OpenAPI spec version: 1.0
3232
4557
  */
3233
- type GPTV3InputInput = string | GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto | GPTV3InputInputOneOfItem[];
4558
+
4559
+ interface GPTV3ResponseLocalShellCallDto {
4560
+ id: string;
4561
+ action: GPTV3ResponseLocalShellCallActionDto;
4562
+ call_id: string;
4563
+ status: GPTV3ResponseLocalShellCallDtoStatus;
4564
+ type: GPTV3ResponseLocalShellCallDtoType;
4565
+ }
3234
4566
 
3235
4567
  /**
3236
4568
  * Generated by orval v7.10.0 🍺
@@ -3238,12 +4570,9 @@ type GPTV3InputInput = string | GPTV3SystemMessageDto | GPTV3UserMessageDto | GP
3238
4570
  * Hautech API
3239
4571
  * OpenAPI spec version: 1.0
3240
4572
  */
3241
- /**
3242
- * The type of response format being defined: 'text'.
3243
- */
3244
- type GPTV3ResponseFormatTextDtoType = typeof GPTV3ResponseFormatTextDtoType[keyof typeof GPTV3ResponseFormatTextDtoType];
3245
- declare const GPTV3ResponseFormatTextDtoType: {
3246
- readonly text: "text";
4573
+ type GPTV3ResponseMcpCallDtoType = typeof GPTV3ResponseMcpCallDtoType[keyof typeof GPTV3ResponseMcpCallDtoType];
4574
+ declare const GPTV3ResponseMcpCallDtoType: {
4575
+ readonly mcp_call: "mcp_call";
3247
4576
  };
3248
4577
 
3249
4578
  /**
@@ -3253,9 +4582,16 @@ declare const GPTV3ResponseFormatTextDtoType: {
3253
4582
  * OpenAPI spec version: 1.0
3254
4583
  */
3255
4584
 
3256
- interface GPTV3ResponseFormatTextDto {
3257
- /** The type of response format being defined: 'text'. */
3258
- type: GPTV3ResponseFormatTextDtoType;
4585
+ interface GPTV3ResponseMcpCallDto {
4586
+ id: string;
4587
+ arguments: string;
4588
+ name: string;
4589
+ server_label: string;
4590
+ type: GPTV3ResponseMcpCallDtoType;
4591
+ /** @nullable */
4592
+ error?: string | null;
4593
+ /** @nullable */
4594
+ output?: string | null;
3259
4595
  }
3260
4596
 
3261
4597
  /**
@@ -3264,10 +4600,7 @@ interface GPTV3ResponseFormatTextDto {
3264
4600
  * Hautech API
3265
4601
  * OpenAPI spec version: 1.0
3266
4602
  */
3267
- /**
3268
- * The schema for the response format, described as a JSON Schema object.
3269
- */
3270
- type GPTV3ResponseFormatJsonSchemaDtoSchema = {
4603
+ type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
3271
4604
  [key: string]: unknown;
3272
4605
  };
3273
4606
 
@@ -3278,12 +4611,11 @@ type GPTV3ResponseFormatJsonSchemaDtoSchema = {
3278
4611
  * OpenAPI spec version: 1.0
3279
4612
  */
3280
4613
  /**
3281
- * The type of response format being defined: json_schema.
4614
+ * @nullable
3282
4615
  */
3283
- type GPTV3ResponseFormatJsonSchemaDtoType = typeof GPTV3ResponseFormatJsonSchemaDtoType[keyof typeof GPTV3ResponseFormatJsonSchemaDtoType];
3284
- declare const GPTV3ResponseFormatJsonSchemaDtoType: {
3285
- readonly json_schema: "json_schema";
3286
- };
4616
+ type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
4617
+ [key: string]: unknown;
4618
+ } | null;
3287
4619
 
3288
4620
  /**
3289
4621
  * Generated by orval v7.10.0 🍺
@@ -3292,17 +4624,13 @@ declare const GPTV3ResponseFormatJsonSchemaDtoType: {
3292
4624
  * OpenAPI spec version: 1.0
3293
4625
  */
3294
4626
 
3295
- interface GPTV3ResponseFormatJsonSchemaDto {
3296
- /** 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. */
4627
+ interface GPTV3ResponseMcpListToolsToolDto {
3297
4628
  name: string;
3298
- /** The schema for the response format, described as a JSON Schema object. */
3299
- schema: GPTV3ResponseFormatJsonSchemaDtoSchema;
3300
- /** The type of response format being defined: json_schema. */
3301
- type: GPTV3ResponseFormatJsonSchemaDtoType;
3302
- /** A description of what the response format is for, used by the model to determine how to respond in the format. */
3303
- description?: string;
3304
- /** 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. */
3305
- strict?: boolean;
4629
+ input_schema?: GPTV3ResponseMcpListToolsToolDtoInputSchema;
4630
+ /** @nullable */
4631
+ annotations?: GPTV3ResponseMcpListToolsToolDtoAnnotations;
4632
+ /** @nullable */
4633
+ description?: string | null;
3306
4634
  }
3307
4635
 
3308
4636
  /**
@@ -3311,11 +4639,10 @@ interface GPTV3ResponseFormatJsonSchemaDto {
3311
4639
  * Hautech API
3312
4640
  * OpenAPI spec version: 1.0
3313
4641
  */
3314
-
3315
- /**
3316
- * The format for the text response.
3317
- */
3318
- type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormatJsonSchemaDto;
4642
+ type GPTV3ResponseMcpListToolsDtoType = typeof GPTV3ResponseMcpListToolsDtoType[keyof typeof GPTV3ResponseMcpListToolsDtoType];
4643
+ declare const GPTV3ResponseMcpListToolsDtoType: {
4644
+ readonly mcp_list_tools: "mcp_list_tools";
4645
+ };
3319
4646
 
3320
4647
  /**
3321
4648
  * Generated by orval v7.10.0 🍺
@@ -3324,9 +4651,13 @@ type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormat
3324
4651
  * OpenAPI spec version: 1.0
3325
4652
  */
3326
4653
 
3327
- interface GPTV3TextConfigDto {
3328
- /** The format for the text response. */
3329
- format?: GPTV3TextConfigDtoFormat;
4654
+ interface GPTV3ResponseMcpListToolsDto {
4655
+ id: string;
4656
+ server_label: string;
4657
+ tools: GPTV3ResponseMcpListToolsToolDto[];
4658
+ type: GPTV3ResponseMcpListToolsDtoType;
4659
+ /** @nullable */
4660
+ error?: string | null;
3330
4661
  }
3331
4662
 
3332
4663
  /**
@@ -3335,28 +4666,9 @@ interface GPTV3TextConfigDto {
3335
4666
  * Hautech API
3336
4667
  * OpenAPI spec version: 1.0
3337
4668
  */
3338
- /**
3339
- * The type of the tool.
3340
- */
3341
- type GPTV3WebSearchToolDtoType = typeof GPTV3WebSearchToolDtoType[keyof typeof GPTV3WebSearchToolDtoType];
3342
- declare const GPTV3WebSearchToolDtoType: {
3343
- readonly web_search_preview: "web_search_preview";
3344
- };
3345
-
3346
- /**
3347
- * Generated by orval v7.10.0 🍺
3348
- * Do not edit manually.
3349
- * Hautech API
3350
- * OpenAPI spec version: 1.0
3351
- */
3352
- /**
3353
- * High level guidance for the amount of context window space to use for the search.
3354
- */
3355
- type GPTV3WebSearchToolDtoSearchContextSize = typeof GPTV3WebSearchToolDtoSearchContextSize[keyof typeof GPTV3WebSearchToolDtoSearchContextSize];
3356
- declare const GPTV3WebSearchToolDtoSearchContextSize: {
3357
- readonly low: "low";
3358
- readonly medium: "medium";
3359
- readonly high: "high";
4669
+ type GPTV3ResponseMcpApprovalRequestDtoType = typeof GPTV3ResponseMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseMcpApprovalRequestDtoType];
4670
+ declare const GPTV3ResponseMcpApprovalRequestDtoType: {
4671
+ readonly mcp_approval_request: "mcp_approval_request";
3360
4672
  };
3361
4673
 
3362
4674
  /**
@@ -3366,11 +4678,12 @@ declare const GPTV3WebSearchToolDtoSearchContextSize: {
3366
4678
  * OpenAPI spec version: 1.0
3367
4679
  */
3368
4680
 
3369
- interface GPTV3WebSearchToolDto {
3370
- /** The type of the tool. */
3371
- type: GPTV3WebSearchToolDtoType;
3372
- /** High level guidance for the amount of context window space to use for the search. */
3373
- search_context_size?: GPTV3WebSearchToolDtoSearchContextSize;
4681
+ interface GPTV3ResponseMcpApprovalRequestDto {
4682
+ id: string;
4683
+ arguments: string;
4684
+ name: string;
4685
+ server_label: string;
4686
+ type: GPTV3ResponseMcpApprovalRequestDtoType;
3374
4687
  }
3375
4688
 
3376
4689
  /**
@@ -3379,8 +4692,13 @@ interface GPTV3WebSearchToolDto {
3379
4692
  * Hautech API
3380
4693
  * OpenAPI spec version: 1.0
3381
4694
  */
3382
-
3383
- type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3WebSearchToolDto | GPTV3ImageGenerationToolDto;
4695
+ /**
4696
+ * The type of the tool call.
4697
+ */
4698
+ type GPTV3ResponseCustomToolCallDtoType = typeof GPTV3ResponseCustomToolCallDtoType[keyof typeof GPTV3ResponseCustomToolCallDtoType];
4699
+ declare const GPTV3ResponseCustomToolCallDtoType: {
4700
+ readonly custom_tool_call: "custom_tool_call";
4701
+ };
3384
4702
 
3385
4703
  /**
3386
4704
  * Generated by orval v7.10.0 🍺
@@ -3389,17 +4707,13 @@ type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3
3389
4707
  * OpenAPI spec version: 1.0
3390
4708
  */
3391
4709
  /**
3392
- * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type.
4710
+ * The status of the tool call.
3393
4711
  */
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";
4712
+ type GPTV3ResponseCustomToolCallDtoStatus = typeof GPTV3ResponseCustomToolCallDtoStatus[keyof typeof GPTV3ResponseCustomToolCallDtoStatus];
4713
+ declare const GPTV3ResponseCustomToolCallDtoStatus: {
4714
+ readonly in_progress: "in_progress";
4715
+ readonly completed: "completed";
4716
+ readonly incomplete: "incomplete";
3403
4717
  };
3404
4718
 
3405
4719
  /**
@@ -3408,9 +4722,20 @@ declare const GPTV3ToolChoiceDtoType: {
3408
4722
  * Hautech API
3409
4723
  * OpenAPI spec version: 1.0
3410
4724
  */
3411
- interface GPTV3ToolChoiceFunctionDto {
3412
- /** The name of the function to call. */
4725
+
4726
+ interface GPTV3ResponseCustomToolCallDto {
4727
+ /** The unique identifier for this custom tool call. */
4728
+ id?: string;
4729
+ /** The type of the tool call. */
4730
+ type: GPTV3ResponseCustomToolCallDtoType;
4731
+ /** The name of the custom tool to run. */
3413
4732
  name: string;
4733
+ /** The unique ID of the tool call generated by the model. */
4734
+ call_id: string;
4735
+ /** The status of the tool call. */
4736
+ status?: GPTV3ResponseCustomToolCallDtoStatus;
4737
+ /** Input payload for the custom tool. */
4738
+ input: string;
3414
4739
  }
3415
4740
 
3416
4741
  /**
@@ -3420,12 +4745,7 @@ interface GPTV3ToolChoiceFunctionDto {
3420
4745
  * OpenAPI spec version: 1.0
3421
4746
  */
3422
4747
 
3423
- interface GPTV3ToolChoiceDto {
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
- }
4748
+ type GPTV3ResponseDtoOutputItem = GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseOutputItemImageGenerationCallDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseLocalShellCallDto | GPTV3ResponseMcpCallDto | GPTV3ResponseMcpListToolsDto | GPTV3ResponseMcpApprovalRequestDto | GPTV3ResponseCustomToolCallDto;
3429
4749
 
3430
4750
  /**
3431
4751
  * Generated by orval v7.10.0 🍺
@@ -3434,22 +4754,11 @@ interface GPTV3ToolChoiceDto {
3434
4754
  * OpenAPI spec version: 1.0
3435
4755
  */
3436
4756
 
3437
- interface GPTV3Input {
3438
- /** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
3439
- model?: GPTV3InputModel;
3440
- /** 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. */
3441
- input?: GPTV3InputInput;
3442
- /** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
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;
4757
+ interface GPTV3ResponseDto {
4758
+ /** Model output items. */
4759
+ output: GPTV3ResponseDtoOutputItem[];
4760
+ /** Concatenated text output from the model. */
4761
+ output_text: string;
3453
4762
  }
3454
4763
 
3455
4764
  /**
@@ -3458,13 +4767,11 @@ interface GPTV3Input {
3458
4767
  * Hautech API
3459
4768
  * OpenAPI spec version: 1.0
3460
4769
  */
3461
- /**
3462
- * 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.
3463
- */
3464
- type GPTV3MessageContentDtoType = typeof GPTV3MessageContentDtoType[keyof typeof GPTV3MessageContentDtoType];
3465
- declare const GPTV3MessageContentDtoType: {
3466
- readonly message: "message";
3467
- };
4770
+
4771
+ interface GPTV3Output {
4772
+ kind: GPTV3OutputKind;
4773
+ data: GPTV3ResponseDto;
4774
+ }
3468
4775
 
3469
4776
  /**
3470
4777
  * Generated by orval v7.10.0 🍺
@@ -3472,31 +4779,11 @@ declare const GPTV3MessageContentDtoType: {
3472
4779
  * Hautech API
3473
4780
  * OpenAPI spec version: 1.0
3474
4781
  */
3475
- /**
3476
- * The role of the message sender.
3477
- */
3478
- type GPTV3MessageContentDtoRole = typeof GPTV3MessageContentDtoRole[keyof typeof GPTV3MessageContentDtoRole];
3479
- declare const GPTV3MessageContentDtoRole: {
3480
- readonly assistant: "assistant";
3481
- };
3482
4782
 
3483
4783
  /**
3484
- * Generated by orval v7.10.0 🍺
3485
- * Do not edit manually.
3486
- * Hautech API
3487
- * OpenAPI spec version: 1.0
4784
+ * The content of the response. Can be a string for simple text responses or an array of content with annotations for responses with citations.
3488
4785
  */
3489
-
3490
- interface GPTV3MessageContentDto {
3491
- /** The unique identifier for the message. */
3492
- id: string;
3493
- /** 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. */
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
- }
4786
+ type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
3500
4787
 
3501
4788
  /**
3502
4789
  * Generated by orval v7.10.0 🍺
@@ -3571,10 +4858,19 @@ type GPTV3ResponseDtoToolCallsItem = GPTV3FileSearchCallDto | GPTV3WebSearchCall
3571
4858
  * OpenAPI spec version: 1.0
3572
4859
  */
3573
4860
 
4861
+ interface GPTV3ResponseImageGenerationResultsDto {
4862
+ /** Array of image generation results. */
4863
+ results: GPTV3ResponseOutputItemImageGenerationCallDto[];
4864
+ }
4865
+
3574
4866
  /**
3575
- * The content of the response. Can be a string for simple text responses or an array of content with annotations for responses with citations.
4867
+ * Generated by orval v7.10.0 🍺
4868
+ * Do not edit manually.
4869
+ * Hautech API
4870
+ * OpenAPI spec version: 1.0
3576
4871
  */
3577
- type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
4872
+
4873
+ type GPTV3SystemMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
3578
4874
 
3579
4875
  /**
3580
4876
  * Generated by orval v7.10.0 🍺
@@ -3583,17 +4879,54 @@ type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
3583
4879
  * OpenAPI spec version: 1.0
3584
4880
  */
3585
4881
 
3586
- interface GPTV3ResponseDto {
3587
- /** The finish reason for the response. */
3588
- finish_reason: GPTV3ResponseDtoFinishReason;
3589
- /** The role of the assistant. */
3590
- role: GPTV3ResponseDtoRole;
3591
- /** The tool calls made by the assistant, if any. */
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;
4882
+ /**
4883
+ * The content of the system message. Can be a string or an array of text and image inputs.
4884
+ */
4885
+ type GPTV3SystemMessageDtoContent = string | GPTV3SystemMessageDtoContentOneOfItem[];
4886
+
4887
+ /**
4888
+ * Generated by orval v7.10.0 🍺
4889
+ * Do not edit manually.
4890
+ * Hautech API
4891
+ * OpenAPI spec version: 1.0
4892
+ */
4893
+ /**
4894
+ * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type.
4895
+ */
4896
+ type GPTV3ToolChoiceDtoType = typeof GPTV3ToolChoiceDtoType[keyof typeof GPTV3ToolChoiceDtoType];
4897
+ declare const GPTV3ToolChoiceDtoType: {
4898
+ readonly none: "none";
4899
+ readonly auto: "auto";
4900
+ readonly required: "required";
4901
+ readonly function: "function";
4902
+ readonly file_search: "file_search";
4903
+ readonly web_search_preview: "web_search_preview";
4904
+ readonly image_generation: "image_generation";
4905
+ };
4906
+
4907
+ /**
4908
+ * Generated by orval v7.10.0 🍺
4909
+ * Do not edit manually.
4910
+ * Hautech API
4911
+ * OpenAPI spec version: 1.0
4912
+ */
4913
+ interface GPTV3ToolChoiceFunctionDto {
4914
+ /** The name of the function to call. */
4915
+ name: string;
4916
+ }
4917
+
4918
+ /**
4919
+ * Generated by orval v7.10.0 🍺
4920
+ * Do not edit manually.
4921
+ * Hautech API
4922
+ * OpenAPI spec version: 1.0
4923
+ */
4924
+
4925
+ interface GPTV3ToolChoiceDto {
4926
+ /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type. */
4927
+ type: GPTV3ToolChoiceDtoType;
4928
+ /** The function to call, if type is `function`. */
4929
+ function?: GPTV3ToolChoiceFunctionDto;
3597
4930
  }
3598
4931
 
3599
4932
  /**
@@ -3980,6 +5313,7 @@ interface GptV1Response {
3980
5313
  status: GptV1ResponseStatus;
3981
5314
  type: string;
3982
5315
  price?: string;
5316
+ estimatedPrice?: string;
3983
5317
  id: string;
3984
5318
  creatorId: string;
3985
5319
  metadata: GptV1ResponseMetadata;
@@ -4067,6 +5401,7 @@ interface GptV2Response {
4067
5401
  status: GptV2ResponseStatus;
4068
5402
  type: string;
4069
5403
  price?: string;
5404
+ estimatedPrice?: string;
4070
5405
  id: string;
4071
5406
  creatorId: string;
4072
5407
  metadata: GptV2ResponseMetadata;
@@ -4149,11 +5484,12 @@ type GptV3ResponseMetadata = {
4149
5484
 
4150
5485
  interface GptV3Response {
4151
5486
  kind: GptV3ResponseKind;
4152
- output: OperationOutputJSON;
5487
+ output: GPTV3Output;
4153
5488
  input: GptV3ResponseInput;
4154
5489
  status: GptV3ResponseStatus;
4155
5490
  type: string;
4156
5491
  price?: string;
5492
+ estimatedPrice?: string;
4157
5493
  id: string;
4158
5494
  creatorId: string;
4159
5495
  metadata: GptV3ResponseMetadata;
@@ -4381,6 +5717,7 @@ interface HauteLindaV1Response {
4381
5717
  status: HauteLindaV1ResponseStatus;
4382
5718
  type: string;
4383
5719
  price?: string;
5720
+ estimatedPrice?: string;
4384
5721
  id: string;
4385
5722
  creatorId: string;
4386
5723
  metadata: HauteLindaV1ResponseMetadata;
@@ -4519,6 +5856,7 @@ interface HauteNaomiV1Response {
4519
5856
  status: HauteNaomiV1ResponseStatus;
4520
5857
  type: string;
4521
5858
  price?: string;
5859
+ estimatedPrice?: string;
4522
5860
  id: string;
4523
5861
  creatorId: string;
4524
5862
  metadata: HauteNaomiV1ResponseMetadata;
@@ -4620,6 +5958,7 @@ interface IdeogramCharacterV1Response {
4620
5958
  status: IdeogramCharacterV1ResponseStatus;
4621
5959
  type: string;
4622
5960
  price?: string;
5961
+ estimatedPrice?: string;
4623
5962
  id: string;
4624
5963
  creatorId: string;
4625
5964
  metadata: IdeogramCharacterV1ResponseMetadata;
@@ -4670,9 +6009,9 @@ interface ImageEntity {
4670
6009
  metadata: ImageEntityMetadata;
4671
6010
  createdAt: string;
4672
6011
  updatedAt: string;
6012
+ format: string;
4673
6013
  width: number;
4674
6014
  height: number;
4675
- format: string;
4676
6015
  url: string;
4677
6016
  }
4678
6017
 
@@ -4820,6 +6159,7 @@ interface Imagen4V1Response {
4820
6159
  status: Imagen4V1ResponseStatus;
4821
6160
  type: string;
4822
6161
  price?: string;
6162
+ estimatedPrice?: string;
4823
6163
  id: string;
4824
6164
  creatorId: string;
4825
6165
  metadata: Imagen4V1ResponseMetadata;
@@ -4907,6 +6247,7 @@ interface ImagineFlux11ProUltraV1Response {
4907
6247
  status: ImagineFlux11ProUltraV1ResponseStatus;
4908
6248
  type: string;
4909
6249
  price?: string;
6250
+ estimatedPrice?: string;
4910
6251
  id: string;
4911
6252
  creatorId: string;
4912
6253
  metadata: ImagineFlux11ProUltraV1ResponseMetadata;
@@ -5024,6 +6365,7 @@ interface ImagineKateV1Response {
5024
6365
  status: ImagineKateV1ResponseStatus;
5025
6366
  type: string;
5026
6367
  price?: string;
6368
+ estimatedPrice?: string;
5027
6369
  id: string;
5028
6370
  creatorId: string;
5029
6371
  metadata: ImagineKateV1ResponseMetadata;
@@ -5170,6 +6512,7 @@ interface InpaintKateV1Response {
5170
6512
  status: InpaintKateV1ResponseStatus;
5171
6513
  type: string;
5172
6514
  price?: string;
6515
+ estimatedPrice?: string;
5173
6516
  id: string;
5174
6517
  creatorId: string;
5175
6518
  metadata: InpaintKateV1ResponseMetadata;
@@ -5500,6 +6843,7 @@ interface OperationEntity {
5500
6843
  status: OperationEntityStatus;
5501
6844
  type: string;
5502
6845
  price?: string;
6846
+ estimatedPrice?: string;
5503
6847
  id: string;
5504
6848
  creatorId: string;
5505
6849
  metadata: OperationEntityMetadata;
@@ -5736,10 +7080,10 @@ type VideoEntityMetadata = {
5736
7080
  interface VideoEntity {
5737
7081
  duration: string;
5738
7082
  kind: VideoEntityKind;
5739
- width: number;
5740
- height: number;
5741
7083
  previewImage?: ImageEntity;
5742
7084
  previewImageId?: string;
7085
+ width: number;
7086
+ height: number;
5743
7087
  url: string;
5744
7088
  id: string;
5745
7089
  creatorId: string;
@@ -5995,6 +7339,7 @@ interface LumaPhotonV1Response {
5995
7339
  status: LumaPhotonV1ResponseStatus;
5996
7340
  type: string;
5997
7341
  price?: string;
7342
+ estimatedPrice?: string;
5998
7343
  id: string;
5999
7344
  creatorId: string;
6000
7345
  metadata: LumaPhotonV1ResponseMetadata;
@@ -6109,6 +7454,7 @@ interface MathV1Response {
6109
7454
  status: MathV1ResponseStatus;
6110
7455
  type: string;
6111
7456
  price?: string;
7457
+ estimatedPrice?: string;
6112
7458
  id: string;
6113
7459
  creatorId: string;
6114
7460
  metadata: MathV1ResponseMetadata;
@@ -6259,6 +7605,7 @@ interface NegateImageV1Response {
6259
7605
  status: NegateImageV1ResponseStatus;
6260
7606
  type: string;
6261
7607
  price?: string;
7608
+ estimatedPrice?: string;
6262
7609
  id: string;
6263
7610
  creatorId: string;
6264
7611
  metadata: NegateImageV1ResponseMetadata;
@@ -6358,6 +7705,7 @@ interface NoiseV1Response {
6358
7705
  status: NoiseV1ResponseStatus;
6359
7706
  type: string;
6360
7707
  price?: string;
7708
+ estimatedPrice?: string;
6361
7709
  id: string;
6362
7710
  creatorId: string;
6363
7711
  metadata: NoiseV1ResponseMetadata;
@@ -6479,6 +7827,7 @@ interface ObjectDetectionV1Response {
6479
7827
  status: ObjectDetectionV1ResponseStatus;
6480
7828
  type: string;
6481
7829
  price?: string;
7830
+ estimatedPrice?: string;
6482
7831
  id: string;
6483
7832
  creatorId: string;
6484
7833
  metadata: ObjectDetectionV1ResponseMetadata;
@@ -6672,6 +8021,7 @@ interface OnecompilerV1Response {
6672
8021
  status: OnecompilerV1ResponseStatus;
6673
8022
  type: string;
6674
8023
  price?: string;
8024
+ estimatedPrice?: string;
6675
8025
  id: string;
6676
8026
  creatorId: string;
6677
8027
  metadata: OnecompilerV1ResponseMetadata;
@@ -6972,6 +8322,7 @@ interface PipelineMapV1Response {
6972
8322
  status: PipelineMapV1ResponseStatus;
6973
8323
  type: string;
6974
8324
  price?: string;
8325
+ estimatedPrice?: string;
6975
8326
  id: string;
6976
8327
  creatorId: string;
6977
8328
  metadata: PipelineMapV1ResponseMetadata;
@@ -7167,6 +8518,7 @@ interface PoseEstimationV1Response {
7167
8518
  status: PoseEstimationV1ResponseStatus;
7168
8519
  type: string;
7169
8520
  price?: string;
8521
+ estimatedPrice?: string;
7170
8522
  id: string;
7171
8523
  creatorId: string;
7172
8524
  metadata: PoseEstimationV1ResponseMetadata;
@@ -7374,6 +8726,7 @@ interface ResizeV1Response {
7374
8726
  status: ResizeV1ResponseStatus;
7375
8727
  type: string;
7376
8728
  price?: string;
8729
+ estimatedPrice?: string;
7377
8730
  id: string;
7378
8731
  creatorId: string;
7379
8732
  metadata: ResizeV1ResponseMetadata;
@@ -7616,6 +8969,7 @@ interface Seedream3V1Response {
7616
8969
  status: Seedream3V1ResponseStatus;
7617
8970
  type: string;
7618
8971
  price?: string;
8972
+ estimatedPrice?: string;
7619
8973
  id: string;
7620
8974
  creatorId: string;
7621
8975
  metadata: Seedream3V1ResponseMetadata;
@@ -7713,6 +9067,7 @@ interface SegmentAnythingEmbeddingsV1Response {
7713
9067
  status: SegmentAnythingEmbeddingsV1ResponseStatus;
7714
9068
  type: string;
7715
9069
  price?: string;
9070
+ estimatedPrice?: string;
7716
9071
  id: string;
7717
9072
  creatorId: string;
7718
9073
  metadata: SegmentAnythingEmbeddingsV1ResponseMetadata;
@@ -7817,6 +9172,7 @@ interface SegmentAnythingMaskV1Response {
7817
9172
  status: SegmentAnythingMaskV1ResponseStatus;
7818
9173
  type: string;
7819
9174
  price?: string;
9175
+ estimatedPrice?: string;
7820
9176
  id: string;
7821
9177
  creatorId: string;
7822
9178
  metadata: SegmentAnythingMaskV1ResponseMetadata;
@@ -8097,6 +9453,7 @@ interface StringsTemplateV1Response {
8097
9453
  status: StringsTemplateV1ResponseStatus;
8098
9454
  type: string;
8099
9455
  price?: string;
9456
+ estimatedPrice?: string;
8100
9457
  id: string;
8101
9458
  creatorId: string;
8102
9459
  metadata: StringsTemplateV1ResponseMetadata;
@@ -8251,6 +9608,7 @@ interface TopazUpscaleV1Response {
8251
9608
  status: TopazUpscaleV1ResponseStatus;
8252
9609
  type: string;
8253
9610
  price?: string;
9611
+ estimatedPrice?: string;
8254
9612
  id: string;
8255
9613
  creatorId: string;
8256
9614
  metadata: TopazUpscaleV1ResponseMetadata;
@@ -8382,6 +9740,7 @@ interface TranslateV1Response {
8382
9740
  status: TranslateV1ResponseStatus;
8383
9741
  type: string;
8384
9742
  price?: string;
9743
+ estimatedPrice?: string;
8385
9744
  id: string;
8386
9745
  creatorId: string;
8387
9746
  metadata: TranslateV1ResponseMetadata;
@@ -8601,6 +9960,7 @@ interface UpscaleV1Response {
8601
9960
  status: UpscaleV1ResponseStatus;
8602
9961
  type: string;
8603
9962
  price?: string;
9963
+ estimatedPrice?: string;
8604
9964
  id: string;
8605
9965
  creatorId: string;
8606
9966
  metadata: UpscaleV1ResponseMetadata;
@@ -8714,6 +10074,7 @@ interface Veo3FastV1Response {
8714
10074
  status: Veo3FastV1ResponseStatus;
8715
10075
  type: string;
8716
10076
  price?: string;
10077
+ estimatedPrice?: string;
8717
10078
  id: string;
8718
10079
  creatorId: string;
8719
10080
  metadata: Veo3FastV1ResponseMetadata;
@@ -8801,6 +10162,7 @@ interface Veo3V1Response {
8801
10162
  status: Veo3V1ResponseStatus;
8802
10163
  type: string;
8803
10164
  price?: string;
10165
+ estimatedPrice?: string;
8804
10166
  id: string;
8805
10167
  creatorId: string;
8806
10168
  metadata: Veo3V1ResponseMetadata;
@@ -8909,6 +10271,7 @@ interface VtonGiseleV1Response {
8909
10271
  status: VtonGiseleV1ResponseStatus;
8910
10272
  type: string;
8911
10273
  price?: string;
10274
+ estimatedPrice?: string;
8912
10275
  id: string;
8913
10276
  creatorId: string;
8914
10277
  metadata: VtonGiseleV1ResponseMetadata;
@@ -9618,4 +10981,4 @@ declare const createTokenSigner: (options: {
9618
10981
  }) => Promise<string>;
9619
10982
  };
9620
10983
 
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 };
10984
+ export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };