@hautechai/sdk 2.11.0 → 2.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1555,6 +1555,16 @@ type CreateWorkflowParamsDtoData = {
1555
1555
  [key: string]: unknown;
1556
1556
  };
1557
1557
 
1558
+ /**
1559
+ * Generated by orval v7.10.0 🍺
1560
+ * Do not edit manually.
1561
+ * Hautech API
1562
+ * OpenAPI spec version: 1.0
1563
+ */
1564
+ type CreateWorkflowParamsDtoPipelineTemplate = {
1565
+ [key: string]: unknown;
1566
+ };
1567
+
1558
1568
  /**
1559
1569
  * Generated by orval v7.10.0 🍺
1560
1570
  * Do not edit manually.
@@ -1574,6 +1584,7 @@ type CreateWorkflowParamsDtoMetadata = {
1574
1584
 
1575
1585
  interface CreateWorkflowParamsDto {
1576
1586
  data: CreateWorkflowParamsDtoData;
1587
+ pipelineTemplate?: CreateWorkflowParamsDtoPipelineTemplate;
1577
1588
  version: string;
1578
1589
  metadata?: CreateWorkflowParamsDtoMetadata;
1579
1590
  }
@@ -2051,93 +2062,6 @@ interface Flux11ProUltraV1Input {
2051
2062
  [key: string]: unknown;
2052
2063
  }
2053
2064
 
2054
- /**
2055
- * Generated by orval v7.10.0 🍺
2056
- * Do not edit manually.
2057
- * Hautech API
2058
- * OpenAPI spec version: 1.0
2059
- */
2060
- type Flux11ProUltraV1RequestMetadata = {
2061
- [key: string]: unknown;
2062
- };
2063
-
2064
- /**
2065
- * Generated by orval v7.10.0 🍺
2066
- * Do not edit manually.
2067
- * Hautech API
2068
- * OpenAPI spec version: 1.0
2069
- */
2070
-
2071
- interface Flux11ProUltraV1Request {
2072
- input: Flux11ProUltraV1Input;
2073
- metadata?: Flux11ProUltraV1RequestMetadata;
2074
- }
2075
-
2076
- /**
2077
- * Generated by orval v7.10.0 🍺
2078
- * Do not edit manually.
2079
- * Hautech API
2080
- * OpenAPI spec version: 1.0
2081
- */
2082
- type Flux11ProUltraV1ResponseKind = typeof Flux11ProUltraV1ResponseKind[keyof typeof Flux11ProUltraV1ResponseKind];
2083
- declare const Flux11ProUltraV1ResponseKind: {
2084
- readonly operation: "operation";
2085
- };
2086
-
2087
- /**
2088
- * Generated by orval v7.10.0 🍺
2089
- * Do not edit manually.
2090
- * Hautech API
2091
- * OpenAPI spec version: 1.0
2092
- */
2093
- type Flux11ProUltraV1ResponseInput = {
2094
- [key: string]: unknown;
2095
- };
2096
-
2097
- /**
2098
- * Generated by orval v7.10.0 🍺
2099
- * Do not edit manually.
2100
- * Hautech API
2101
- * OpenAPI spec version: 1.0
2102
- */
2103
- type Flux11ProUltraV1ResponseStatus = typeof Flux11ProUltraV1ResponseStatus[keyof typeof Flux11ProUltraV1ResponseStatus];
2104
- declare const Flux11ProUltraV1ResponseStatus: {
2105
- readonly pending: "pending";
2106
- readonly finished: "finished";
2107
- readonly failed: "failed";
2108
- };
2109
-
2110
- /**
2111
- * Generated by orval v7.10.0 🍺
2112
- * Do not edit manually.
2113
- * Hautech API
2114
- * OpenAPI spec version: 1.0
2115
- */
2116
- type Flux11ProUltraV1ResponseMetadata = {
2117
- [key: string]: unknown;
2118
- };
2119
-
2120
- /**
2121
- * Generated by orval v7.10.0 🍺
2122
- * Do not edit manually.
2123
- * Hautech API
2124
- * OpenAPI spec version: 1.0
2125
- */
2126
-
2127
- interface Flux11ProUltraV1Response {
2128
- kind: Flux11ProUltraV1ResponseKind;
2129
- output: OperationOutputImageSingle;
2130
- input: Flux11ProUltraV1ResponseInput;
2131
- status: Flux11ProUltraV1ResponseStatus;
2132
- type: string;
2133
- price?: string;
2134
- id: string;
2135
- creatorId: string;
2136
- metadata: Flux11ProUltraV1ResponseMetadata;
2137
- createdAt: string;
2138
- updatedAt: string;
2139
- }
2140
-
2141
2065
  /**
2142
2066
  * Generated by orval v7.10.0 🍺
2143
2067
  * Do not edit manually.
@@ -2423,37 +2347,12 @@ interface GPTV2Input {
2423
2347
  * OpenAPI spec version: 1.0
2424
2348
  */
2425
2349
  /**
2426
- * The type of annotation.
2427
- */
2428
- type GPTV3AnnotationDtoType = typeof GPTV3AnnotationDtoType[keyof typeof GPTV3AnnotationDtoType];
2429
- declare const GPTV3AnnotationDtoType: {
2430
- readonly file_citation: "file_citation";
2431
- readonly url_citation: "url_citation";
2432
- };
2433
-
2434
- /**
2435
- * Generated by orval v7.10.0 🍺
2436
- * Do not edit manually.
2437
- * Hautech API
2438
- * OpenAPI spec version: 1.0
2350
+ * A filter to apply to the search.
2351
+ * @nullable
2439
2352
  */
2440
-
2441
- interface GPTV3AnnotationDto {
2442
- /** The type of annotation. */
2443
- type: GPTV3AnnotationDtoType;
2444
- /** The start index position of the annotation in the text. */
2445
- start_index: number;
2446
- /** The end index position of the annotation in the text. */
2447
- end_index: number;
2448
- /** The unique identifier for the cited file. */
2449
- file_id?: string;
2450
- /** The name of the cited file. */
2451
- filename?: string;
2452
- /** The URL of the cited source. */
2453
- url?: string;
2454
- /** The title of the cited source. */
2455
- title?: string;
2456
- }
2353
+ type GPTV3FileSearchCallDetailsDtoFilters = {
2354
+ [key: string]: unknown;
2355
+ } | null;
2457
2356
 
2458
2357
  /**
2459
2358
  * Generated by orval v7.10.0 🍺
@@ -2462,12 +2361,12 @@ interface GPTV3AnnotationDto {
2462
2361
  * OpenAPI spec version: 1.0
2463
2362
  */
2464
2363
  /**
2465
- * The type of text input.
2364
+ * Ranking options for the search.
2365
+ * @nullable
2466
2366
  */
2467
- type GPTV3TextInputDtoType = typeof GPTV3TextInputDtoType[keyof typeof GPTV3TextInputDtoType];
2468
- declare const GPTV3TextInputDtoType: {
2469
- readonly input_text: "input_text";
2470
- };
2367
+ type GPTV3FileSearchCallDetailsDtoRanking = {
2368
+ [key: string]: unknown;
2369
+ } | null;
2471
2370
 
2472
2371
  /**
2473
2372
  * Generated by orval v7.10.0 🍺
@@ -2476,11 +2375,23 @@ declare const GPTV3TextInputDtoType: {
2476
2375
  * OpenAPI spec version: 1.0
2477
2376
  */
2478
2377
 
2479
- interface GPTV3TextInputDto {
2480
- /** The type of text input. */
2481
- type: GPTV3TextInputDtoType;
2482
- /** The text content. */
2483
- text: string;
2378
+ interface GPTV3FileSearchCallDetailsDto {
2379
+ /** The IDs of the vector stores to search. */
2380
+ vector_store_ids: string[];
2381
+ /** The search query used for the file search. */
2382
+ query?: string;
2383
+ /**
2384
+ * A filter to apply to the search.
2385
+ * @nullable
2386
+ */
2387
+ filters?: GPTV3FileSearchCallDetailsDtoFilters;
2388
+ /** The maximum number of results to return. */
2389
+ max_num_results?: number;
2390
+ /**
2391
+ * Ranking options for the search.
2392
+ * @nullable
2393
+ */
2394
+ ranking?: GPTV3FileSearchCallDetailsDtoRanking;
2484
2395
  }
2485
2396
 
2486
2397
  /**
@@ -2490,11 +2401,11 @@ interface GPTV3TextInputDto {
2490
2401
  * OpenAPI spec version: 1.0
2491
2402
  */
2492
2403
  /**
2493
- * The type of image input.
2404
+ * The type of tool call: file_search.
2494
2405
  */
2495
- type GPTV3ImageInputDtoType = typeof GPTV3ImageInputDtoType[keyof typeof GPTV3ImageInputDtoType];
2496
- declare const GPTV3ImageInputDtoType: {
2497
- readonly input_image: "input_image";
2406
+ type GPTV3FileSearchCallDtoType = typeof GPTV3FileSearchCallDtoType[keyof typeof GPTV3FileSearchCallDtoType];
2407
+ declare const GPTV3FileSearchCallDtoType: {
2408
+ readonly file_search: "file_search";
2498
2409
  };
2499
2410
 
2500
2411
  /**
@@ -2503,15 +2414,15 @@ declare const GPTV3ImageInputDtoType: {
2503
2414
  * Hautech API
2504
2415
  * OpenAPI spec version: 1.0
2505
2416
  */
2506
- /**
2507
- * The level of detail to use when processing the image.
2508
- */
2509
- type GPTV3ImageInputDtoDetail = typeof GPTV3ImageInputDtoDetail[keyof typeof GPTV3ImageInputDtoDetail];
2510
- declare const GPTV3ImageInputDtoDetail: {
2511
- readonly low: "low";
2512
- readonly high: "high";
2513
- readonly auto: "auto";
2514
- };
2417
+
2418
+ interface GPTV3FileSearchCallDto {
2419
+ /** The unique identifier for this tool call. */
2420
+ id: string;
2421
+ /** The type of tool call: file_search. */
2422
+ type: GPTV3FileSearchCallDtoType;
2423
+ /** The file search call details. */
2424
+ file_search: GPTV3FileSearchCallDetailsDto;
2425
+ }
2515
2426
 
2516
2427
  /**
2517
2428
  * Generated by orval v7.10.0 🍺
@@ -2519,15 +2430,13 @@ declare const GPTV3ImageInputDtoDetail: {
2519
2430
  * Hautech API
2520
2431
  * OpenAPI spec version: 1.0
2521
2432
  */
2522
-
2523
- interface GPTV3ImageInputDto {
2524
- /** The type of image input. */
2525
- type: GPTV3ImageInputDtoType;
2526
- /** The ID of the image to analyze. */
2527
- imageId: string;
2528
- /** The level of detail to use when processing the image. */
2529
- detail: GPTV3ImageInputDtoDetail;
2530
- }
2433
+ /**
2434
+ * The type of the tool.
2435
+ */
2436
+ type GPTV3FileSearchToolDtoType = typeof GPTV3FileSearchToolDtoType[keyof typeof GPTV3FileSearchToolDtoType];
2437
+ declare const GPTV3FileSearchToolDtoType: {
2438
+ readonly file_search: "file_search";
2439
+ };
2531
2440
 
2532
2441
  /**
2533
2442
  * Generated by orval v7.10.0 🍺
@@ -2536,7 +2445,14 @@ interface GPTV3ImageInputDto {
2536
2445
  * OpenAPI spec version: 1.0
2537
2446
  */
2538
2447
 
2539
- type GPTV3AssistantMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
2448
+ interface GPTV3FileSearchToolDto {
2449
+ /** The type of the tool. */
2450
+ type: GPTV3FileSearchToolDtoType;
2451
+ /** The IDs of the vector stores to search. */
2452
+ vector_store_ids: string[];
2453
+ /** The maximum number of results to return. */
2454
+ max_num_results?: number;
2455
+ }
2540
2456
 
2541
2457
  /**
2542
2458
  * Generated by orval v7.10.0 🍺
@@ -2544,11 +2460,12 @@ type GPTV3AssistantMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageIn
2544
2460
  * Hautech API
2545
2461
  * OpenAPI spec version: 1.0
2546
2462
  */
2547
-
2548
- /**
2549
- * The content of the assistant message. Can be a string or an array of text and image inputs.
2550
- */
2551
- type GPTV3AssistantMessageDtoContent = string | GPTV3AssistantMessageDtoContentOneOfItem[];
2463
+ interface GPTV3FunctionCallDetailsDto {
2464
+ /** The name of the function to call. */
2465
+ name: string;
2466
+ /** The arguments to pass to the function. */
2467
+ arguments: string;
2468
+ }
2552
2469
 
2553
2470
  /**
2554
2471
  * Generated by orval v7.10.0 🍺
@@ -2557,11 +2474,11 @@ type GPTV3AssistantMessageDtoContent = string | GPTV3AssistantMessageDtoContentO
2557
2474
  * OpenAPI spec version: 1.0
2558
2475
  */
2559
2476
  /**
2560
- * The role of the message sender.
2477
+ * The type of the tool.
2561
2478
  */
2562
- type GPTV3AssistantMessageDtoRole = typeof GPTV3AssistantMessageDtoRole[keyof typeof GPTV3AssistantMessageDtoRole];
2563
- declare const GPTV3AssistantMessageDtoRole: {
2564
- readonly assistant: "assistant";
2479
+ type GPTV3FunctionToolDtoType = typeof GPTV3FunctionToolDtoType[keyof typeof GPTV3FunctionToolDtoType];
2480
+ declare const GPTV3FunctionToolDtoType: {
2481
+ readonly function: "function";
2565
2482
  };
2566
2483
 
2567
2484
  /**
@@ -2571,11 +2488,10 @@ declare const GPTV3AssistantMessageDtoRole: {
2571
2488
  * OpenAPI spec version: 1.0
2572
2489
  */
2573
2490
  /**
2574
- * The type of the message input. Always message.
2491
+ * The parameters the functions accepts, described satisfies a JSON Schema object.
2575
2492
  */
2576
- type GPTV3AssistantMessageDtoType = typeof GPTV3AssistantMessageDtoType[keyof typeof GPTV3AssistantMessageDtoType];
2577
- declare const GPTV3AssistantMessageDtoType: {
2578
- readonly message: "message";
2493
+ type GPTV3FunctionToolDtoParameters = {
2494
+ [key: string]: unknown;
2579
2495
  };
2580
2496
 
2581
2497
  /**
@@ -2585,13 +2501,17 @@ declare const GPTV3AssistantMessageDtoType: {
2585
2501
  * OpenAPI spec version: 1.0
2586
2502
  */
2587
2503
 
2588
- interface GPTV3AssistantMessageDto {
2589
- /** The content of the assistant message. Can be a string or an array of text and image inputs. */
2590
- content: GPTV3AssistantMessageDtoContent;
2591
- /** The role of the message sender. */
2592
- role: GPTV3AssistantMessageDtoRole;
2593
- /** The type of the message input. Always message. */
2594
- type: GPTV3AssistantMessageDtoType;
2504
+ interface GPTV3FunctionToolDto {
2505
+ /** The type of the tool. */
2506
+ type: GPTV3FunctionToolDtoType;
2507
+ /** The name of the function to call. */
2508
+ name: string;
2509
+ /** A description of what the function does. */
2510
+ description?: string;
2511
+ /** The parameters the functions accepts, described satisfies a JSON Schema object. */
2512
+ parameters: GPTV3FunctionToolDtoParameters;
2513
+ /** Whether to enable strict schema adherence when generating the function call. */
2514
+ strict: boolean;
2595
2515
  }
2596
2516
 
2597
2517
  /**
@@ -2601,11 +2521,11 @@ interface GPTV3AssistantMessageDto {
2601
2521
  * OpenAPI spec version: 1.0
2602
2522
  */
2603
2523
  /**
2604
- * The type of content.
2524
+ * The type of tool call: image_generation.
2605
2525
  */
2606
- type GPTV3ContentWithAnnotationsDtoType = typeof GPTV3ContentWithAnnotationsDtoType[keyof typeof GPTV3ContentWithAnnotationsDtoType];
2607
- declare const GPTV3ContentWithAnnotationsDtoType: {
2608
- readonly output_text: "output_text";
2526
+ type GPTV3ImageGenerationCallDtoType = typeof GPTV3ImageGenerationCallDtoType[keyof typeof GPTV3ImageGenerationCallDtoType];
2527
+ declare const GPTV3ImageGenerationCallDtoType: {
2528
+ readonly image_generation: "image_generation";
2609
2529
  };
2610
2530
 
2611
2531
  /**
@@ -2615,13 +2535,11 @@ declare const GPTV3ContentWithAnnotationsDtoType: {
2615
2535
  * OpenAPI spec version: 1.0
2616
2536
  */
2617
2537
 
2618
- interface GPTV3ContentWithAnnotationsDto {
2619
- /** The type of content. */
2620
- type: GPTV3ContentWithAnnotationsDtoType;
2621
- /** The text content. */
2622
- text: string;
2623
- /** Annotations for the content. */
2624
- annotations?: GPTV3AnnotationDto[];
2538
+ interface GPTV3ImageGenerationCallDto {
2539
+ /** The unique identifier for this tool call. */
2540
+ id: string;
2541
+ /** The type of tool call: image_generation. */
2542
+ type: GPTV3ImageGenerationCallDtoType;
2625
2543
  }
2626
2544
 
2627
2545
  /**
@@ -2630,20 +2548,13 @@ interface GPTV3ContentWithAnnotationsDto {
2630
2548
  * Hautech API
2631
2549
  * OpenAPI spec version: 1.0
2632
2550
  */
2633
-
2634
- type GPTV3DeveloperMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
2635
-
2636
- /**
2637
- * Generated by orval v7.10.0 🍺
2638
- * Do not edit manually.
2639
- * Hautech API
2640
- * OpenAPI spec version: 1.0
2641
- */
2642
-
2643
2551
  /**
2644
- * The content of the developer message. Can be a string or an array of text and image inputs.
2552
+ * The type of the tool.
2645
2553
  */
2646
- type GPTV3DeveloperMessageDtoContent = string | GPTV3DeveloperMessageDtoContentOneOfItem[];
2554
+ type GPTV3ImageGenerationToolDtoType = typeof GPTV3ImageGenerationToolDtoType[keyof typeof GPTV3ImageGenerationToolDtoType];
2555
+ declare const GPTV3ImageGenerationToolDtoType: {
2556
+ readonly image_generation: "image_generation";
2557
+ };
2647
2558
 
2648
2559
  /**
2649
2560
  * Generated by orval v7.10.0 🍺
@@ -2652,11 +2563,14 @@ type GPTV3DeveloperMessageDtoContent = string | GPTV3DeveloperMessageDtoContentO
2652
2563
  * OpenAPI spec version: 1.0
2653
2564
  */
2654
2565
  /**
2655
- * The role of the message sender.
2566
+ * The quality level for image generation.
2656
2567
  */
2657
- type GPTV3DeveloperMessageDtoRole = typeof GPTV3DeveloperMessageDtoRole[keyof typeof GPTV3DeveloperMessageDtoRole];
2658
- declare const GPTV3DeveloperMessageDtoRole: {
2659
- readonly developer: "developer";
2568
+ type GPTV3ImageGenerationToolDtoQuality = typeof GPTV3ImageGenerationToolDtoQuality[keyof typeof GPTV3ImageGenerationToolDtoQuality];
2569
+ declare const GPTV3ImageGenerationToolDtoQuality: {
2570
+ readonly auto: "auto";
2571
+ readonly low: "low";
2572
+ readonly medium: "medium";
2573
+ readonly high: "high";
2660
2574
  };
2661
2575
 
2662
2576
  /**
@@ -2666,11 +2580,14 @@ declare const GPTV3DeveloperMessageDtoRole: {
2666
2580
  * OpenAPI spec version: 1.0
2667
2581
  */
2668
2582
  /**
2669
- * The type of the message input. Always message.
2583
+ * The size of the generated image.
2670
2584
  */
2671
- type GPTV3DeveloperMessageDtoType = typeof GPTV3DeveloperMessageDtoType[keyof typeof GPTV3DeveloperMessageDtoType];
2672
- declare const GPTV3DeveloperMessageDtoType: {
2673
- readonly message: "message";
2585
+ type GPTV3ImageGenerationToolDtoSize = typeof GPTV3ImageGenerationToolDtoSize[keyof typeof GPTV3ImageGenerationToolDtoSize];
2586
+ declare const GPTV3ImageGenerationToolDtoSize: {
2587
+ readonly auto: "auto";
2588
+ readonly '1024x1024': "1024x1024";
2589
+ readonly '1536x1024': "1536x1024";
2590
+ readonly '1024x1536': "1024x1536";
2674
2591
  };
2675
2592
 
2676
2593
  /**
@@ -2680,13 +2597,13 @@ declare const GPTV3DeveloperMessageDtoType: {
2680
2597
  * OpenAPI spec version: 1.0
2681
2598
  */
2682
2599
 
2683
- interface GPTV3DeveloperMessageDto {
2684
- /** The content of the developer message. Can be a string or an array of text and image inputs. */
2685
- content: GPTV3DeveloperMessageDtoContent;
2686
- /** The role of the message sender. */
2687
- role: GPTV3DeveloperMessageDtoRole;
2688
- /** The type of the message input. Always message. */
2689
- type: GPTV3DeveloperMessageDtoType;
2600
+ interface GPTV3ImageGenerationToolDto {
2601
+ /** The type of the tool. */
2602
+ type: GPTV3ImageGenerationToolDtoType;
2603
+ /** The quality level for image generation. */
2604
+ quality?: GPTV3ImageGenerationToolDtoQuality;
2605
+ /** The size of the generated image. */
2606
+ size?: GPTV3ImageGenerationToolDtoSize;
2690
2607
  }
2691
2608
 
2692
2609
  /**
@@ -2696,12 +2613,12 @@ interface GPTV3DeveloperMessageDto {
2696
2613
  * OpenAPI spec version: 1.0
2697
2614
  */
2698
2615
  /**
2699
- * A filter to apply to the search.
2700
- * @nullable
2616
+ * The type of image input.
2701
2617
  */
2702
- type GPTV3FileSearchCallDetailsDtoFilters = {
2703
- [key: string]: unknown;
2704
- } | null;
2618
+ type GPTV3ImageInputDtoType = typeof GPTV3ImageInputDtoType[keyof typeof GPTV3ImageInputDtoType];
2619
+ declare const GPTV3ImageInputDtoType: {
2620
+ readonly input_image: "input_image";
2621
+ };
2705
2622
 
2706
2623
  /**
2707
2624
  * Generated by orval v7.10.0 🍺
@@ -2710,12 +2627,14 @@ type GPTV3FileSearchCallDetailsDtoFilters = {
2710
2627
  * OpenAPI spec version: 1.0
2711
2628
  */
2712
2629
  /**
2713
- * Ranking options for the search.
2714
- * @nullable
2630
+ * The level of detail to use when processing the image.
2715
2631
  */
2716
- type GPTV3FileSearchCallDetailsDtoRanking = {
2717
- [key: string]: unknown;
2718
- } | null;
2632
+ type GPTV3ImageInputDtoDetail = typeof GPTV3ImageInputDtoDetail[keyof typeof GPTV3ImageInputDtoDetail];
2633
+ declare const GPTV3ImageInputDtoDetail: {
2634
+ readonly low: "low";
2635
+ readonly high: "high";
2636
+ readonly auto: "auto";
2637
+ };
2719
2638
 
2720
2639
  /**
2721
2640
  * Generated by orval v7.10.0 🍺
@@ -2724,23 +2643,13 @@ type GPTV3FileSearchCallDetailsDtoRanking = {
2724
2643
  * OpenAPI spec version: 1.0
2725
2644
  */
2726
2645
 
2727
- interface GPTV3FileSearchCallDetailsDto {
2728
- /** The IDs of the vector stores to search. */
2729
- vector_store_ids: string[];
2730
- /** The search query used for the file search. */
2731
- query?: string;
2732
- /**
2733
- * A filter to apply to the search.
2734
- * @nullable
2735
- */
2736
- filters?: GPTV3FileSearchCallDetailsDtoFilters;
2737
- /** The maximum number of results to return. */
2738
- max_num_results?: number;
2739
- /**
2740
- * Ranking options for the search.
2741
- * @nullable
2742
- */
2743
- ranking?: GPTV3FileSearchCallDetailsDtoRanking;
2646
+ interface GPTV3ImageInputDto {
2647
+ /** The type of image input. */
2648
+ type: GPTV3ImageInputDtoType;
2649
+ /** The ID of the image to analyze. */
2650
+ imageId: string;
2651
+ /** The level of detail to use when processing the image. */
2652
+ detail: GPTV3ImageInputDtoDetail;
2744
2653
  }
2745
2654
 
2746
2655
  /**
@@ -2750,11 +2659,17 @@ interface GPTV3FileSearchCallDetailsDto {
2750
2659
  * OpenAPI spec version: 1.0
2751
2660
  */
2752
2661
  /**
2753
- * The type of tool call: file_search.
2662
+ * ID of the model to use. See OpenAI docs for model endpoint compatibility.
2754
2663
  */
2755
- type GPTV3FileSearchCallDtoType = typeof GPTV3FileSearchCallDtoType[keyof typeof GPTV3FileSearchCallDtoType];
2756
- declare const GPTV3FileSearchCallDtoType: {
2757
- readonly file_search: "file_search";
2664
+ type GPTV3InputModel = typeof GPTV3InputModel[keyof typeof GPTV3InputModel];
2665
+ declare const GPTV3InputModel: {
2666
+ readonly 'gpt-4o': "gpt-4o";
2667
+ readonly 'gpt-5': "gpt-5";
2668
+ readonly o3: "o3";
2669
+ readonly 'o3-mini': "o3-mini";
2670
+ readonly 'gpt-41': "gpt-4.1";
2671
+ readonly 'gpt-41-mini': "gpt-4.1-mini";
2672
+ readonly 'gpt-41-nano': "gpt-4.1-nano";
2758
2673
  };
2759
2674
 
2760
2675
  /**
@@ -2763,15 +2678,13 @@ declare const GPTV3FileSearchCallDtoType: {
2763
2678
  * Hautech API
2764
2679
  * OpenAPI spec version: 1.0
2765
2680
  */
2766
-
2767
- interface GPTV3FileSearchCallDto {
2768
- /** The unique identifier for this tool call. */
2769
- id: string;
2770
- /** The type of tool call: file_search. */
2771
- type: GPTV3FileSearchCallDtoType;
2772
- /** The file search call details. */
2773
- file_search: GPTV3FileSearchCallDetailsDto;
2774
- }
2681
+ /**
2682
+ * The type of text input.
2683
+ */
2684
+ type GPTV3TextInputDtoType = typeof GPTV3TextInputDtoType[keyof typeof GPTV3TextInputDtoType];
2685
+ declare const GPTV3TextInputDtoType: {
2686
+ readonly input_text: "input_text";
2687
+ };
2775
2688
 
2776
2689
  /**
2777
2690
  * Generated by orval v7.10.0 🍺
@@ -2779,17 +2692,12 @@ interface GPTV3FileSearchCallDto {
2779
2692
  * Hautech API
2780
2693
  * OpenAPI spec version: 1.0
2781
2694
  */
2782
- interface GPTV3FileSearchFileDto {
2783
- /** The unique identifier for the file. */
2784
- file_id: string;
2785
- /** The name of the file. */
2786
- filename: string;
2787
- /** The size of the file in bytes. */
2788
- size?: number;
2789
- /** The MIME type of the file. */
2790
- mime_type?: string;
2791
- /** The content of the file. */
2792
- content?: string;
2695
+
2696
+ interface GPTV3TextInputDto {
2697
+ /** The type of text input. */
2698
+ type: GPTV3TextInputDtoType;
2699
+ /** The text content. */
2700
+ text: string;
2793
2701
  }
2794
2702
 
2795
2703
  /**
@@ -2798,13 +2706,8 @@ interface GPTV3FileSearchFileDto {
2798
2706
  * Hautech API
2799
2707
  * OpenAPI spec version: 1.0
2800
2708
  */
2801
- /**
2802
- * The type of the file search result. This is the FIRST output item when file_search tool is called.
2803
- */
2804
- type GPTV3FileSearchResultDtoType = typeof GPTV3FileSearchResultDtoType[keyof typeof GPTV3FileSearchResultDtoType];
2805
- declare const GPTV3FileSearchResultDtoType: {
2806
- readonly file_search_call: "file_search_call";
2807
- };
2709
+
2710
+ type GPTV3ResponseInputItemMessageContentItem = GPTV3TextInputDto | GPTV3ImageInputDto;
2808
2711
 
2809
2712
  /**
2810
2713
  * Generated by orval v7.10.0 🍺
@@ -2813,13 +2716,13 @@ declare const GPTV3FileSearchResultDtoType: {
2813
2716
  * OpenAPI spec version: 1.0
2814
2717
  */
2815
2718
  /**
2816
- * The status of the file search call.
2719
+ * The role of the message sender.
2817
2720
  */
2818
- type GPTV3FileSearchResultDtoStatus = typeof GPTV3FileSearchResultDtoStatus[keyof typeof GPTV3FileSearchResultDtoStatus];
2819
- declare const GPTV3FileSearchResultDtoStatus: {
2820
- readonly completed: "completed";
2821
- readonly failed: "failed";
2822
- readonly pending: "pending";
2721
+ type GPTV3ResponseInputItemMessageRole = typeof GPTV3ResponseInputItemMessageRole[keyof typeof GPTV3ResponseInputItemMessageRole];
2722
+ declare const GPTV3ResponseInputItemMessageRole: {
2723
+ readonly user: "user";
2724
+ readonly system: "system";
2725
+ readonly developer: "developer";
2823
2726
  };
2824
2727
 
2825
2728
  /**
@@ -2828,11 +2731,13 @@ declare const GPTV3FileSearchResultDtoStatus: {
2828
2731
  * Hautech API
2829
2732
  * OpenAPI spec version: 1.0
2830
2733
  */
2831
-
2832
- interface GPTV3FileSearchResultsDto {
2833
- /** The files found in the search. */
2834
- files: GPTV3FileSearchFileDto[];
2835
- }
2734
+ /**
2735
+ * The type of the message input. Always message.
2736
+ */
2737
+ type GPTV3ResponseInputItemMessageType = typeof GPTV3ResponseInputItemMessageType[keyof typeof GPTV3ResponseInputItemMessageType];
2738
+ declare const GPTV3ResponseInputItemMessageType: {
2739
+ readonly message: "message";
2740
+ };
2836
2741
 
2837
2742
  /**
2838
2743
  * Generated by orval v7.10.0 🍺
@@ -2840,12 +2745,12 @@ interface GPTV3FileSearchResultsDto {
2840
2745
  * Hautech API
2841
2746
  * OpenAPI spec version: 1.0
2842
2747
  */
2843
-
2844
- /**
2845
- * The search results from the file search. Can be null if no results found.
2846
- * @nullable
2847
- */
2848
- type GPTV3FileSearchResultDtoSearchResults = GPTV3FileSearchResultsDto | null;
2748
+ type GPTV3ResponseInputItemMessageStatus = typeof GPTV3ResponseInputItemMessageStatus[keyof typeof GPTV3ResponseInputItemMessageStatus];
2749
+ declare const GPTV3ResponseInputItemMessageStatus: {
2750
+ readonly in_progress: "in_progress";
2751
+ readonly completed: "completed";
2752
+ readonly incomplete: "incomplete";
2753
+ };
2849
2754
 
2850
2755
  /**
2851
2756
  * Generated by orval v7.10.0 🍺
@@ -2854,20 +2759,14 @@ type GPTV3FileSearchResultDtoSearchResults = GPTV3FileSearchResultsDto | null;
2854
2759
  * OpenAPI spec version: 1.0
2855
2760
  */
2856
2761
 
2857
- interface GPTV3FileSearchResultDto {
2858
- /** The type of the file search result. This is the FIRST output item when file_search tool is called. */
2859
- type: GPTV3FileSearchResultDtoType;
2860
- /** The unique identifier for this file search call. */
2861
- id: string;
2862
- /** The status of the file search call. */
2863
- status: GPTV3FileSearchResultDtoStatus;
2864
- /** The search queries used for the file search. */
2865
- queries: string[];
2866
- /**
2867
- * The search results from the file search. Can be null if no results found.
2868
- * @nullable
2869
- */
2870
- search_results?: GPTV3FileSearchResultDtoSearchResults;
2762
+ interface GPTV3ResponseInputItemMessage {
2763
+ /** A list of input items (text, image, file). */
2764
+ content: GPTV3ResponseInputItemMessageContentItem[];
2765
+ /** The role of the message sender. */
2766
+ role: GPTV3ResponseInputItemMessageRole;
2767
+ /** The type of the message input. Always message. */
2768
+ type?: GPTV3ResponseInputItemMessageType;
2769
+ status?: GPTV3ResponseInputItemMessageStatus;
2871
2770
  }
2872
2771
 
2873
2772
  /**
@@ -2877,11 +2776,11 @@ interface GPTV3FileSearchResultDto {
2877
2776
  * OpenAPI spec version: 1.0
2878
2777
  */
2879
2778
  /**
2880
- * The type of the tool.
2779
+ * 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.
2881
2780
  */
2882
- type GPTV3FileSearchToolDtoType = typeof GPTV3FileSearchToolDtoType[keyof typeof GPTV3FileSearchToolDtoType];
2883
- declare const GPTV3FileSearchToolDtoType: {
2884
- readonly file_search: "file_search";
2781
+ type GPTV3ResponseOutputMessageDtoType = typeof GPTV3ResponseOutputMessageDtoType[keyof typeof GPTV3ResponseOutputMessageDtoType];
2782
+ declare const GPTV3ResponseOutputMessageDtoType: {
2783
+ readonly message: "message";
2885
2784
  };
2886
2785
 
2887
2786
  /**
@@ -2890,15 +2789,13 @@ declare const GPTV3FileSearchToolDtoType: {
2890
2789
  * Hautech API
2891
2790
  * OpenAPI spec version: 1.0
2892
2791
  */
2893
-
2894
- interface GPTV3FileSearchToolDto {
2895
- /** The type of the tool. */
2896
- type: GPTV3FileSearchToolDtoType;
2897
- /** The IDs of the vector stores to search. */
2898
- vector_store_ids: string[];
2899
- /** The maximum number of results to return. */
2900
- max_num_results?: number;
2901
- }
2792
+ /**
2793
+ * The role of the message sender.
2794
+ */
2795
+ type GPTV3ResponseOutputMessageDtoRole = typeof GPTV3ResponseOutputMessageDtoRole[keyof typeof GPTV3ResponseOutputMessageDtoRole];
2796
+ declare const GPTV3ResponseOutputMessageDtoRole: {
2797
+ readonly assistant: "assistant";
2798
+ };
2902
2799
 
2903
2800
  /**
2904
2801
  * Generated by orval v7.10.0 🍺
@@ -2907,12 +2804,12 @@ interface GPTV3FileSearchToolDto {
2907
2804
  * OpenAPI spec version: 1.0
2908
2805
  */
2909
2806
  /**
2910
- * A filter to apply to the search.
2911
- * @nullable
2807
+ * The type of content.
2912
2808
  */
2913
- type GPTV3FileSearchToolDtoFilters = {
2914
- [key: string]: unknown;
2915
- } | null;
2809
+ type GPTV3ResponseOutputTextDtoType = typeof GPTV3ResponseOutputTextDtoType[keyof typeof GPTV3ResponseOutputTextDtoType];
2810
+ declare const GPTV3ResponseOutputTextDtoType: {
2811
+ readonly output_text: "output_text";
2812
+ };
2916
2813
 
2917
2814
  /**
2918
2815
  * Generated by orval v7.10.0 🍺
@@ -2920,13 +2817,10 @@ type GPTV3FileSearchToolDtoFilters = {
2920
2817
  * Hautech API
2921
2818
  * OpenAPI spec version: 1.0
2922
2819
  */
2923
- /**
2924
- * Ranking options for the search.
2925
- * @nullable
2926
- */
2927
- type GPTV3FileSearchToolDtoRanking = {
2928
- [key: string]: unknown;
2929
- } | null;
2820
+ type GPTV3ResponseOutputTextFileCitationDtoType = typeof GPTV3ResponseOutputTextFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextFileCitationDtoType];
2821
+ declare const GPTV3ResponseOutputTextFileCitationDtoType: {
2822
+ readonly file_citation: "file_citation";
2823
+ };
2930
2824
 
2931
2825
  /**
2932
2826
  * Generated by orval v7.10.0 🍺
@@ -2934,11 +2828,15 @@ type GPTV3FileSearchToolDtoRanking = {
2934
2828
  * Hautech API
2935
2829
  * OpenAPI spec version: 1.0
2936
2830
  */
2937
- interface GPTV3FunctionCallDetailsDto {
2938
- /** The name of the function to call. */
2939
- name: string;
2940
- /** The arguments to pass to the function. */
2941
- arguments: string;
2831
+
2832
+ interface GPTV3ResponseOutputTextFileCitationDto {
2833
+ /** The ID of the file. */
2834
+ file_id: string;
2835
+ /** The filename of the file cited. */
2836
+ filename: string;
2837
+ /** The index of the file in the list of files. */
2838
+ index: number;
2839
+ type: GPTV3ResponseOutputTextFileCitationDtoType;
2942
2840
  }
2943
2841
 
2944
2842
  /**
@@ -2947,12 +2845,9 @@ interface GPTV3FunctionCallDetailsDto {
2947
2845
  * Hautech API
2948
2846
  * OpenAPI spec version: 1.0
2949
2847
  */
2950
- /**
2951
- * The type of tool call: function.
2952
- */
2953
- type GPTV3FunctionCallDtoType = typeof GPTV3FunctionCallDtoType[keyof typeof GPTV3FunctionCallDtoType];
2954
- declare const GPTV3FunctionCallDtoType: {
2955
- readonly function: "function";
2848
+ type GPTV3ResponseOutputTextURLCitationDtoType = typeof GPTV3ResponseOutputTextURLCitationDtoType[keyof typeof GPTV3ResponseOutputTextURLCitationDtoType];
2849
+ declare const GPTV3ResponseOutputTextURLCitationDtoType: {
2850
+ readonly url_citation: "url_citation";
2956
2851
  };
2957
2852
 
2958
2853
  /**
@@ -2962,13 +2857,16 @@ declare const GPTV3FunctionCallDtoType: {
2962
2857
  * OpenAPI spec version: 1.0
2963
2858
  */
2964
2859
 
2965
- interface GPTV3FunctionCallDto {
2966
- /** The unique identifier for this tool call. */
2967
- id: string;
2968
- /** The type of tool call: function. */
2969
- type: GPTV3FunctionCallDtoType;
2970
- /** The function call details. */
2971
- function: GPTV3FunctionCallDetailsDto;
2860
+ interface GPTV3ResponseOutputTextURLCitationDto {
2861
+ /** The index of the last character of the URL citation in the message. */
2862
+ end_index: number;
2863
+ /** The index of the first character of the URL citation in the message. */
2864
+ start_index: number;
2865
+ /** The title of the web resource. */
2866
+ title: string;
2867
+ type: GPTV3ResponseOutputTextURLCitationDtoType;
2868
+ /** The URL of the web resource. */
2869
+ url: string;
2972
2870
  }
2973
2871
 
2974
2872
  /**
@@ -2977,418 +2875,9 @@ interface GPTV3FunctionCallDto {
2977
2875
  * Hautech API
2978
2876
  * OpenAPI spec version: 1.0
2979
2877
  */
2980
- /**
2981
- * The type of the tool.
2982
- */
2983
- type GPTV3FunctionToolDtoType = typeof GPTV3FunctionToolDtoType[keyof typeof GPTV3FunctionToolDtoType];
2984
- declare const GPTV3FunctionToolDtoType: {
2985
- readonly function: "function";
2986
- };
2987
-
2988
- /**
2989
- * Generated by orval v7.10.0 🍺
2990
- * Do not edit manually.
2991
- * Hautech API
2992
- * OpenAPI spec version: 1.0
2993
- */
2994
- /**
2995
- * The parameters the functions accepts, described satisfies a JSON Schema object.
2996
- */
2997
- type GPTV3FunctionToolDtoParameters = {
2998
- [key: string]: unknown;
2999
- };
3000
-
3001
- /**
3002
- * Generated by orval v7.10.0 🍺
3003
- * Do not edit manually.
3004
- * Hautech API
3005
- * OpenAPI spec version: 1.0
3006
- */
3007
-
3008
- interface GPTV3FunctionToolDto {
3009
- /** The type of the tool. */
3010
- type: GPTV3FunctionToolDtoType;
3011
- /** The name of the function to call. */
3012
- name: string;
3013
- /** A description of what the function does. */
3014
- description?: string;
3015
- /** The parameters the functions accepts, described satisfies a JSON Schema object. */
3016
- parameters: GPTV3FunctionToolDtoParameters;
3017
- /** Whether to enable strict schema adherence when generating the function call. */
3018
- strict: boolean;
3019
- }
3020
-
3021
- /**
3022
- * Generated by orval v7.10.0 🍺
3023
- * Do not edit manually.
3024
- * Hautech API
3025
- * OpenAPI spec version: 1.0
3026
- */
3027
- /**
3028
- * The type of tool call: image_generation.
3029
- */
3030
- type GPTV3ImageGenerationCallDtoType = typeof GPTV3ImageGenerationCallDtoType[keyof typeof GPTV3ImageGenerationCallDtoType];
3031
- declare const GPTV3ImageGenerationCallDtoType: {
3032
- readonly image_generation: "image_generation";
3033
- };
3034
-
3035
- /**
3036
- * Generated by orval v7.10.0 🍺
3037
- * Do not edit manually.
3038
- * Hautech API
3039
- * OpenAPI spec version: 1.0
3040
- */
3041
-
3042
- interface GPTV3ImageGenerationCallDto {
3043
- /** The unique identifier for this tool call. */
3044
- id: string;
3045
- /** The type of tool call: image_generation. */
3046
- type: GPTV3ImageGenerationCallDtoType;
3047
- }
3048
-
3049
- /**
3050
- * Generated by orval v7.10.0 🍺
3051
- * Do not edit manually.
3052
- * Hautech API
3053
- * OpenAPI spec version: 1.0
3054
- */
3055
- /**
3056
- * The type of the image generation result. This is the FIRST output item when image_generation tool is called.
3057
- */
3058
- type GPTV3ImageGenerationResultDtoType = typeof GPTV3ImageGenerationResultDtoType[keyof typeof GPTV3ImageGenerationResultDtoType];
3059
- declare const GPTV3ImageGenerationResultDtoType: {
3060
- readonly image_generation_call: "image_generation_call";
3061
- };
3062
-
3063
- /**
3064
- * Generated by orval v7.10.0 🍺
3065
- * Do not edit manually.
3066
- * Hautech API
3067
- * OpenAPI spec version: 1.0
3068
- */
3069
- /**
3070
- * The status of the image generation call.
3071
- */
3072
- type GPTV3ImageGenerationResultDtoStatus = typeof GPTV3ImageGenerationResultDtoStatus[keyof typeof GPTV3ImageGenerationResultDtoStatus];
3073
- declare const GPTV3ImageGenerationResultDtoStatus: {
3074
- readonly completed: "completed";
3075
- readonly failed: "failed";
3076
- readonly pending: "pending";
3077
- };
3078
-
3079
- /**
3080
- * Generated by orval v7.10.0 🍺
3081
- * Do not edit manually.
3082
- * Hautech API
3083
- * OpenAPI spec version: 1.0
3084
- */
3085
- /**
3086
- * Additional metadata about the image generation.
3087
- */
3088
- type GPTV3ImageGenerationResultDtoMetadata = {
3089
- [key: string]: unknown;
3090
- };
3091
-
3092
- /**
3093
- * Generated by orval v7.10.0 🍺
3094
- * Do not edit manually.
3095
- * Hautech API
3096
- * OpenAPI spec version: 1.0
3097
- */
3098
-
3099
- interface GPTV3ImageGenerationResultDto {
3100
- /** The type of the image generation result. This is the FIRST output item when image_generation tool is called. */
3101
- type: GPTV3ImageGenerationResultDtoType;
3102
- /** The unique identifier for this image generation call. */
3103
- id: string;
3104
- /** The status of the image generation call. */
3105
- status: GPTV3ImageGenerationResultDtoStatus;
3106
- /** The generated image ID (when conversion is successful). */
3107
- imageId?: string;
3108
- /** The format of the generated image (e.g., "png", "jpeg"). */
3109
- format?: string;
3110
- /** The size of the generated image in bytes. */
3111
- size?: number;
3112
- /** Error message if the image generation failed. */
3113
- error?: string;
3114
- /** Additional metadata about the image generation. */
3115
- metadata?: GPTV3ImageGenerationResultDtoMetadata;
3116
- }
3117
-
3118
- /**
3119
- * Generated by orval v7.10.0 🍺
3120
- * Do not edit manually.
3121
- * Hautech API
3122
- * OpenAPI spec version: 1.0
3123
- */
3124
-
3125
- interface GPTV3ImageGenerationResultsDto {
3126
- /** Array of image generation results. */
3127
- results: GPTV3ImageGenerationResultDto[];
3128
- }
3129
-
3130
- /**
3131
- * Generated by orval v7.10.0 🍺
3132
- * Do not edit manually.
3133
- * Hautech API
3134
- * OpenAPI spec version: 1.0
3135
- */
3136
- /**
3137
- * The type of the tool.
3138
- */
3139
- type GPTV3ImageGenerationToolDtoType = typeof GPTV3ImageGenerationToolDtoType[keyof typeof GPTV3ImageGenerationToolDtoType];
3140
- declare const GPTV3ImageGenerationToolDtoType: {
3141
- readonly image_generation: "image_generation";
3142
- };
3143
-
3144
- /**
3145
- * Generated by orval v7.10.0 🍺
3146
- * Do not edit manually.
3147
- * Hautech API
3148
- * OpenAPI spec version: 1.0
3149
- */
3150
- /**
3151
- * The quality level for image generation.
3152
- */
3153
- type GPTV3ImageGenerationToolDtoQuality = typeof GPTV3ImageGenerationToolDtoQuality[keyof typeof GPTV3ImageGenerationToolDtoQuality];
3154
- declare const GPTV3ImageGenerationToolDtoQuality: {
3155
- readonly auto: "auto";
3156
- readonly low: "low";
3157
- readonly medium: "medium";
3158
- readonly high: "high";
3159
- };
3160
-
3161
- /**
3162
- * Generated by orval v7.10.0 🍺
3163
- * Do not edit manually.
3164
- * Hautech API
3165
- * OpenAPI spec version: 1.0
3166
- */
3167
- /**
3168
- * The size of the generated image.
3169
- */
3170
- type GPTV3ImageGenerationToolDtoSize = typeof GPTV3ImageGenerationToolDtoSize[keyof typeof GPTV3ImageGenerationToolDtoSize];
3171
- declare const GPTV3ImageGenerationToolDtoSize: {
3172
- readonly auto: "auto";
3173
- readonly '1024x1024': "1024x1024";
3174
- readonly '1536x1024': "1536x1024";
3175
- readonly '1024x1536': "1024x1536";
3176
- };
3177
-
3178
- /**
3179
- * Generated by orval v7.10.0 🍺
3180
- * Do not edit manually.
3181
- * Hautech API
3182
- * OpenAPI spec version: 1.0
3183
- */
3184
-
3185
- interface GPTV3ImageGenerationToolDto {
3186
- /** The type of the tool. */
3187
- type: GPTV3ImageGenerationToolDtoType;
3188
- /** The quality level for image generation. */
3189
- quality?: GPTV3ImageGenerationToolDtoQuality;
3190
- /** The size of the generated image. */
3191
- size?: GPTV3ImageGenerationToolDtoSize;
3192
- }
3193
-
3194
- /**
3195
- * Generated by orval v7.10.0 🍺
3196
- * Do not edit manually.
3197
- * Hautech API
3198
- * OpenAPI spec version: 1.0
3199
- */
3200
- /**
3201
- * ID of the model to use. See OpenAI docs for model endpoint compatibility.
3202
- */
3203
- type GPTV3InputModel = typeof GPTV3InputModel[keyof typeof GPTV3InputModel];
3204
- declare const GPTV3InputModel: {
3205
- readonly 'gpt-4o': "gpt-4o";
3206
- readonly 'gpt-5': "gpt-5";
3207
- readonly o3: "o3";
3208
- readonly 'o3-mini': "o3-mini";
3209
- readonly 'gpt-41': "gpt-4.1";
3210
- readonly 'gpt-41-mini': "gpt-4.1-mini";
3211
- readonly 'gpt-41-nano': "gpt-4.1-nano";
3212
- };
3213
-
3214
- /**
3215
- * Generated by orval v7.10.0 🍺
3216
- * Do not edit manually.
3217
- * Hautech API
3218
- * OpenAPI spec version: 1.0
3219
- */
3220
-
3221
- type GPTV3ResponseInputItemMessageContentItem = GPTV3TextInputDto | GPTV3ImageInputDto;
3222
-
3223
- /**
3224
- * Generated by orval v7.10.0 🍺
3225
- * Do not edit manually.
3226
- * Hautech API
3227
- * OpenAPI spec version: 1.0
3228
- */
3229
- /**
3230
- * The role of the message sender.
3231
- */
3232
- type GPTV3ResponseInputItemMessageRole = typeof GPTV3ResponseInputItemMessageRole[keyof typeof GPTV3ResponseInputItemMessageRole];
3233
- declare const GPTV3ResponseInputItemMessageRole: {
3234
- readonly user: "user";
3235
- readonly system: "system";
3236
- readonly developer: "developer";
3237
- };
3238
-
3239
- /**
3240
- * Generated by orval v7.10.0 🍺
3241
- * Do not edit manually.
3242
- * Hautech API
3243
- * OpenAPI spec version: 1.0
3244
- */
3245
- /**
3246
- * The type of the message input. Always message.
3247
- */
3248
- type GPTV3ResponseInputItemMessageType = typeof GPTV3ResponseInputItemMessageType[keyof typeof GPTV3ResponseInputItemMessageType];
3249
- declare const GPTV3ResponseInputItemMessageType: {
3250
- readonly message: "message";
3251
- };
3252
-
3253
- /**
3254
- * Generated by orval v7.10.0 🍺
3255
- * Do not edit manually.
3256
- * Hautech API
3257
- * OpenAPI spec version: 1.0
3258
- */
3259
- type GPTV3ResponseInputItemMessageStatus = typeof GPTV3ResponseInputItemMessageStatus[keyof typeof GPTV3ResponseInputItemMessageStatus];
3260
- declare const GPTV3ResponseInputItemMessageStatus: {
3261
- readonly in_progress: "in_progress";
3262
- readonly completed: "completed";
3263
- readonly incomplete: "incomplete";
3264
- };
3265
-
3266
- /**
3267
- * Generated by orval v7.10.0 🍺
3268
- * Do not edit manually.
3269
- * Hautech API
3270
- * OpenAPI spec version: 1.0
3271
- */
3272
-
3273
- interface GPTV3ResponseInputItemMessage {
3274
- /** A list of input items (text, image, file). */
3275
- content: GPTV3ResponseInputItemMessageContentItem[];
3276
- /** The role of the message sender. */
3277
- role: GPTV3ResponseInputItemMessageRole;
3278
- /** The type of the message input. Always message. */
3279
- type?: GPTV3ResponseInputItemMessageType;
3280
- status?: GPTV3ResponseInputItemMessageStatus;
3281
- }
3282
-
3283
- /**
3284
- * Generated by orval v7.10.0 🍺
3285
- * Do not edit manually.
3286
- * Hautech API
3287
- * OpenAPI spec version: 1.0
3288
- */
3289
- /**
3290
- * 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.
3291
- */
3292
- type GPTV3ResponseOutputMessageDtoType = typeof GPTV3ResponseOutputMessageDtoType[keyof typeof GPTV3ResponseOutputMessageDtoType];
3293
- declare const GPTV3ResponseOutputMessageDtoType: {
3294
- readonly message: "message";
3295
- };
3296
-
3297
- /**
3298
- * Generated by orval v7.10.0 🍺
3299
- * Do not edit manually.
3300
- * Hautech API
3301
- * OpenAPI spec version: 1.0
3302
- */
3303
- /**
3304
- * The role of the message sender.
3305
- */
3306
- type GPTV3ResponseOutputMessageDtoRole = typeof GPTV3ResponseOutputMessageDtoRole[keyof typeof GPTV3ResponseOutputMessageDtoRole];
3307
- declare const GPTV3ResponseOutputMessageDtoRole: {
3308
- readonly assistant: "assistant";
3309
- };
3310
-
3311
- /**
3312
- * Generated by orval v7.10.0 🍺
3313
- * Do not edit manually.
3314
- * Hautech API
3315
- * OpenAPI spec version: 1.0
3316
- */
3317
- /**
3318
- * The type of content.
3319
- */
3320
- type GPTV3ResponseOutputTextDtoType = typeof GPTV3ResponseOutputTextDtoType[keyof typeof GPTV3ResponseOutputTextDtoType];
3321
- declare const GPTV3ResponseOutputTextDtoType: {
3322
- readonly output_text: "output_text";
3323
- };
3324
-
3325
- /**
3326
- * Generated by orval v7.10.0 🍺
3327
- * Do not edit manually.
3328
- * Hautech API
3329
- * OpenAPI spec version: 1.0
3330
- */
3331
- type GPTV3ResponseOutputTextFileCitationDtoType = typeof GPTV3ResponseOutputTextFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextFileCitationDtoType];
3332
- declare const GPTV3ResponseOutputTextFileCitationDtoType: {
3333
- readonly file_citation: "file_citation";
3334
- };
3335
-
3336
- /**
3337
- * Generated by orval v7.10.0 🍺
3338
- * Do not edit manually.
3339
- * Hautech API
3340
- * OpenAPI spec version: 1.0
3341
- */
3342
-
3343
- interface GPTV3ResponseOutputTextFileCitationDto {
3344
- /** The ID of the file. */
3345
- file_id: string;
3346
- /** The filename of the file cited. */
3347
- filename: string;
3348
- /** The index of the file in the list of files. */
3349
- index: number;
3350
- type: GPTV3ResponseOutputTextFileCitationDtoType;
3351
- }
3352
-
3353
- /**
3354
- * Generated by orval v7.10.0 🍺
3355
- * Do not edit manually.
3356
- * Hautech API
3357
- * OpenAPI spec version: 1.0
3358
- */
3359
- type GPTV3ResponseOutputTextURLCitationDtoType = typeof GPTV3ResponseOutputTextURLCitationDtoType[keyof typeof GPTV3ResponseOutputTextURLCitationDtoType];
3360
- declare const GPTV3ResponseOutputTextURLCitationDtoType: {
3361
- readonly url_citation: "url_citation";
3362
- };
3363
-
3364
- /**
3365
- * Generated by orval v7.10.0 🍺
3366
- * Do not edit manually.
3367
- * Hautech API
3368
- * OpenAPI spec version: 1.0
3369
- */
3370
-
3371
- interface GPTV3ResponseOutputTextURLCitationDto {
3372
- /** The index of the last character of the URL citation in the message. */
3373
- end_index: number;
3374
- /** The index of the first character of the URL citation in the message. */
3375
- start_index: number;
3376
- /** The title of the web resource. */
3377
- title: string;
3378
- type: GPTV3ResponseOutputTextURLCitationDtoType;
3379
- /** The URL of the web resource. */
3380
- url: string;
3381
- }
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
- type GPTV3ResponseOutputTextContainerFileCitationDtoType = typeof GPTV3ResponseOutputTextContainerFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextContainerFileCitationDtoType];
3390
- declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
3391
- readonly container_file_citation: "container_file_citation";
2878
+ type GPTV3ResponseOutputTextContainerFileCitationDtoType = typeof GPTV3ResponseOutputTextContainerFileCitationDtoType[keyof typeof GPTV3ResponseOutputTextContainerFileCitationDtoType];
2879
+ declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
2880
+ readonly container_file_citation: "container_file_citation";
3392
2881
  };
3393
2882
 
3394
2883
  /**
@@ -3400,289 +2889,16 @@ declare const GPTV3ResponseOutputTextContainerFileCitationDtoType: {
3400
2889
 
3401
2890
  interface GPTV3ResponseOutputTextContainerFileCitationDto {
3402
2891
  /** The ID of the container file. */
3403
- container_id: string;
3404
- /** The index of the last character of the container file citation. */
3405
- end_index: number;
3406
- /** The ID of the file. */
3407
- file_id: string;
3408
- /** The filename of the container file cited. */
3409
- filename: string;
3410
- /** The index of the first character of the container file citation. */
3411
- start_index: number;
3412
- type: GPTV3ResponseOutputTextContainerFileCitationDtoType;
3413
- }
3414
-
3415
- /**
3416
- * Generated by orval v7.10.0 🍺
3417
- * Do not edit manually.
3418
- * Hautech API
3419
- * OpenAPI spec version: 1.0
3420
- */
3421
- type GPTV3ResponseOutputTextFilePathDtoType = typeof GPTV3ResponseOutputTextFilePathDtoType[keyof typeof GPTV3ResponseOutputTextFilePathDtoType];
3422
- declare const GPTV3ResponseOutputTextFilePathDtoType: {
3423
- readonly file_path: "file_path";
3424
- };
3425
-
3426
- /**
3427
- * Generated by orval v7.10.0 🍺
3428
- * Do not edit manually.
3429
- * Hautech API
3430
- * OpenAPI spec version: 1.0
3431
- */
3432
-
3433
- interface GPTV3ResponseOutputTextFilePathDto {
2892
+ container_id: string;
2893
+ /** The index of the last character of the container file citation. */
2894
+ end_index: number;
3434
2895
  /** The ID of the file. */
3435
2896
  file_id: string;
3436
- /** The index of the file in the list of files. */
3437
- index: number;
3438
- type: GPTV3ResponseOutputTextFilePathDtoType;
3439
- }
3440
-
3441
- /**
3442
- * Generated by orval v7.10.0 🍺
3443
- * Do not edit manually.
3444
- * Hautech API
3445
- * OpenAPI spec version: 1.0
3446
- */
3447
-
3448
- type GPTV3ResponseOutputTextDtoAnnotationsItem = GPTV3ResponseOutputTextFileCitationDto | GPTV3ResponseOutputTextURLCitationDto | GPTV3ResponseOutputTextContainerFileCitationDto | GPTV3ResponseOutputTextFilePathDto;
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
- interface GPTV3ResponseOutputTextLogprobTopLogprobDto {
3457
- token: string;
3458
- bytes: number[];
3459
- logprob: number;
3460
- }
3461
-
3462
- /**
3463
- * Generated by orval v7.10.0 🍺
3464
- * Do not edit manually.
3465
- * Hautech API
3466
- * OpenAPI spec version: 1.0
3467
- */
3468
-
3469
- interface GPTV3ResponseOutputTextLogprobDto {
3470
- token: string;
3471
- bytes: number[];
3472
- logprob: number;
3473
- top_logprobs: GPTV3ResponseOutputTextLogprobTopLogprobDto[];
3474
- }
3475
-
3476
- /**
3477
- * Generated by orval v7.10.0 🍺
3478
- * Do not edit manually.
3479
- * Hautech API
3480
- * OpenAPI spec version: 1.0
3481
- */
3482
-
3483
- interface GPTV3ResponseOutputTextDto {
3484
- /** The type of content. */
3485
- type: GPTV3ResponseOutputTextDtoType;
3486
- /** The text content. */
3487
- text: string;
3488
- /** Annotations attached to spans of the output text (citations, file paths, etc). */
3489
- annotations: GPTV3ResponseOutputTextDtoAnnotationsItem[];
3490
- /** Log probabilities for tokens (when requested). */
3491
- logprobs?: GPTV3ResponseOutputTextLogprobDto[];
3492
- }
3493
-
3494
- /**
3495
- * Generated by orval v7.10.0 🍺
3496
- * Do not edit manually.
3497
- * Hautech API
3498
- * OpenAPI spec version: 1.0
3499
- */
3500
- /**
3501
- * The type of content.
3502
- */
3503
- type GPTV3ResponseOutputRefusalDtoType = typeof GPTV3ResponseOutputRefusalDtoType[keyof typeof GPTV3ResponseOutputRefusalDtoType];
3504
- declare const GPTV3ResponseOutputRefusalDtoType: {
3505
- readonly refusal: "refusal";
3506
- };
3507
-
3508
- /**
3509
- * Generated by orval v7.10.0 🍺
3510
- * Do not edit manually.
3511
- * Hautech API
3512
- * OpenAPI spec version: 1.0
3513
- */
3514
-
3515
- interface GPTV3ResponseOutputRefusalDto {
3516
- /** The type of content. */
3517
- type: GPTV3ResponseOutputRefusalDtoType;
3518
- /** The refusal explanation from the model. */
3519
- refusal: string;
3520
- }
3521
-
3522
- /**
3523
- * Generated by orval v7.10.0 🍺
3524
- * Do not edit manually.
3525
- * Hautech API
3526
- * OpenAPI spec version: 1.0
3527
- */
3528
-
3529
- type GPTV3ResponseOutputMessageDtoContentItem = GPTV3ResponseOutputTextDto | GPTV3ResponseOutputRefusalDto;
3530
-
3531
- /**
3532
- * Generated by orval v7.10.0 🍺
3533
- * Do not edit manually.
3534
- * Hautech API
3535
- * OpenAPI spec version: 1.0
3536
- */
3537
- type GPTV3ResponseOutputMessageDtoStatus = {
3538
- [key: string]: unknown;
3539
- };
3540
-
3541
- /**
3542
- * Generated by orval v7.10.0 🍺
3543
- * Do not edit manually.
3544
- * Hautech API
3545
- * OpenAPI spec version: 1.0
3546
- */
3547
-
3548
- interface GPTV3ResponseOutputMessageDto {
3549
- /** The unique identifier for the message. */
3550
- id: string;
3551
- /** 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. */
3552
- type: GPTV3ResponseOutputMessageDtoType;
3553
- /** The role of the message sender. */
3554
- role: GPTV3ResponseOutputMessageDtoRole;
3555
- /** The content of the message with annotations and citations. */
3556
- content: GPTV3ResponseOutputMessageDtoContentItem[];
3557
- status: GPTV3ResponseOutputMessageDtoStatus;
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
- * The type of the file search result. This is the FIRST output item when file_search tool is called.
3568
- */
3569
- type GPTV3ResponseFileSearchToolCallDtoType = typeof GPTV3ResponseFileSearchToolCallDtoType[keyof typeof GPTV3ResponseFileSearchToolCallDtoType];
3570
- declare const GPTV3ResponseFileSearchToolCallDtoType: {
3571
- readonly file_search_call: "file_search_call";
3572
- };
3573
-
3574
- /**
3575
- * Generated by orval v7.10.0 🍺
3576
- * Do not edit manually.
3577
- * Hautech API
3578
- * OpenAPI spec version: 1.0
3579
- */
3580
- /**
3581
- * The status of the file search call.
3582
- */
3583
- type GPTV3ResponseFileSearchToolCallDtoStatus = typeof GPTV3ResponseFileSearchToolCallDtoStatus[keyof typeof GPTV3ResponseFileSearchToolCallDtoStatus];
3584
- declare const GPTV3ResponseFileSearchToolCallDtoStatus: {
3585
- readonly in_progress: "in_progress";
3586
- readonly searching: "searching";
3587
- readonly completed: "completed";
3588
- readonly incomplete: "incomplete";
3589
- readonly failed: "failed";
3590
- };
3591
-
3592
- /**
3593
- * Generated by orval v7.10.0 🍺
3594
- * Do not edit manually.
3595
- * Hautech API
3596
- * OpenAPI spec version: 1.0
3597
- */
3598
- /**
3599
- * Optional attributes map.
3600
- */
3601
- type GPTV3ResponseFileSearchToolCallResultDtoAttributes = {
3602
- [key: string]: unknown;
3603
- };
3604
-
3605
- /**
3606
- * Generated by orval v7.10.0 🍺
3607
- * Do not edit manually.
3608
- * Hautech API
3609
- * OpenAPI spec version: 1.0
3610
- */
3611
-
3612
- interface GPTV3ResponseFileSearchToolCallResultDto {
3613
- /** Optional attributes map. */
3614
- attributes: GPTV3ResponseFileSearchToolCallResultDtoAttributes;
3615
- /** The unique ID of the file. */
3616
- file_id?: string;
3617
- /** The name of the file. */
3618
- filename?: string;
3619
- /** The relevance score of the file. */
3620
- score?: number;
3621
- /** The text that was retrieved from the file. */
3622
- text?: string;
3623
- }
3624
-
3625
- /**
3626
- * Generated by orval v7.10.0 🍺
3627
- * Do not edit manually.
3628
- * Hautech API
3629
- * OpenAPI spec version: 1.0
3630
- */
3631
-
3632
- interface GPTV3ResponseFileSearchToolCallDto {
3633
- /** The type of the file search result. This is the FIRST output item when file_search tool is called. */
3634
- type: GPTV3ResponseFileSearchToolCallDtoType;
3635
- /** The unique identifier for this file search call. */
3636
- id: string;
3637
- /** The status of the file search call. */
3638
- status: GPTV3ResponseFileSearchToolCallDtoStatus;
3639
- /** The search queries used for the file search. */
3640
- queries: string[];
3641
- /**
3642
- * The search results from the file search. Can be null if no results found.
3643
- * @nullable
3644
- */
3645
- results?: GPTV3ResponseFileSearchToolCallResultDto[] | null;
3646
- }
3647
-
3648
- /**
3649
- * Generated by orval v7.10.0 🍺
3650
- * Do not edit manually.
3651
- * Hautech API
3652
- * OpenAPI spec version: 1.0
3653
- */
3654
- type GPTV3ResponseComputerToolCallClickDtoType = typeof GPTV3ResponseComputerToolCallClickDtoType[keyof typeof GPTV3ResponseComputerToolCallClickDtoType];
3655
- declare const GPTV3ResponseComputerToolCallClickDtoType: {
3656
- readonly click: "click";
3657
- };
3658
-
3659
- /**
3660
- * Generated by orval v7.10.0 🍺
3661
- * Do not edit manually.
3662
- * Hautech API
3663
- * OpenAPI spec version: 1.0
3664
- */
3665
- type GPTV3ResponseComputerToolCallClickDtoButton = typeof GPTV3ResponseComputerToolCallClickDtoButton[keyof typeof GPTV3ResponseComputerToolCallClickDtoButton];
3666
- declare const GPTV3ResponseComputerToolCallClickDtoButton: {
3667
- readonly left: "left";
3668
- readonly right: "right";
3669
- readonly wheel: "wheel";
3670
- readonly back: "back";
3671
- readonly forward: "forward";
3672
- };
3673
-
3674
- /**
3675
- * Generated by orval v7.10.0 🍺
3676
- * Do not edit manually.
3677
- * Hautech API
3678
- * OpenAPI spec version: 1.0
3679
- */
3680
-
3681
- interface GPTV3ResponseComputerToolCallClickDto {
3682
- type: GPTV3ResponseComputerToolCallClickDtoType;
3683
- button: GPTV3ResponseComputerToolCallClickDtoButton;
3684
- x: number;
3685
- y: number;
2897
+ /** The filename of the container file cited. */
2898
+ filename: string;
2899
+ /** The index of the first character of the container file citation. */
2900
+ start_index: number;
2901
+ type: GPTV3ResponseOutputTextContainerFileCitationDtoType;
3686
2902
  }
3687
2903
 
3688
2904
  /**
@@ -3691,9 +2907,9 @@ interface GPTV3ResponseComputerToolCallClickDto {
3691
2907
  * Hautech API
3692
2908
  * OpenAPI spec version: 1.0
3693
2909
  */
3694
- type GPTV3ResponseComputerToolCallDoubleClickDtoType = typeof GPTV3ResponseComputerToolCallDoubleClickDtoType[keyof typeof GPTV3ResponseComputerToolCallDoubleClickDtoType];
3695
- declare const GPTV3ResponseComputerToolCallDoubleClickDtoType: {
3696
- readonly double_click: "double_click";
2910
+ type GPTV3ResponseOutputTextFilePathDtoType = typeof GPTV3ResponseOutputTextFilePathDtoType[keyof typeof GPTV3ResponseOutputTextFilePathDtoType];
2911
+ declare const GPTV3ResponseOutputTextFilePathDtoType: {
2912
+ readonly file_path: "file_path";
3697
2913
  };
3698
2914
 
3699
2915
  /**
@@ -3703,10 +2919,12 @@ declare const GPTV3ResponseComputerToolCallDoubleClickDtoType: {
3703
2919
  * OpenAPI spec version: 1.0
3704
2920
  */
3705
2921
 
3706
- interface GPTV3ResponseComputerToolCallDoubleClickDto {
3707
- type: GPTV3ResponseComputerToolCallDoubleClickDtoType;
3708
- x: number;
3709
- y: number;
2922
+ interface GPTV3ResponseOutputTextFilePathDto {
2923
+ /** The ID of the file. */
2924
+ file_id: string;
2925
+ /** The index of the file in the list of files. */
2926
+ index: number;
2927
+ type: GPTV3ResponseOutputTextFilePathDtoType;
3710
2928
  }
3711
2929
 
3712
2930
  /**
@@ -3715,21 +2933,8 @@ interface GPTV3ResponseComputerToolCallDoubleClickDto {
3715
2933
  * Hautech API
3716
2934
  * OpenAPI spec version: 1.0
3717
2935
  */
3718
- type GPTV3ResponseComputerToolCallDragDtoType = typeof GPTV3ResponseComputerToolCallDragDtoType[keyof typeof GPTV3ResponseComputerToolCallDragDtoType];
3719
- declare const GPTV3ResponseComputerToolCallDragDtoType: {
3720
- readonly drag: "drag";
3721
- };
3722
2936
 
3723
- /**
3724
- * Generated by orval v7.10.0 🍺
3725
- * Do not edit manually.
3726
- * Hautech API
3727
- * OpenAPI spec version: 1.0
3728
- */
3729
- interface GPTV3ResponseComputerToolCallDragPathDto {
3730
- x: number;
3731
- y: number;
3732
- }
2937
+ type GPTV3ResponseOutputTextDtoAnnotationsItem = GPTV3ResponseOutputTextFileCitationDto | GPTV3ResponseOutputTextURLCitationDto | GPTV3ResponseOutputTextContainerFileCitationDto | GPTV3ResponseOutputTextFilePathDto;
3733
2938
 
3734
2939
  /**
3735
2940
  * Generated by orval v7.10.0 🍺
@@ -3737,23 +2942,12 @@ interface GPTV3ResponseComputerToolCallDragPathDto {
3737
2942
  * Hautech API
3738
2943
  * OpenAPI spec version: 1.0
3739
2944
  */
3740
-
3741
- interface GPTV3ResponseComputerToolCallDragDto {
3742
- type: GPTV3ResponseComputerToolCallDragDtoType;
3743
- path: GPTV3ResponseComputerToolCallDragPathDto[];
2945
+ interface GPTV3ResponseOutputTextLogprobTopLogprobDto {
2946
+ token: string;
2947
+ bytes: number[];
2948
+ logprob: number;
3744
2949
  }
3745
2950
 
3746
- /**
3747
- * Generated by orval v7.10.0 🍺
3748
- * Do not edit manually.
3749
- * Hautech API
3750
- * OpenAPI spec version: 1.0
3751
- */
3752
- type GPTV3ResponseComputerToolCallKeypressDtoType = typeof GPTV3ResponseComputerToolCallKeypressDtoType[keyof typeof GPTV3ResponseComputerToolCallKeypressDtoType];
3753
- declare const GPTV3ResponseComputerToolCallKeypressDtoType: {
3754
- readonly keypress: "keypress";
3755
- };
3756
-
3757
2951
  /**
3758
2952
  * Generated by orval v7.10.0 🍺
3759
2953
  * Do not edit manually.
@@ -3761,22 +2955,13 @@ declare const GPTV3ResponseComputerToolCallKeypressDtoType: {
3761
2955
  * OpenAPI spec version: 1.0
3762
2956
  */
3763
2957
 
3764
- interface GPTV3ResponseComputerToolCallKeypressDto {
3765
- type: GPTV3ResponseComputerToolCallKeypressDtoType;
3766
- keys: string[];
2958
+ interface GPTV3ResponseOutputTextLogprobDto {
2959
+ token: string;
2960
+ bytes: number[];
2961
+ logprob: number;
2962
+ top_logprobs: GPTV3ResponseOutputTextLogprobTopLogprobDto[];
3767
2963
  }
3768
2964
 
3769
- /**
3770
- * Generated by orval v7.10.0 🍺
3771
- * Do not edit manually.
3772
- * Hautech API
3773
- * OpenAPI spec version: 1.0
3774
- */
3775
- type GPTV3ResponseComputerToolCallMoveDtoType = typeof GPTV3ResponseComputerToolCallMoveDtoType[keyof typeof GPTV3ResponseComputerToolCallMoveDtoType];
3776
- declare const GPTV3ResponseComputerToolCallMoveDtoType: {
3777
- readonly move: "move";
3778
- };
3779
-
3780
2965
  /**
3781
2966
  * Generated by orval v7.10.0 🍺
3782
2967
  * Do not edit manually.
@@ -3784,10 +2969,15 @@ declare const GPTV3ResponseComputerToolCallMoveDtoType: {
3784
2969
  * OpenAPI spec version: 1.0
3785
2970
  */
3786
2971
 
3787
- interface GPTV3ResponseComputerToolCallMoveDto {
3788
- type: GPTV3ResponseComputerToolCallMoveDtoType;
3789
- x: number;
3790
- y: number;
2972
+ interface GPTV3ResponseOutputTextDto {
2973
+ /** The type of content. */
2974
+ type: GPTV3ResponseOutputTextDtoType;
2975
+ /** The text content. */
2976
+ text: string;
2977
+ /** Annotations attached to spans of the output text (citations, file paths, etc). */
2978
+ annotations: GPTV3ResponseOutputTextDtoAnnotationsItem[];
2979
+ /** Log probabilities for tokens (when requested). */
2980
+ logprobs?: GPTV3ResponseOutputTextLogprobDto[];
3791
2981
  }
3792
2982
 
3793
2983
  /**
@@ -3796,31 +2986,12 @@ interface GPTV3ResponseComputerToolCallMoveDto {
3796
2986
  * Hautech API
3797
2987
  * OpenAPI spec version: 1.0
3798
2988
  */
3799
- type GPTV3ResponseComputerToolCallScreenshotDtoType = typeof GPTV3ResponseComputerToolCallScreenshotDtoType[keyof typeof GPTV3ResponseComputerToolCallScreenshotDtoType];
3800
- declare const GPTV3ResponseComputerToolCallScreenshotDtoType: {
3801
- readonly screenshot: "screenshot";
3802
- };
3803
-
3804
- /**
3805
- * Generated by orval v7.10.0 🍺
3806
- * Do not edit manually.
3807
- * Hautech API
3808
- * OpenAPI spec version: 1.0
3809
- */
3810
-
3811
- interface GPTV3ResponseComputerToolCallScreenshotDto {
3812
- type: GPTV3ResponseComputerToolCallScreenshotDtoType;
3813
- }
3814
-
3815
2989
  /**
3816
- * Generated by orval v7.10.0 🍺
3817
- * Do not edit manually.
3818
- * Hautech API
3819
- * OpenAPI spec version: 1.0
2990
+ * The type of content.
3820
2991
  */
3821
- type GPTV3ResponseComputerToolCallScrollDtoType = typeof GPTV3ResponseComputerToolCallScrollDtoType[keyof typeof GPTV3ResponseComputerToolCallScrollDtoType];
3822
- declare const GPTV3ResponseComputerToolCallScrollDtoType: {
3823
- readonly scroll: "scroll";
2992
+ type GPTV3ResponseOutputRefusalDtoType = typeof GPTV3ResponseOutputRefusalDtoType[keyof typeof GPTV3ResponseOutputRefusalDtoType];
2993
+ declare const GPTV3ResponseOutputRefusalDtoType: {
2994
+ readonly refusal: "refusal";
3824
2995
  };
3825
2996
 
3826
2997
  /**
@@ -3830,25 +3001,13 @@ declare const GPTV3ResponseComputerToolCallScrollDtoType: {
3830
3001
  * OpenAPI spec version: 1.0
3831
3002
  */
3832
3003
 
3833
- interface GPTV3ResponseComputerToolCallScrollDto {
3834
- type: GPTV3ResponseComputerToolCallScrollDtoType;
3835
- scroll_x: number;
3836
- scroll_y: number;
3837
- x: number;
3838
- y: number;
3004
+ interface GPTV3ResponseOutputRefusalDto {
3005
+ /** The type of content. */
3006
+ type: GPTV3ResponseOutputRefusalDtoType;
3007
+ /** The refusal explanation from the model. */
3008
+ refusal: string;
3839
3009
  }
3840
3010
 
3841
- /**
3842
- * Generated by orval v7.10.0 🍺
3843
- * Do not edit manually.
3844
- * Hautech API
3845
- * OpenAPI spec version: 1.0
3846
- */
3847
- type GPTV3ResponseComputerToolCallTypeDtoType = typeof GPTV3ResponseComputerToolCallTypeDtoType[keyof typeof GPTV3ResponseComputerToolCallTypeDtoType];
3848
- declare const GPTV3ResponseComputerToolCallTypeDtoType: {
3849
- readonly type: "type";
3850
- };
3851
-
3852
3011
  /**
3853
3012
  * Generated by orval v7.10.0 🍺
3854
3013
  * Do not edit manually.
@@ -3856,10 +3015,7 @@ declare const GPTV3ResponseComputerToolCallTypeDtoType: {
3856
3015
  * OpenAPI spec version: 1.0
3857
3016
  */
3858
3017
 
3859
- interface GPTV3ResponseComputerToolCallTypeDto {
3860
- type: GPTV3ResponseComputerToolCallTypeDtoType;
3861
- text: string;
3862
- }
3018
+ type GPTV3ResponseOutputMessageDtoContentItem = GPTV3ResponseOutputTextDto | GPTV3ResponseOutputRefusalDto;
3863
3019
 
3864
3020
  /**
3865
3021
  * Generated by orval v7.10.0 🍺
@@ -3867,9 +3023,8 @@ interface GPTV3ResponseComputerToolCallTypeDto {
3867
3023
  * Hautech API
3868
3024
  * OpenAPI spec version: 1.0
3869
3025
  */
3870
- type GPTV3ResponseComputerToolCallWaitDtoType = typeof GPTV3ResponseComputerToolCallWaitDtoType[keyof typeof GPTV3ResponseComputerToolCallWaitDtoType];
3871
- declare const GPTV3ResponseComputerToolCallWaitDtoType: {
3872
- readonly wait: "wait";
3026
+ type GPTV3ResponseOutputMessageDtoStatus = {
3027
+ [key: string]: unknown;
3873
3028
  };
3874
3029
 
3875
3030
  /**
@@ -3879,8 +3034,16 @@ declare const GPTV3ResponseComputerToolCallWaitDtoType: {
3879
3034
  * OpenAPI spec version: 1.0
3880
3035
  */
3881
3036
 
3882
- interface GPTV3ResponseComputerToolCallWaitDto {
3883
- type: GPTV3ResponseComputerToolCallWaitDtoType;
3037
+ interface GPTV3ResponseOutputMessageDto {
3038
+ /** The unique identifier for the message. */
3039
+ id: string;
3040
+ /** 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. */
3041
+ type: GPTV3ResponseOutputMessageDtoType;
3042
+ /** The role of the message sender. */
3043
+ role: GPTV3ResponseOutputMessageDtoRole;
3044
+ /** The content of the message with annotations and citations. */
3045
+ content: GPTV3ResponseOutputMessageDtoContentItem[];
3046
+ status: GPTV3ResponseOutputMessageDtoStatus;
3884
3047
  }
3885
3048
 
3886
3049
  /**
@@ -3889,11 +3052,13 @@ interface GPTV3ResponseComputerToolCallWaitDto {
3889
3052
  * Hautech API
3890
3053
  * OpenAPI spec version: 1.0
3891
3054
  */
3892
-
3893
3055
  /**
3894
- * The action requested for the computer call.
3056
+ * The type of the file search result. This is the FIRST output item when file_search tool is called.
3895
3057
  */
3896
- type GPTV3ResponseComputerToolCallDtoAction = GPTV3ResponseComputerToolCallClickDto | GPTV3ResponseComputerToolCallDoubleClickDto | GPTV3ResponseComputerToolCallDragDto | GPTV3ResponseComputerToolCallKeypressDto | GPTV3ResponseComputerToolCallMoveDto | GPTV3ResponseComputerToolCallScreenshotDto | GPTV3ResponseComputerToolCallScrollDto | GPTV3ResponseComputerToolCallTypeDto | GPTV3ResponseComputerToolCallWaitDto;
3058
+ type GPTV3ResponseFileSearchToolCallDtoType = typeof GPTV3ResponseFileSearchToolCallDtoType[keyof typeof GPTV3ResponseFileSearchToolCallDtoType];
3059
+ declare const GPTV3ResponseFileSearchToolCallDtoType: {
3060
+ readonly file_search_call: "file_search_call";
3061
+ };
3897
3062
 
3898
3063
  /**
3899
3064
  * Generated by orval v7.10.0 🍺
@@ -3901,23 +3066,16 @@ type GPTV3ResponseComputerToolCallDtoAction = GPTV3ResponseComputerToolCallClick
3901
3066
  * Hautech API
3902
3067
  * OpenAPI spec version: 1.0
3903
3068
  */
3904
- interface GPTV3ResponseComputerToolCallPendingSafetyCheckDto {
3905
- id: string;
3906
- code: string;
3907
- message: string;
3908
- }
3909
-
3910
3069
  /**
3911
- * Generated by orval v7.10.0 🍺
3912
- * Do not edit manually.
3913
- * Hautech API
3914
- * OpenAPI spec version: 1.0
3070
+ * The status of the file search call.
3915
3071
  */
3916
- type GPTV3ResponseComputerToolCallDtoStatus = typeof GPTV3ResponseComputerToolCallDtoStatus[keyof typeof GPTV3ResponseComputerToolCallDtoStatus];
3917
- declare const GPTV3ResponseComputerToolCallDtoStatus: {
3072
+ type GPTV3ResponseFileSearchToolCallDtoStatus = typeof GPTV3ResponseFileSearchToolCallDtoStatus[keyof typeof GPTV3ResponseFileSearchToolCallDtoStatus];
3073
+ declare const GPTV3ResponseFileSearchToolCallDtoStatus: {
3918
3074
  readonly in_progress: "in_progress";
3075
+ readonly searching: "searching";
3919
3076
  readonly completed: "completed";
3920
3077
  readonly incomplete: "incomplete";
3078
+ readonly failed: "failed";
3921
3079
  };
3922
3080
 
3923
3081
  /**
@@ -3926,9 +3084,11 @@ declare const GPTV3ResponseComputerToolCallDtoStatus: {
3926
3084
  * Hautech API
3927
3085
  * OpenAPI spec version: 1.0
3928
3086
  */
3929
- type GPTV3ResponseComputerToolCallDtoType = typeof GPTV3ResponseComputerToolCallDtoType[keyof typeof GPTV3ResponseComputerToolCallDtoType];
3930
- declare const GPTV3ResponseComputerToolCallDtoType: {
3931
- readonly computer_call: "computer_call";
3087
+ /**
3088
+ * Optional attributes map.
3089
+ */
3090
+ type GPTV3ResponseFileSearchToolCallResultDtoAttributes = {
3091
+ [key: string]: unknown;
3932
3092
  };
3933
3093
 
3934
3094
  /**
@@ -3938,17 +3098,17 @@ declare const GPTV3ResponseComputerToolCallDtoType: {
3938
3098
  * OpenAPI spec version: 1.0
3939
3099
  */
3940
3100
 
3941
- interface GPTV3ResponseComputerToolCallDto {
3942
- /** The unique ID of the computer call. */
3943
- id: string;
3944
- /** The action requested for the computer call. */
3945
- action: GPTV3ResponseComputerToolCallDtoAction;
3946
- /** The ID of the tool call. */
3947
- call_id: string;
3948
- /** Pending safety checks for the computer call. */
3949
- pending_safety_checks: GPTV3ResponseComputerToolCallPendingSafetyCheckDto[];
3950
- status: GPTV3ResponseComputerToolCallDtoStatus;
3951
- type: GPTV3ResponseComputerToolCallDtoType;
3101
+ interface GPTV3ResponseFileSearchToolCallResultDto {
3102
+ /** Optional attributes map. */
3103
+ attributes: GPTV3ResponseFileSearchToolCallResultDtoAttributes;
3104
+ /** The unique ID of the file. */
3105
+ file_id?: string;
3106
+ /** The name of the file. */
3107
+ filename?: string;
3108
+ /** The relevance score of the file. */
3109
+ score?: number;
3110
+ /** The text that was retrieved from the file. */
3111
+ text?: string;
3952
3112
  }
3953
3113
 
3954
3114
  /**
@@ -3957,10 +3117,22 @@ interface GPTV3ResponseComputerToolCallDto {
3957
3117
  * Hautech API
3958
3118
  * OpenAPI spec version: 1.0
3959
3119
  */
3960
- type GPTV3ResponseInputComputerCallOutputScreenshotDtoType = typeof GPTV3ResponseInputComputerCallOutputScreenshotDtoType[keyof typeof GPTV3ResponseInputComputerCallOutputScreenshotDtoType];
3961
- declare const GPTV3ResponseInputComputerCallOutputScreenshotDtoType: {
3962
- readonly computer_screenshot: "computer_screenshot";
3963
- };
3120
+
3121
+ interface GPTV3ResponseFileSearchToolCallDto {
3122
+ /** The type of the file search result. This is the FIRST output item when file_search tool is called. */
3123
+ type: GPTV3ResponseFileSearchToolCallDtoType;
3124
+ /** The unique identifier for this file search call. */
3125
+ id: string;
3126
+ /** The status of the file search call. */
3127
+ status: GPTV3ResponseFileSearchToolCallDtoStatus;
3128
+ /** The search queries used for the file search. */
3129
+ queries: string[];
3130
+ /**
3131
+ * The search results from the file search. Can be null if no results found.
3132
+ * @nullable
3133
+ */
3134
+ results?: GPTV3ResponseFileSearchToolCallResultDto[] | null;
3135
+ }
3964
3136
 
3965
3137
  /**
3966
3138
  * Generated by orval v7.10.0 🍺
@@ -3968,12 +3140,10 @@ declare const GPTV3ResponseInputComputerCallOutputScreenshotDtoType: {
3968
3140
  * Hautech API
3969
3141
  * OpenAPI spec version: 1.0
3970
3142
  */
3971
-
3972
- interface GPTV3ResponseInputComputerCallOutputScreenshotDto {
3973
- type: GPTV3ResponseInputComputerCallOutputScreenshotDtoType;
3974
- file_id?: string;
3975
- image_url?: string;
3976
- }
3143
+ type GPTV3ResponseComputerToolCallClickDtoType = typeof GPTV3ResponseComputerToolCallClickDtoType[keyof typeof GPTV3ResponseComputerToolCallClickDtoType];
3144
+ declare const GPTV3ResponseComputerToolCallClickDtoType: {
3145
+ readonly click: "click";
3146
+ };
3977
3147
 
3978
3148
  /**
3979
3149
  * Generated by orval v7.10.0 🍺
@@ -3981,9 +3151,13 @@ interface GPTV3ResponseInputComputerCallOutputScreenshotDto {
3981
3151
  * Hautech API
3982
3152
  * OpenAPI spec version: 1.0
3983
3153
  */
3984
- type GPTV3ResponseInputComputerCallOutputDtoType = typeof GPTV3ResponseInputComputerCallOutputDtoType[keyof typeof GPTV3ResponseInputComputerCallOutputDtoType];
3985
- declare const GPTV3ResponseInputComputerCallOutputDtoType: {
3986
- readonly computer_call_output: "computer_call_output";
3154
+ type GPTV3ResponseComputerToolCallClickDtoButton = typeof GPTV3ResponseComputerToolCallClickDtoButton[keyof typeof GPTV3ResponseComputerToolCallClickDtoButton];
3155
+ declare const GPTV3ResponseComputerToolCallClickDtoButton: {
3156
+ readonly left: "left";
3157
+ readonly right: "right";
3158
+ readonly wheel: "wheel";
3159
+ readonly back: "back";
3160
+ readonly forward: "forward";
3987
3161
  };
3988
3162
 
3989
3163
  /**
@@ -3992,12 +3166,12 @@ declare const GPTV3ResponseInputComputerCallOutputDtoType: {
3992
3166
  * Hautech API
3993
3167
  * OpenAPI spec version: 1.0
3994
3168
  */
3995
- interface GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto {
3996
- id: string;
3997
- /** @nullable */
3998
- code?: string | null;
3999
- /** @nullable */
4000
- message?: string | null;
3169
+
3170
+ interface GPTV3ResponseComputerToolCallClickDto {
3171
+ type: GPTV3ResponseComputerToolCallClickDtoType;
3172
+ button: GPTV3ResponseComputerToolCallClickDtoButton;
3173
+ x: number;
3174
+ y: number;
4001
3175
  }
4002
3176
 
4003
3177
  /**
@@ -4006,11 +3180,9 @@ interface GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto {
4006
3180
  * Hautech API
4007
3181
  * OpenAPI spec version: 1.0
4008
3182
  */
4009
- type GPTV3ResponseInputComputerCallOutputDtoStatus = typeof GPTV3ResponseInputComputerCallOutputDtoStatus[keyof typeof GPTV3ResponseInputComputerCallOutputDtoStatus];
4010
- declare const GPTV3ResponseInputComputerCallOutputDtoStatus: {
4011
- readonly in_progress: "in_progress";
4012
- readonly completed: "completed";
4013
- readonly incomplete: "incomplete";
3183
+ type GPTV3ResponseComputerToolCallDoubleClickDtoType = typeof GPTV3ResponseComputerToolCallDoubleClickDtoType[keyof typeof GPTV3ResponseComputerToolCallDoubleClickDtoType];
3184
+ declare const GPTV3ResponseComputerToolCallDoubleClickDtoType: {
3185
+ readonly double_click: "double_click";
4014
3186
  };
4015
3187
 
4016
3188
  /**
@@ -4020,15 +3192,10 @@ declare const GPTV3ResponseInputComputerCallOutputDtoStatus: {
4020
3192
  * OpenAPI spec version: 1.0
4021
3193
  */
4022
3194
 
4023
- interface GPTV3ResponseInputComputerCallOutputDto {
4024
- call_id: string;
4025
- output: GPTV3ResponseInputComputerCallOutputScreenshotDto;
4026
- type: GPTV3ResponseInputComputerCallOutputDtoType;
4027
- /** @nullable */
4028
- id?: string | null;
4029
- /** @nullable */
4030
- acknowledged_safety_checks?: GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto[] | null;
4031
- status?: GPTV3ResponseInputComputerCallOutputDtoStatus;
3195
+ interface GPTV3ResponseComputerToolCallDoubleClickDto {
3196
+ type: GPTV3ResponseComputerToolCallDoubleClickDtoType;
3197
+ x: number;
3198
+ y: number;
4032
3199
  }
4033
3200
 
4034
3201
  /**
@@ -4037,12 +3204,9 @@ interface GPTV3ResponseInputComputerCallOutputDto {
4037
3204
  * Hautech API
4038
3205
  * OpenAPI spec version: 1.0
4039
3206
  */
4040
- /**
4041
- * The type of the web search result. This is the FIRST output item when web_search tool is called.
4042
- */
4043
- type GPTV3ResponseFunctionWebSearchDtoType = typeof GPTV3ResponseFunctionWebSearchDtoType[keyof typeof GPTV3ResponseFunctionWebSearchDtoType];
4044
- declare const GPTV3ResponseFunctionWebSearchDtoType: {
4045
- readonly web_search_call: "web_search_call";
3207
+ type GPTV3ResponseComputerToolCallDragDtoType = typeof GPTV3ResponseComputerToolCallDragDtoType[keyof typeof GPTV3ResponseComputerToolCallDragDtoType];
3208
+ declare const GPTV3ResponseComputerToolCallDragDtoType: {
3209
+ readonly drag: "drag";
4046
3210
  };
4047
3211
 
4048
3212
  /**
@@ -4051,16 +3215,10 @@ declare const GPTV3ResponseFunctionWebSearchDtoType: {
4051
3215
  * Hautech API
4052
3216
  * OpenAPI spec version: 1.0
4053
3217
  */
4054
- /**
4055
- * The status of the web search call.
4056
- */
4057
- type GPTV3ResponseFunctionWebSearchDtoStatus = typeof GPTV3ResponseFunctionWebSearchDtoStatus[keyof typeof GPTV3ResponseFunctionWebSearchDtoStatus];
4058
- declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
4059
- readonly in_progress: "in_progress";
4060
- readonly searching: "searching";
4061
- readonly completed: "completed";
4062
- readonly failed: "failed";
4063
- };
3218
+ interface GPTV3ResponseComputerToolCallDragPathDto {
3219
+ x: number;
3220
+ y: number;
3221
+ }
4064
3222
 
4065
3223
  /**
4066
3224
  * Generated by orval v7.10.0 🍺
@@ -4069,13 +3227,9 @@ declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
4069
3227
  * OpenAPI spec version: 1.0
4070
3228
  */
4071
3229
 
4072
- interface GPTV3ResponseFunctionWebSearchDto {
4073
- /** The type of the web search result. This is the FIRST output item when web_search tool is called. */
4074
- type: GPTV3ResponseFunctionWebSearchDtoType;
4075
- /** The unique identifier for this web search call. */
4076
- id: string;
4077
- /** The status of the web search call. */
4078
- status: GPTV3ResponseFunctionWebSearchDtoStatus;
3230
+ interface GPTV3ResponseComputerToolCallDragDto {
3231
+ type: GPTV3ResponseComputerToolCallDragDtoType;
3232
+ path: GPTV3ResponseComputerToolCallDragPathDto[];
4079
3233
  }
4080
3234
 
4081
3235
  /**
@@ -4084,12 +3238,9 @@ interface GPTV3ResponseFunctionWebSearchDto {
4084
3238
  * Hautech API
4085
3239
  * OpenAPI spec version: 1.0
4086
3240
  */
4087
- /**
4088
- * The type of the tool call.
4089
- */
4090
- type GPTV3ResponseFunctionToolCallDtoType = typeof GPTV3ResponseFunctionToolCallDtoType[keyof typeof GPTV3ResponseFunctionToolCallDtoType];
4091
- declare const GPTV3ResponseFunctionToolCallDtoType: {
4092
- readonly function_call: "function_call";
3241
+ type GPTV3ResponseComputerToolCallKeypressDtoType = typeof GPTV3ResponseComputerToolCallKeypressDtoType[keyof typeof GPTV3ResponseComputerToolCallKeypressDtoType];
3242
+ declare const GPTV3ResponseComputerToolCallKeypressDtoType: {
3243
+ readonly keypress: "keypress";
4093
3244
  };
4094
3245
 
4095
3246
  /**
@@ -4098,15 +3249,11 @@ declare const GPTV3ResponseFunctionToolCallDtoType: {
4098
3249
  * Hautech API
4099
3250
  * OpenAPI spec version: 1.0
4100
3251
  */
4101
- /**
4102
- * The status of the function call.
4103
- */
4104
- type GPTV3ResponseFunctionToolCallDtoStatus = typeof GPTV3ResponseFunctionToolCallDtoStatus[keyof typeof GPTV3ResponseFunctionToolCallDtoStatus];
4105
- declare const GPTV3ResponseFunctionToolCallDtoStatus: {
4106
- readonly in_progress: "in_progress";
4107
- readonly completed: "completed";
4108
- readonly incomplete: "incomplete";
4109
- };
3252
+
3253
+ interface GPTV3ResponseComputerToolCallKeypressDto {
3254
+ type: GPTV3ResponseComputerToolCallKeypressDtoType;
3255
+ keys: string[];
3256
+ }
4110
3257
 
4111
3258
  /**
4112
3259
  * Generated by orval v7.10.0 🍺
@@ -4114,21 +3261,10 @@ declare const GPTV3ResponseFunctionToolCallDtoStatus: {
4114
3261
  * Hautech API
4115
3262
  * OpenAPI spec version: 1.0
4116
3263
  */
4117
-
4118
- interface GPTV3ResponseFunctionToolCallDto {
4119
- /** The unique identifier for this function tool call. */
4120
- id?: string;
4121
- /** The type of the tool call. */
4122
- type: GPTV3ResponseFunctionToolCallDtoType;
4123
- /** The name of the function to run. */
4124
- name: string;
4125
- /** The unique ID of the function tool call generated by the model. */
4126
- call_id: string;
4127
- /** A JSON string of the arguments passed to the function. */
4128
- arguments: string;
4129
- /** The status of the function call. */
4130
- status?: GPTV3ResponseFunctionToolCallDtoStatus;
4131
- }
3264
+ type GPTV3ResponseComputerToolCallMoveDtoType = typeof GPTV3ResponseComputerToolCallMoveDtoType[keyof typeof GPTV3ResponseComputerToolCallMoveDtoType];
3265
+ declare const GPTV3ResponseComputerToolCallMoveDtoType: {
3266
+ readonly move: "move";
3267
+ };
4132
3268
 
4133
3269
  /**
4134
3270
  * Generated by orval v7.10.0 🍺
@@ -4136,10 +3272,12 @@ interface GPTV3ResponseFunctionToolCallDto {
4136
3272
  * Hautech API
4137
3273
  * OpenAPI spec version: 1.0
4138
3274
  */
4139
- type GPTV3ResponseInputFunctionCallOutputDtoType = typeof GPTV3ResponseInputFunctionCallOutputDtoType[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoType];
4140
- declare const GPTV3ResponseInputFunctionCallOutputDtoType: {
4141
- readonly function_call_output: "function_call_output";
4142
- };
3275
+
3276
+ interface GPTV3ResponseComputerToolCallMoveDto {
3277
+ type: GPTV3ResponseComputerToolCallMoveDtoType;
3278
+ x: number;
3279
+ y: number;
3280
+ }
4143
3281
 
4144
3282
  /**
4145
3283
  * Generated by orval v7.10.0 🍺
@@ -4147,11 +3285,9 @@ declare const GPTV3ResponseInputFunctionCallOutputDtoType: {
4147
3285
  * Hautech API
4148
3286
  * OpenAPI spec version: 1.0
4149
3287
  */
4150
- type GPTV3ResponseInputFunctionCallOutputDtoStatus = typeof GPTV3ResponseInputFunctionCallOutputDtoStatus[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoStatus];
4151
- declare const GPTV3ResponseInputFunctionCallOutputDtoStatus: {
4152
- readonly in_progress: "in_progress";
4153
- readonly completed: "completed";
4154
- readonly incomplete: "incomplete";
3288
+ type GPTV3ResponseComputerToolCallScreenshotDtoType = typeof GPTV3ResponseComputerToolCallScreenshotDtoType[keyof typeof GPTV3ResponseComputerToolCallScreenshotDtoType];
3289
+ declare const GPTV3ResponseComputerToolCallScreenshotDtoType: {
3290
+ readonly screenshot: "screenshot";
4155
3291
  };
4156
3292
 
4157
3293
  /**
@@ -4161,14 +3297,8 @@ declare const GPTV3ResponseInputFunctionCallOutputDtoStatus: {
4161
3297
  * OpenAPI spec version: 1.0
4162
3298
  */
4163
3299
 
4164
- interface GPTV3ResponseInputFunctionCallOutputDto {
4165
- call_id: string;
4166
- /** JSON string result from your function. */
4167
- output: string;
4168
- type: GPTV3ResponseInputFunctionCallOutputDtoType;
4169
- /** @nullable */
4170
- id?: string | null;
4171
- status?: GPTV3ResponseInputFunctionCallOutputDtoStatus;
3300
+ interface GPTV3ResponseComputerToolCallScreenshotDto {
3301
+ type: GPTV3ResponseComputerToolCallScreenshotDtoType;
4172
3302
  }
4173
3303
 
4174
3304
  /**
@@ -4177,9 +3307,9 @@ interface GPTV3ResponseInputFunctionCallOutputDto {
4177
3307
  * Hautech API
4178
3308
  * OpenAPI spec version: 1.0
4179
3309
  */
4180
- type GPTV3ResponseReasoningItemSummaryDtoType = typeof GPTV3ResponseReasoningItemSummaryDtoType[keyof typeof GPTV3ResponseReasoningItemSummaryDtoType];
4181
- declare const GPTV3ResponseReasoningItemSummaryDtoType: {
4182
- readonly summary_text: "summary_text";
3310
+ type GPTV3ResponseComputerToolCallScrollDtoType = typeof GPTV3ResponseComputerToolCallScrollDtoType[keyof typeof GPTV3ResponseComputerToolCallScrollDtoType];
3311
+ declare const GPTV3ResponseComputerToolCallScrollDtoType: {
3312
+ readonly scroll: "scroll";
4183
3313
  };
4184
3314
 
4185
3315
  /**
@@ -4189,9 +3319,12 @@ declare const GPTV3ResponseReasoningItemSummaryDtoType: {
4189
3319
  * OpenAPI spec version: 1.0
4190
3320
  */
4191
3321
 
4192
- interface GPTV3ResponseReasoningItemSummaryDto {
4193
- type: GPTV3ResponseReasoningItemSummaryDtoType;
4194
- text: string;
3322
+ interface GPTV3ResponseComputerToolCallScrollDto {
3323
+ type: GPTV3ResponseComputerToolCallScrollDtoType;
3324
+ scroll_x: number;
3325
+ scroll_y: number;
3326
+ x: number;
3327
+ y: number;
4195
3328
  }
4196
3329
 
4197
3330
  /**
@@ -4200,22 +3333,9 @@ interface GPTV3ResponseReasoningItemSummaryDto {
4200
3333
  * Hautech API
4201
3334
  * OpenAPI spec version: 1.0
4202
3335
  */
4203
- type GPTV3ResponseReasoningItemDtoType = typeof GPTV3ResponseReasoningItemDtoType[keyof typeof GPTV3ResponseReasoningItemDtoType];
4204
- declare const GPTV3ResponseReasoningItemDtoType: {
4205
- readonly reasoning: "reasoning";
4206
- };
4207
-
4208
- /**
4209
- * Generated by orval v7.10.0 🍺
4210
- * Do not edit manually.
4211
- * Hautech API
4212
- * OpenAPI spec version: 1.0
4213
- */
4214
- type GPTV3ResponseReasoningItemDtoStatus = typeof GPTV3ResponseReasoningItemDtoStatus[keyof typeof GPTV3ResponseReasoningItemDtoStatus];
4215
- declare const GPTV3ResponseReasoningItemDtoStatus: {
4216
- readonly in_progress: "in_progress";
4217
- readonly completed: "completed";
4218
- readonly incomplete: "incomplete";
3336
+ type GPTV3ResponseComputerToolCallTypeDtoType = typeof GPTV3ResponseComputerToolCallTypeDtoType[keyof typeof GPTV3ResponseComputerToolCallTypeDtoType];
3337
+ declare const GPTV3ResponseComputerToolCallTypeDtoType: {
3338
+ readonly type: "type";
4219
3339
  };
4220
3340
 
4221
3341
  /**
@@ -4225,13 +3345,9 @@ declare const GPTV3ResponseReasoningItemDtoStatus: {
4225
3345
  * OpenAPI spec version: 1.0
4226
3346
  */
4227
3347
 
4228
- interface GPTV3ResponseReasoningItemDto {
4229
- id: string;
4230
- summary: GPTV3ResponseReasoningItemSummaryDto[];
4231
- type: GPTV3ResponseReasoningItemDtoType;
4232
- /** @nullable */
4233
- encrypted_content?: string | null;
4234
- status?: GPTV3ResponseReasoningItemDtoStatus;
3348
+ interface GPTV3ResponseComputerToolCallTypeDto {
3349
+ type: GPTV3ResponseComputerToolCallTypeDtoType;
3350
+ text: string;
4235
3351
  }
4236
3352
 
4237
3353
  /**
@@ -4240,12 +3356,9 @@ interface GPTV3ResponseReasoningItemDto {
4240
3356
  * Hautech API
4241
3357
  * OpenAPI spec version: 1.0
4242
3358
  */
4243
- type GPTV3ResponseInputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseInputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoStatus];
4244
- declare const GPTV3ResponseInputItemImageGenerationCallDtoStatus: {
4245
- readonly in_progress: "in_progress";
4246
- readonly completed: "completed";
4247
- readonly generating: "generating";
4248
- readonly failed: "failed";
3359
+ type GPTV3ResponseComputerToolCallWaitDtoType = typeof GPTV3ResponseComputerToolCallWaitDtoType[keyof typeof GPTV3ResponseComputerToolCallWaitDtoType];
3360
+ declare const GPTV3ResponseComputerToolCallWaitDtoType: {
3361
+ readonly wait: "wait";
4249
3362
  };
4250
3363
 
4251
3364
  /**
@@ -4254,10 +3367,10 @@ declare const GPTV3ResponseInputItemImageGenerationCallDtoStatus: {
4254
3367
  * Hautech API
4255
3368
  * OpenAPI spec version: 1.0
4256
3369
  */
4257
- type GPTV3ResponseInputItemImageGenerationCallDtoType = typeof GPTV3ResponseInputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoType];
4258
- declare const GPTV3ResponseInputItemImageGenerationCallDtoType: {
4259
- readonly image_generation_call: "image_generation_call";
4260
- };
3370
+
3371
+ interface GPTV3ResponseComputerToolCallWaitDto {
3372
+ type: GPTV3ResponseComputerToolCallWaitDtoType;
3373
+ }
4261
3374
 
4262
3375
  /**
4263
3376
  * Generated by orval v7.10.0 🍺
@@ -4266,13 +3379,10 @@ declare const GPTV3ResponseInputItemImageGenerationCallDtoType: {
4266
3379
  * OpenAPI spec version: 1.0
4267
3380
  */
4268
3381
 
4269
- interface GPTV3ResponseInputItemImageGenerationCallDto {
4270
- id: string;
4271
- /** @nullable */
4272
- result?: string | null;
4273
- status: GPTV3ResponseInputItemImageGenerationCallDtoStatus;
4274
- type: GPTV3ResponseInputItemImageGenerationCallDtoType;
4275
- }
3382
+ /**
3383
+ * The action requested for the computer call.
3384
+ */
3385
+ type GPTV3ResponseComputerToolCallDtoAction = GPTV3ResponseComputerToolCallClickDto | GPTV3ResponseComputerToolCallDoubleClickDto | GPTV3ResponseComputerToolCallDragDto | GPTV3ResponseComputerToolCallKeypressDto | GPTV3ResponseComputerToolCallMoveDto | GPTV3ResponseComputerToolCallScreenshotDto | GPTV3ResponseComputerToolCallScrollDto | GPTV3ResponseComputerToolCallTypeDto | GPTV3ResponseComputerToolCallWaitDto;
4276
3386
 
4277
3387
  /**
4278
3388
  * Generated by orval v7.10.0 🍺
@@ -4280,10 +3390,11 @@ interface GPTV3ResponseInputItemImageGenerationCallDto {
4280
3390
  * Hautech API
4281
3391
  * OpenAPI spec version: 1.0
4282
3392
  */
4283
- type GPTV3ResponseCodeInterpreterToolCallLogsDtoType = typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType];
4284
- declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
4285
- readonly logs: "logs";
4286
- };
3393
+ interface GPTV3ResponseComputerToolCallPendingSafetyCheckDto {
3394
+ id: string;
3395
+ code: string;
3396
+ message: string;
3397
+ }
4287
3398
 
4288
3399
  /**
4289
3400
  * Generated by orval v7.10.0 🍺
@@ -4291,11 +3402,12 @@ declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
4291
3402
  * Hautech API
4292
3403
  * OpenAPI spec version: 1.0
4293
3404
  */
4294
-
4295
- interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
4296
- type: GPTV3ResponseCodeInterpreterToolCallLogsDtoType;
4297
- logs: string;
4298
- }
3405
+ type GPTV3ResponseComputerToolCallDtoStatus = typeof GPTV3ResponseComputerToolCallDtoStatus[keyof typeof GPTV3ResponseComputerToolCallDtoStatus];
3406
+ declare const GPTV3ResponseComputerToolCallDtoStatus: {
3407
+ readonly in_progress: "in_progress";
3408
+ readonly completed: "completed";
3409
+ readonly incomplete: "incomplete";
3410
+ };
4299
3411
 
4300
3412
  /**
4301
3413
  * Generated by orval v7.10.0 🍺
@@ -4303,9 +3415,9 @@ interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
4303
3415
  * Hautech API
4304
3416
  * OpenAPI spec version: 1.0
4305
3417
  */
4306
- type GPTV3ResponseCodeInterpreterToolCallImageDtoType = typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType];
4307
- declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
4308
- readonly image: "image";
3418
+ type GPTV3ResponseComputerToolCallDtoType = typeof GPTV3ResponseComputerToolCallDtoType[keyof typeof GPTV3ResponseComputerToolCallDtoType];
3419
+ declare const GPTV3ResponseComputerToolCallDtoType: {
3420
+ readonly computer_call: "computer_call";
4309
3421
  };
4310
3422
 
4311
3423
  /**
@@ -4315,9 +3427,17 @@ declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
4315
3427
  * OpenAPI spec version: 1.0
4316
3428
  */
4317
3429
 
4318
- interface GPTV3ResponseCodeInterpreterToolCallImageDto {
4319
- type: GPTV3ResponseCodeInterpreterToolCallImageDtoType;
4320
- url: string;
3430
+ interface GPTV3ResponseComputerToolCallDto {
3431
+ /** The unique ID of the computer call. */
3432
+ id: string;
3433
+ /** The action requested for the computer call. */
3434
+ action: GPTV3ResponseComputerToolCallDtoAction;
3435
+ /** The ID of the tool call. */
3436
+ call_id: string;
3437
+ /** Pending safety checks for the computer call. */
3438
+ pending_safety_checks: GPTV3ResponseComputerToolCallPendingSafetyCheckDto[];
3439
+ status: GPTV3ResponseComputerToolCallDtoStatus;
3440
+ type: GPTV3ResponseComputerToolCallDtoType;
4321
3441
  }
4322
3442
 
4323
3443
  /**
@@ -4326,8 +3446,10 @@ interface GPTV3ResponseCodeInterpreterToolCallImageDto {
4326
3446
  * Hautech API
4327
3447
  * OpenAPI spec version: 1.0
4328
3448
  */
4329
-
4330
- type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem = GPTV3ResponseCodeInterpreterToolCallLogsDto | GPTV3ResponseCodeInterpreterToolCallImageDto;
3449
+ type GPTV3ResponseInputComputerCallOutputScreenshotDtoType = typeof GPTV3ResponseInputComputerCallOutputScreenshotDtoType[keyof typeof GPTV3ResponseInputComputerCallOutputScreenshotDtoType];
3450
+ declare const GPTV3ResponseInputComputerCallOutputScreenshotDtoType: {
3451
+ readonly computer_screenshot: "computer_screenshot";
3452
+ };
4331
3453
 
4332
3454
  /**
4333
3455
  * Generated by orval v7.10.0 🍺
@@ -4335,14 +3457,12 @@ type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem = GPTV3ResponseCodeInter
4335
3457
  * Hautech API
4336
3458
  * OpenAPI spec version: 1.0
4337
3459
  */
4338
- type GPTV3ResponseCodeInterpreterToolCallDtoStatus = typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus];
4339
- declare const GPTV3ResponseCodeInterpreterToolCallDtoStatus: {
4340
- readonly in_progress: "in_progress";
4341
- readonly completed: "completed";
4342
- readonly incomplete: "incomplete";
4343
- readonly interpreting: "interpreting";
4344
- readonly failed: "failed";
4345
- };
3460
+
3461
+ interface GPTV3ResponseInputComputerCallOutputScreenshotDto {
3462
+ type: GPTV3ResponseInputComputerCallOutputScreenshotDtoType;
3463
+ file_id?: string;
3464
+ image_url?: string;
3465
+ }
4346
3466
 
4347
3467
  /**
4348
3468
  * Generated by orval v7.10.0 🍺
@@ -4350,9 +3470,9 @@ declare const GPTV3ResponseCodeInterpreterToolCallDtoStatus: {
4350
3470
  * Hautech API
4351
3471
  * OpenAPI spec version: 1.0
4352
3472
  */
4353
- type GPTV3ResponseCodeInterpreterToolCallDtoType = typeof GPTV3ResponseCodeInterpreterToolCallDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoType];
4354
- declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
4355
- readonly code_interpreter_call: "code_interpreter_call";
3473
+ type GPTV3ResponseInputComputerCallOutputDtoType = typeof GPTV3ResponseInputComputerCallOutputDtoType[keyof typeof GPTV3ResponseInputComputerCallOutputDtoType];
3474
+ declare const GPTV3ResponseInputComputerCallOutputDtoType: {
3475
+ readonly computer_call_output: "computer_call_output";
4356
3476
  };
4357
3477
 
4358
3478
  /**
@@ -4361,19 +3481,12 @@ declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
4361
3481
  * Hautech API
4362
3482
  * OpenAPI spec version: 1.0
4363
3483
  */
4364
-
4365
- interface GPTV3ResponseCodeInterpreterToolCallDto {
3484
+ interface GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto {
4366
3485
  id: string;
4367
3486
  /** @nullable */
4368
3487
  code?: string | null;
4369
- container_id: string;
4370
- /**
4371
- * Outputs from the code interpreter.
4372
- * @nullable
4373
- */
4374
- outputs?: GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem[] | null;
4375
- status: GPTV3ResponseCodeInterpreterToolCallDtoStatus;
4376
- type: GPTV3ResponseCodeInterpreterToolCallDtoType;
3488
+ /** @nullable */
3489
+ message?: string | null;
4377
3490
  }
4378
3491
 
4379
3492
  /**
@@ -4382,19 +3495,11 @@ interface GPTV3ResponseCodeInterpreterToolCallDto {
4382
3495
  * Hautech API
4383
3496
  * OpenAPI spec version: 1.0
4384
3497
  */
4385
- type GPTV3ResponseInputLocalShellCallActionDtoEnv = {
4386
- [key: string]: unknown;
4387
- };
4388
-
4389
- /**
4390
- * Generated by orval v7.10.0 🍺
4391
- * Do not edit manually.
4392
- * Hautech API
4393
- * OpenAPI spec version: 1.0
4394
- */
4395
- type GPTV3ResponseInputLocalShellCallActionDtoType = typeof GPTV3ResponseInputLocalShellCallActionDtoType[keyof typeof GPTV3ResponseInputLocalShellCallActionDtoType];
4396
- declare const GPTV3ResponseInputLocalShellCallActionDtoType: {
4397
- readonly exec: "exec";
3498
+ type GPTV3ResponseInputComputerCallOutputDtoStatus = typeof GPTV3ResponseInputComputerCallOutputDtoStatus[keyof typeof GPTV3ResponseInputComputerCallOutputDtoStatus];
3499
+ declare const GPTV3ResponseInputComputerCallOutputDtoStatus: {
3500
+ readonly in_progress: "in_progress";
3501
+ readonly completed: "completed";
3502
+ readonly incomplete: "incomplete";
4398
3503
  };
4399
3504
 
4400
3505
  /**
@@ -4404,16 +3509,15 @@ declare const GPTV3ResponseInputLocalShellCallActionDtoType: {
4404
3509
  * OpenAPI spec version: 1.0
4405
3510
  */
4406
3511
 
4407
- interface GPTV3ResponseInputLocalShellCallActionDto {
4408
- command: string[];
4409
- env: GPTV3ResponseInputLocalShellCallActionDtoEnv;
4410
- type: GPTV3ResponseInputLocalShellCallActionDtoType;
4411
- /** @nullable */
4412
- timeout_ms?: number | null;
3512
+ interface GPTV3ResponseInputComputerCallOutputDto {
3513
+ call_id: string;
3514
+ output: GPTV3ResponseInputComputerCallOutputScreenshotDto;
3515
+ type: GPTV3ResponseInputComputerCallOutputDtoType;
4413
3516
  /** @nullable */
4414
- user?: string | null;
3517
+ id?: string | null;
4415
3518
  /** @nullable */
4416
- working_directory?: string | null;
3519
+ acknowledged_safety_checks?: GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto[] | null;
3520
+ status?: GPTV3ResponseInputComputerCallOutputDtoStatus;
4417
3521
  }
4418
3522
 
4419
3523
  /**
@@ -4422,11 +3526,12 @@ interface GPTV3ResponseInputLocalShellCallActionDto {
4422
3526
  * Hautech API
4423
3527
  * OpenAPI spec version: 1.0
4424
3528
  */
4425
- type GPTV3ResponseInputLocalShellCallDtoStatus = typeof GPTV3ResponseInputLocalShellCallDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallDtoStatus];
4426
- declare const GPTV3ResponseInputLocalShellCallDtoStatus: {
4427
- readonly in_progress: "in_progress";
4428
- readonly completed: "completed";
4429
- readonly incomplete: "incomplete";
3529
+ /**
3530
+ * The type of the web search result. This is the FIRST output item when web_search tool is called.
3531
+ */
3532
+ type GPTV3ResponseFunctionWebSearchDtoType = typeof GPTV3ResponseFunctionWebSearchDtoType[keyof typeof GPTV3ResponseFunctionWebSearchDtoType];
3533
+ declare const GPTV3ResponseFunctionWebSearchDtoType: {
3534
+ readonly web_search_call: "web_search_call";
4430
3535
  };
4431
3536
 
4432
3537
  /**
@@ -4435,9 +3540,15 @@ declare const GPTV3ResponseInputLocalShellCallDtoStatus: {
4435
3540
  * Hautech API
4436
3541
  * OpenAPI spec version: 1.0
4437
3542
  */
4438
- type GPTV3ResponseInputLocalShellCallDtoType = typeof GPTV3ResponseInputLocalShellCallDtoType[keyof typeof GPTV3ResponseInputLocalShellCallDtoType];
4439
- declare const GPTV3ResponseInputLocalShellCallDtoType: {
4440
- readonly local_shell_call: "local_shell_call";
3543
+ /**
3544
+ * The status of the web search call.
3545
+ */
3546
+ type GPTV3ResponseFunctionWebSearchDtoStatus = typeof GPTV3ResponseFunctionWebSearchDtoStatus[keyof typeof GPTV3ResponseFunctionWebSearchDtoStatus];
3547
+ declare const GPTV3ResponseFunctionWebSearchDtoStatus: {
3548
+ readonly in_progress: "in_progress";
3549
+ readonly searching: "searching";
3550
+ readonly completed: "completed";
3551
+ readonly failed: "failed";
4441
3552
  };
4442
3553
 
4443
3554
  /**
@@ -4447,12 +3558,13 @@ declare const GPTV3ResponseInputLocalShellCallDtoType: {
4447
3558
  * OpenAPI spec version: 1.0
4448
3559
  */
4449
3560
 
4450
- interface GPTV3ResponseInputLocalShellCallDto {
3561
+ interface GPTV3ResponseFunctionWebSearchDto {
3562
+ /** The type of the web search result. This is the FIRST output item when web_search tool is called. */
3563
+ type: GPTV3ResponseFunctionWebSearchDtoType;
3564
+ /** The unique identifier for this web search call. */
4451
3565
  id: string;
4452
- action: GPTV3ResponseInputLocalShellCallActionDto;
4453
- call_id: string;
4454
- status: GPTV3ResponseInputLocalShellCallDtoStatus;
4455
- type: GPTV3ResponseInputLocalShellCallDtoType;
3566
+ /** The status of the web search call. */
3567
+ status: GPTV3ResponseFunctionWebSearchDtoStatus;
4456
3568
  }
4457
3569
 
4458
3570
  /**
@@ -4461,9 +3573,12 @@ interface GPTV3ResponseInputLocalShellCallDto {
4461
3573
  * Hautech API
4462
3574
  * OpenAPI spec version: 1.0
4463
3575
  */
4464
- type GPTV3ResponseInputLocalShellCallOutputDtoType = typeof GPTV3ResponseInputLocalShellCallOutputDtoType[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoType];
4465
- declare const GPTV3ResponseInputLocalShellCallOutputDtoType: {
4466
- readonly local_shell_call_output: "local_shell_call_output";
3576
+ /**
3577
+ * The type of the tool call.
3578
+ */
3579
+ type GPTV3ResponseFunctionToolCallDtoType = typeof GPTV3ResponseFunctionToolCallDtoType[keyof typeof GPTV3ResponseFunctionToolCallDtoType];
3580
+ declare const GPTV3ResponseFunctionToolCallDtoType: {
3581
+ readonly function_call: "function_call";
4467
3582
  };
4468
3583
 
4469
3584
  /**
@@ -4472,8 +3587,11 @@ declare const GPTV3ResponseInputLocalShellCallOutputDtoType: {
4472
3587
  * Hautech API
4473
3588
  * OpenAPI spec version: 1.0
4474
3589
  */
4475
- type GPTV3ResponseInputLocalShellCallOutputDtoStatus = typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus];
4476
- declare const GPTV3ResponseInputLocalShellCallOutputDtoStatus: {
3590
+ /**
3591
+ * The status of the function call.
3592
+ */
3593
+ type GPTV3ResponseFunctionToolCallDtoStatus = typeof GPTV3ResponseFunctionToolCallDtoStatus[keyof typeof GPTV3ResponseFunctionToolCallDtoStatus];
3594
+ declare const GPTV3ResponseFunctionToolCallDtoStatus: {
4477
3595
  readonly in_progress: "in_progress";
4478
3596
  readonly completed: "completed";
4479
3597
  readonly incomplete: "incomplete";
@@ -4486,12 +3604,19 @@ declare const GPTV3ResponseInputLocalShellCallOutputDtoStatus: {
4486
3604
  * OpenAPI spec version: 1.0
4487
3605
  */
4488
3606
 
4489
- interface GPTV3ResponseInputLocalShellCallOutputDto {
4490
- id: string;
4491
- /** JSON string result from the local shell call. */
4492
- output: string;
4493
- type: GPTV3ResponseInputLocalShellCallOutputDtoType;
4494
- status?: GPTV3ResponseInputLocalShellCallOutputDtoStatus;
3607
+ interface GPTV3ResponseFunctionToolCallDto {
3608
+ /** The unique identifier for this function tool call. */
3609
+ id?: string;
3610
+ /** The type of the tool call. */
3611
+ type: GPTV3ResponseFunctionToolCallDtoType;
3612
+ /** The name of the function to run. */
3613
+ name: string;
3614
+ /** The unique ID of the function tool call generated by the model. */
3615
+ call_id: string;
3616
+ /** A JSON string of the arguments passed to the function. */
3617
+ arguments: string;
3618
+ /** The status of the function call. */
3619
+ status?: GPTV3ResponseFunctionToolCallDtoStatus;
4495
3620
  }
4496
3621
 
4497
3622
  /**
@@ -4500,8 +3625,9 @@ interface GPTV3ResponseInputLocalShellCallOutputDto {
4500
3625
  * Hautech API
4501
3626
  * OpenAPI spec version: 1.0
4502
3627
  */
4503
- type GPTV3ResponseInputMcpListToolsToolDtoInputSchema = {
4504
- [key: string]: unknown;
3628
+ type GPTV3ResponseInputFunctionCallOutputDtoType = typeof GPTV3ResponseInputFunctionCallOutputDtoType[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoType];
3629
+ declare const GPTV3ResponseInputFunctionCallOutputDtoType: {
3630
+ readonly function_call_output: "function_call_output";
4505
3631
  };
4506
3632
 
4507
3633
  /**
@@ -4510,12 +3636,12 @@ type GPTV3ResponseInputMcpListToolsToolDtoInputSchema = {
4510
3636
  * Hautech API
4511
3637
  * OpenAPI spec version: 1.0
4512
3638
  */
4513
- /**
4514
- * @nullable
4515
- */
4516
- type GPTV3ResponseInputMcpListToolsToolDtoAnnotations = {
4517
- [key: string]: unknown;
4518
- } | null;
3639
+ type GPTV3ResponseInputFunctionCallOutputDtoStatus = typeof GPTV3ResponseInputFunctionCallOutputDtoStatus[keyof typeof GPTV3ResponseInputFunctionCallOutputDtoStatus];
3640
+ declare const GPTV3ResponseInputFunctionCallOutputDtoStatus: {
3641
+ readonly in_progress: "in_progress";
3642
+ readonly completed: "completed";
3643
+ readonly incomplete: "incomplete";
3644
+ };
4519
3645
 
4520
3646
  /**
4521
3647
  * Generated by orval v7.10.0 🍺
@@ -4524,13 +3650,14 @@ type GPTV3ResponseInputMcpListToolsToolDtoAnnotations = {
4524
3650
  * OpenAPI spec version: 1.0
4525
3651
  */
4526
3652
 
4527
- interface GPTV3ResponseInputMcpListToolsToolDto {
4528
- input_schema: GPTV3ResponseInputMcpListToolsToolDtoInputSchema;
4529
- name: string;
4530
- /** @nullable */
4531
- annotations?: GPTV3ResponseInputMcpListToolsToolDtoAnnotations;
3653
+ interface GPTV3ResponseInputFunctionCallOutputDto {
3654
+ call_id: string;
3655
+ /** JSON string result from your function. */
3656
+ output: string;
3657
+ type: GPTV3ResponseInputFunctionCallOutputDtoType;
4532
3658
  /** @nullable */
4533
- description?: string | null;
3659
+ id?: string | null;
3660
+ status?: GPTV3ResponseInputFunctionCallOutputDtoStatus;
4534
3661
  }
4535
3662
 
4536
3663
  /**
@@ -4539,9 +3666,9 @@ interface GPTV3ResponseInputMcpListToolsToolDto {
4539
3666
  * Hautech API
4540
3667
  * OpenAPI spec version: 1.0
4541
3668
  */
4542
- type GPTV3ResponseInputMcpListToolsDtoType = typeof GPTV3ResponseInputMcpListToolsDtoType[keyof typeof GPTV3ResponseInputMcpListToolsDtoType];
4543
- declare const GPTV3ResponseInputMcpListToolsDtoType: {
4544
- readonly mcp_list_tools: "mcp_list_tools";
3669
+ type GPTV3ResponseReasoningItemSummaryDtoType = typeof GPTV3ResponseReasoningItemSummaryDtoType[keyof typeof GPTV3ResponseReasoningItemSummaryDtoType];
3670
+ declare const GPTV3ResponseReasoningItemSummaryDtoType: {
3671
+ readonly summary_text: "summary_text";
4545
3672
  };
4546
3673
 
4547
3674
  /**
@@ -4551,13 +3678,9 @@ declare const GPTV3ResponseInputMcpListToolsDtoType: {
4551
3678
  * OpenAPI spec version: 1.0
4552
3679
  */
4553
3680
 
4554
- interface GPTV3ResponseInputMcpListToolsDto {
4555
- id: string;
4556
- server_label: string;
4557
- tools: GPTV3ResponseInputMcpListToolsToolDto[];
4558
- type: GPTV3ResponseInputMcpListToolsDtoType;
4559
- /** @nullable */
4560
- error?: string | null;
3681
+ interface GPTV3ResponseReasoningItemSummaryDto {
3682
+ type: GPTV3ResponseReasoningItemSummaryDtoType;
3683
+ text: string;
4561
3684
  }
4562
3685
 
4563
3686
  /**
@@ -4566,9 +3689,9 @@ interface GPTV3ResponseInputMcpListToolsDto {
4566
3689
  * Hautech API
4567
3690
  * OpenAPI spec version: 1.0
4568
3691
  */
4569
- type GPTV3ResponseInputMcpApprovalRequestDtoType = typeof GPTV3ResponseInputMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseInputMcpApprovalRequestDtoType];
4570
- declare const GPTV3ResponseInputMcpApprovalRequestDtoType: {
4571
- readonly mcp_approval_request: "mcp_approval_request";
3692
+ type GPTV3ResponseReasoningItemDtoType = typeof GPTV3ResponseReasoningItemDtoType[keyof typeof GPTV3ResponseReasoningItemDtoType];
3693
+ declare const GPTV3ResponseReasoningItemDtoType: {
3694
+ readonly reasoning: "reasoning";
4572
3695
  };
4573
3696
 
4574
3697
  /**
@@ -4577,14 +3700,12 @@ declare const GPTV3ResponseInputMcpApprovalRequestDtoType: {
4577
3700
  * Hautech API
4578
3701
  * OpenAPI spec version: 1.0
4579
3702
  */
4580
-
4581
- interface GPTV3ResponseInputMcpApprovalRequestDto {
4582
- id: string;
4583
- arguments: string;
4584
- name: string;
4585
- server_label: string;
4586
- type: GPTV3ResponseInputMcpApprovalRequestDtoType;
4587
- }
3703
+ type GPTV3ResponseReasoningItemDtoStatus = typeof GPTV3ResponseReasoningItemDtoStatus[keyof typeof GPTV3ResponseReasoningItemDtoStatus];
3704
+ declare const GPTV3ResponseReasoningItemDtoStatus: {
3705
+ readonly in_progress: "in_progress";
3706
+ readonly completed: "completed";
3707
+ readonly incomplete: "incomplete";
3708
+ };
4588
3709
 
4589
3710
  /**
4590
3711
  * Generated by orval v7.10.0 🍺
@@ -4592,10 +3713,15 @@ interface GPTV3ResponseInputMcpApprovalRequestDto {
4592
3713
  * Hautech API
4593
3714
  * OpenAPI spec version: 1.0
4594
3715
  */
4595
- type GPTV3ResponseInputMcpApprovalResponseDtoType = typeof GPTV3ResponseInputMcpApprovalResponseDtoType[keyof typeof GPTV3ResponseInputMcpApprovalResponseDtoType];
4596
- declare const GPTV3ResponseInputMcpApprovalResponseDtoType: {
4597
- readonly mcp_approval_response: "mcp_approval_response";
4598
- };
3716
+
3717
+ interface GPTV3ResponseReasoningItemDto {
3718
+ id: string;
3719
+ summary: GPTV3ResponseReasoningItemSummaryDto[];
3720
+ type: GPTV3ResponseReasoningItemDtoType;
3721
+ /** @nullable */
3722
+ encrypted_content?: string | null;
3723
+ status?: GPTV3ResponseReasoningItemDtoStatus;
3724
+ }
4599
3725
 
4600
3726
  /**
4601
3727
  * Generated by orval v7.10.0 🍺
@@ -4603,16 +3729,13 @@ declare const GPTV3ResponseInputMcpApprovalResponseDtoType: {
4603
3729
  * Hautech API
4604
3730
  * OpenAPI spec version: 1.0
4605
3731
  */
4606
-
4607
- interface GPTV3ResponseInputMcpApprovalResponseDto {
4608
- approval_request_id: string;
4609
- approve: boolean;
4610
- type: GPTV3ResponseInputMcpApprovalResponseDtoType;
4611
- /** @nullable */
4612
- id?: string | null;
4613
- /** @nullable */
4614
- reason?: string | null;
4615
- }
3732
+ type GPTV3ResponseInputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseInputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoStatus];
3733
+ declare const GPTV3ResponseInputItemImageGenerationCallDtoStatus: {
3734
+ readonly in_progress: "in_progress";
3735
+ readonly completed: "completed";
3736
+ readonly generating: "generating";
3737
+ readonly failed: "failed";
3738
+ };
4616
3739
 
4617
3740
  /**
4618
3741
  * Generated by orval v7.10.0 🍺
@@ -4620,9 +3743,9 @@ interface GPTV3ResponseInputMcpApprovalResponseDto {
4620
3743
  * Hautech API
4621
3744
  * OpenAPI spec version: 1.0
4622
3745
  */
4623
- type GPTV3ResponseInputMcpCallDtoType = typeof GPTV3ResponseInputMcpCallDtoType[keyof typeof GPTV3ResponseInputMcpCallDtoType];
4624
- declare const GPTV3ResponseInputMcpCallDtoType: {
4625
- readonly mcp_call: "mcp_call";
3746
+ type GPTV3ResponseInputItemImageGenerationCallDtoType = typeof GPTV3ResponseInputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseInputItemImageGenerationCallDtoType];
3747
+ declare const GPTV3ResponseInputItemImageGenerationCallDtoType: {
3748
+ readonly image_generation_call: "image_generation_call";
4626
3749
  };
4627
3750
 
4628
3751
  /**
@@ -4632,16 +3755,12 @@ declare const GPTV3ResponseInputMcpCallDtoType: {
4632
3755
  * OpenAPI spec version: 1.0
4633
3756
  */
4634
3757
 
4635
- interface GPTV3ResponseInputMcpCallDto {
3758
+ interface GPTV3ResponseInputItemImageGenerationCallDto {
4636
3759
  id: string;
4637
- arguments: string;
4638
- name: string;
4639
- server_label: string;
4640
- type: GPTV3ResponseInputMcpCallDtoType;
4641
- /** @nullable */
4642
- error?: string | null;
4643
3760
  /** @nullable */
4644
- output?: string | null;
3761
+ result?: string | null;
3762
+ status: GPTV3ResponseInputItemImageGenerationCallDtoStatus;
3763
+ type: GPTV3ResponseInputItemImageGenerationCallDtoType;
4645
3764
  }
4646
3765
 
4647
3766
  /**
@@ -4650,9 +3769,9 @@ interface GPTV3ResponseInputMcpCallDto {
4650
3769
  * Hautech API
4651
3770
  * OpenAPI spec version: 1.0
4652
3771
  */
4653
- type GPTV3ResponseCustomToolCallOutputDtoType = typeof GPTV3ResponseCustomToolCallOutputDtoType[keyof typeof GPTV3ResponseCustomToolCallOutputDtoType];
4654
- declare const GPTV3ResponseCustomToolCallOutputDtoType: {
4655
- readonly custom_tool_call_output: "custom_tool_call_output";
3772
+ type GPTV3ResponseCodeInterpreterToolCallLogsDtoType = typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallLogsDtoType];
3773
+ declare const GPTV3ResponseCodeInterpreterToolCallLogsDtoType: {
3774
+ readonly logs: "logs";
4656
3775
  };
4657
3776
 
4658
3777
  /**
@@ -4662,12 +3781,9 @@ declare const GPTV3ResponseCustomToolCallOutputDtoType: {
4662
3781
  * OpenAPI spec version: 1.0
4663
3782
  */
4664
3783
 
4665
- interface GPTV3ResponseCustomToolCallOutputDto {
4666
- call_id: string;
4667
- /** JSON string result from your custom tool. */
4668
- output: string;
4669
- type: GPTV3ResponseCustomToolCallOutputDtoType;
4670
- id?: string;
3784
+ interface GPTV3ResponseCodeInterpreterToolCallLogsDto {
3785
+ type: GPTV3ResponseCodeInterpreterToolCallLogsDtoType;
3786
+ logs: string;
4671
3787
  }
4672
3788
 
4673
3789
  /**
@@ -4676,12 +3792,9 @@ interface GPTV3ResponseCustomToolCallOutputDto {
4676
3792
  * Hautech API
4677
3793
  * OpenAPI spec version: 1.0
4678
3794
  */
4679
- /**
4680
- * The type of the tool call.
4681
- */
4682
- type GPTV3ResponseCustomToolCallDtoType = typeof GPTV3ResponseCustomToolCallDtoType[keyof typeof GPTV3ResponseCustomToolCallDtoType];
4683
- declare const GPTV3ResponseCustomToolCallDtoType: {
4684
- readonly custom_tool_call: "custom_tool_call";
3795
+ type GPTV3ResponseCodeInterpreterToolCallImageDtoType = typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallImageDtoType];
3796
+ declare const GPTV3ResponseCodeInterpreterToolCallImageDtoType: {
3797
+ readonly image: "image";
4685
3798
  };
4686
3799
 
4687
3800
  /**
@@ -4690,15 +3803,11 @@ declare const GPTV3ResponseCustomToolCallDtoType: {
4690
3803
  * Hautech API
4691
3804
  * OpenAPI spec version: 1.0
4692
3805
  */
4693
- /**
4694
- * The status of the tool call.
4695
- */
4696
- type GPTV3ResponseCustomToolCallDtoStatus = typeof GPTV3ResponseCustomToolCallDtoStatus[keyof typeof GPTV3ResponseCustomToolCallDtoStatus];
4697
- declare const GPTV3ResponseCustomToolCallDtoStatus: {
4698
- readonly in_progress: "in_progress";
4699
- readonly completed: "completed";
4700
- readonly incomplete: "incomplete";
4701
- };
3806
+
3807
+ interface GPTV3ResponseCodeInterpreterToolCallImageDto {
3808
+ type: GPTV3ResponseCodeInterpreterToolCallImageDtoType;
3809
+ url: string;
3810
+ }
4702
3811
 
4703
3812
  /**
4704
3813
  * Generated by orval v7.10.0 🍺
@@ -4707,20 +3816,7 @@ declare const GPTV3ResponseCustomToolCallDtoStatus: {
4707
3816
  * OpenAPI spec version: 1.0
4708
3817
  */
4709
3818
 
4710
- interface GPTV3ResponseCustomToolCallDto {
4711
- /** The unique identifier for this custom tool call. */
4712
- id?: string;
4713
- /** The type of the tool call. */
4714
- type: GPTV3ResponseCustomToolCallDtoType;
4715
- /** The name of the custom tool to run. */
4716
- name: string;
4717
- /** The unique ID of the tool call generated by the model. */
4718
- call_id: string;
4719
- /** The status of the tool call. */
4720
- status?: GPTV3ResponseCustomToolCallDtoStatus;
4721
- /** Input payload for the custom tool. */
4722
- input: string;
4723
- }
3819
+ type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem = GPTV3ResponseCodeInterpreterToolCallLogsDto | GPTV3ResponseCodeInterpreterToolCallImageDto;
4724
3820
 
4725
3821
  /**
4726
3822
  * Generated by orval v7.10.0 🍺
@@ -4728,12 +3824,13 @@ interface GPTV3ResponseCustomToolCallDto {
4728
3824
  * Hautech API
4729
3825
  * OpenAPI spec version: 1.0
4730
3826
  */
4731
- /**
4732
- * @nullable
4733
- */
4734
- type GPTV3ResponseInputItemReferenceDtoType = typeof GPTV3ResponseInputItemReferenceDtoType[keyof typeof GPTV3ResponseInputItemReferenceDtoType] | null;
4735
- declare const GPTV3ResponseInputItemReferenceDtoType: {
4736
- readonly item_reference: "item_reference";
3827
+ type GPTV3ResponseCodeInterpreterToolCallDtoStatus = typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoStatus];
3828
+ declare const GPTV3ResponseCodeInterpreterToolCallDtoStatus: {
3829
+ readonly in_progress: "in_progress";
3830
+ readonly completed: "completed";
3831
+ readonly incomplete: "incomplete";
3832
+ readonly interpreting: "interpreting";
3833
+ readonly failed: "failed";
4737
3834
  };
4738
3835
 
4739
3836
  /**
@@ -4742,12 +3839,10 @@ declare const GPTV3ResponseInputItemReferenceDtoType: {
4742
3839
  * Hautech API
4743
3840
  * OpenAPI spec version: 1.0
4744
3841
  */
4745
-
4746
- interface GPTV3ResponseInputItemReferenceDto {
4747
- id: string;
4748
- /** @nullable */
4749
- type?: GPTV3ResponseInputItemReferenceDtoType;
4750
- }
3842
+ type GPTV3ResponseCodeInterpreterToolCallDtoType = typeof GPTV3ResponseCodeInterpreterToolCallDtoType[keyof typeof GPTV3ResponseCodeInterpreterToolCallDtoType];
3843
+ declare const GPTV3ResponseCodeInterpreterToolCallDtoType: {
3844
+ readonly code_interpreter_call: "code_interpreter_call";
3845
+ };
4751
3846
 
4752
3847
  /**
4753
3848
  * Generated by orval v7.10.0 🍺
@@ -4756,7 +3851,19 @@ interface GPTV3ResponseInputItemReferenceDto {
4756
3851
  * OpenAPI spec version: 1.0
4757
3852
  */
4758
3853
 
4759
- type GPTV3InputInputOneOfItem = GPTV3ResponseInputItemMessage | GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseInputComputerCallOutputDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseInputFunctionCallOutputDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseInputItemImageGenerationCallDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseInputLocalShellCallDto | GPTV3ResponseInputLocalShellCallOutputDto | GPTV3ResponseInputMcpListToolsDto | GPTV3ResponseInputMcpApprovalRequestDto | GPTV3ResponseInputMcpApprovalResponseDto | GPTV3ResponseInputMcpCallDto | GPTV3ResponseCustomToolCallOutputDto | GPTV3ResponseCustomToolCallDto | GPTV3ResponseInputItemReferenceDto;
3854
+ interface GPTV3ResponseCodeInterpreterToolCallDto {
3855
+ id: string;
3856
+ /** @nullable */
3857
+ code?: string | null;
3858
+ container_id: string;
3859
+ /**
3860
+ * Outputs from the code interpreter.
3861
+ * @nullable
3862
+ */
3863
+ outputs?: GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem[] | null;
3864
+ status: GPTV3ResponseCodeInterpreterToolCallDtoStatus;
3865
+ type: GPTV3ResponseCodeInterpreterToolCallDtoType;
3866
+ }
4760
3867
 
4761
3868
  /**
4762
3869
  * Generated by orval v7.10.0 🍺
@@ -4764,11 +3871,9 @@ type GPTV3InputInputOneOfItem = GPTV3ResponseInputItemMessage | GPTV3ResponseOut
4764
3871
  * Hautech API
4765
3872
  * OpenAPI spec version: 1.0
4766
3873
  */
4767
-
4768
- /**
4769
- * 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.
4770
- */
4771
- type GPTV3InputInput = string | GPTV3InputInputOneOfItem[];
3874
+ type GPTV3ResponseInputLocalShellCallActionDtoEnv = {
3875
+ [key: string]: unknown;
3876
+ };
4772
3877
 
4773
3878
  /**
4774
3879
  * Generated by orval v7.10.0 🍺
@@ -4776,12 +3881,9 @@ type GPTV3InputInput = string | GPTV3InputInputOneOfItem[];
4776
3881
  * Hautech API
4777
3882
  * OpenAPI spec version: 1.0
4778
3883
  */
4779
- /**
4780
- * The type of response format being defined: 'text'.
4781
- */
4782
- type GPTV3ResponseFormatTextDtoType = typeof GPTV3ResponseFormatTextDtoType[keyof typeof GPTV3ResponseFormatTextDtoType];
4783
- declare const GPTV3ResponseFormatTextDtoType: {
4784
- readonly text: "text";
3884
+ type GPTV3ResponseInputLocalShellCallActionDtoType = typeof GPTV3ResponseInputLocalShellCallActionDtoType[keyof typeof GPTV3ResponseInputLocalShellCallActionDtoType];
3885
+ declare const GPTV3ResponseInputLocalShellCallActionDtoType: {
3886
+ readonly exec: "exec";
4785
3887
  };
4786
3888
 
4787
3889
  /**
@@ -4791,9 +3893,16 @@ declare const GPTV3ResponseFormatTextDtoType: {
4791
3893
  * OpenAPI spec version: 1.0
4792
3894
  */
4793
3895
 
4794
- interface GPTV3ResponseFormatTextDto {
4795
- /** The type of response format being defined: 'text'. */
4796
- type: GPTV3ResponseFormatTextDtoType;
3896
+ interface GPTV3ResponseInputLocalShellCallActionDto {
3897
+ command: string[];
3898
+ env: GPTV3ResponseInputLocalShellCallActionDtoEnv;
3899
+ type: GPTV3ResponseInputLocalShellCallActionDtoType;
3900
+ /** @nullable */
3901
+ timeout_ms?: number | null;
3902
+ /** @nullable */
3903
+ user?: string | null;
3904
+ /** @nullable */
3905
+ working_directory?: string | null;
4797
3906
  }
4798
3907
 
4799
3908
  /**
@@ -4802,11 +3911,11 @@ interface GPTV3ResponseFormatTextDto {
4802
3911
  * Hautech API
4803
3912
  * OpenAPI spec version: 1.0
4804
3913
  */
4805
- /**
4806
- * The schema for the response format, described satisfies a JSON Schema object.
4807
- */
4808
- type GPTV3ResponseFormatJsonSchemaDtoSchema = {
4809
- [key: string]: unknown;
3914
+ type GPTV3ResponseInputLocalShellCallDtoStatus = typeof GPTV3ResponseInputLocalShellCallDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallDtoStatus];
3915
+ declare const GPTV3ResponseInputLocalShellCallDtoStatus: {
3916
+ readonly in_progress: "in_progress";
3917
+ readonly completed: "completed";
3918
+ readonly incomplete: "incomplete";
4810
3919
  };
4811
3920
 
4812
3921
  /**
@@ -4815,12 +3924,9 @@ type GPTV3ResponseFormatJsonSchemaDtoSchema = {
4815
3924
  * Hautech API
4816
3925
  * OpenAPI spec version: 1.0
4817
3926
  */
4818
- /**
4819
- * The type of response format being defined: json_schema.
4820
- */
4821
- type GPTV3ResponseFormatJsonSchemaDtoType = typeof GPTV3ResponseFormatJsonSchemaDtoType[keyof typeof GPTV3ResponseFormatJsonSchemaDtoType];
4822
- declare const GPTV3ResponseFormatJsonSchemaDtoType: {
4823
- readonly json_schema: "json_schema";
3927
+ type GPTV3ResponseInputLocalShellCallDtoType = typeof GPTV3ResponseInputLocalShellCallDtoType[keyof typeof GPTV3ResponseInputLocalShellCallDtoType];
3928
+ declare const GPTV3ResponseInputLocalShellCallDtoType: {
3929
+ readonly local_shell_call: "local_shell_call";
4824
3930
  };
4825
3931
 
4826
3932
  /**
@@ -4830,17 +3936,12 @@ declare const GPTV3ResponseFormatJsonSchemaDtoType: {
4830
3936
  * OpenAPI spec version: 1.0
4831
3937
  */
4832
3938
 
4833
- interface GPTV3ResponseFormatJsonSchemaDto {
4834
- /** 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. */
4835
- name: string;
4836
- /** The schema for the response format, described satisfies a JSON Schema object. */
4837
- schema: GPTV3ResponseFormatJsonSchemaDtoSchema;
4838
- /** The type of response format being defined: json_schema. */
4839
- type: GPTV3ResponseFormatJsonSchemaDtoType;
4840
- /** A description of what the response format is for, used by the model to determine how to respond in the format. */
4841
- description?: string;
4842
- /** 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. */
4843
- strict?: boolean;
3939
+ interface GPTV3ResponseInputLocalShellCallDto {
3940
+ id: string;
3941
+ action: GPTV3ResponseInputLocalShellCallActionDto;
3942
+ call_id: string;
3943
+ status: GPTV3ResponseInputLocalShellCallDtoStatus;
3944
+ type: GPTV3ResponseInputLocalShellCallDtoType;
4844
3945
  }
4845
3946
 
4846
3947
  /**
@@ -4849,11 +3950,23 @@ interface GPTV3ResponseFormatJsonSchemaDto {
4849
3950
  * Hautech API
4850
3951
  * OpenAPI spec version: 1.0
4851
3952
  */
3953
+ type GPTV3ResponseInputLocalShellCallOutputDtoType = typeof GPTV3ResponseInputLocalShellCallOutputDtoType[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoType];
3954
+ declare const GPTV3ResponseInputLocalShellCallOutputDtoType: {
3955
+ readonly local_shell_call_output: "local_shell_call_output";
3956
+ };
4852
3957
 
4853
3958
  /**
4854
- * The format for the text response.
3959
+ * Generated by orval v7.10.0 🍺
3960
+ * Do not edit manually.
3961
+ * Hautech API
3962
+ * OpenAPI spec version: 1.0
4855
3963
  */
4856
- type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormatJsonSchemaDto;
3964
+ type GPTV3ResponseInputLocalShellCallOutputDtoStatus = typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus[keyof typeof GPTV3ResponseInputLocalShellCallOutputDtoStatus];
3965
+ declare const GPTV3ResponseInputLocalShellCallOutputDtoStatus: {
3966
+ readonly in_progress: "in_progress";
3967
+ readonly completed: "completed";
3968
+ readonly incomplete: "incomplete";
3969
+ };
4857
3970
 
4858
3971
  /**
4859
3972
  * Generated by orval v7.10.0 🍺
@@ -4862,9 +3975,12 @@ type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormat
4862
3975
  * OpenAPI spec version: 1.0
4863
3976
  */
4864
3977
 
4865
- interface GPTV3TextConfigDto {
4866
- /** The format for the text response. */
4867
- format?: GPTV3TextConfigDtoFormat;
3978
+ interface GPTV3ResponseInputLocalShellCallOutputDto {
3979
+ id: string;
3980
+ /** JSON string result from the local shell call. */
3981
+ output: string;
3982
+ type: GPTV3ResponseInputLocalShellCallOutputDtoType;
3983
+ status?: GPTV3ResponseInputLocalShellCallOutputDtoStatus;
4868
3984
  }
4869
3985
 
4870
3986
  /**
@@ -4873,13 +3989,8 @@ interface GPTV3TextConfigDto {
4873
3989
  * Hautech API
4874
3990
  * OpenAPI spec version: 1.0
4875
3991
  */
4876
- /**
4877
- * The type of the tool.
4878
- */
4879
- type GPTV3WebSearchToolDtoType = typeof GPTV3WebSearchToolDtoType[keyof typeof GPTV3WebSearchToolDtoType];
4880
- declare const GPTV3WebSearchToolDtoType: {
4881
- readonly web_search_preview: "web_search_preview";
4882
- readonly web_search_preview_2025_03_11: "web_search_preview_2025_03_11";
3992
+ type GPTV3ResponseInputMcpListToolsToolDtoInputSchema = {
3993
+ [key: string]: unknown;
4883
3994
  };
4884
3995
 
4885
3996
  /**
@@ -4889,14 +4000,11 @@ declare const GPTV3WebSearchToolDtoType: {
4889
4000
  * OpenAPI spec version: 1.0
4890
4001
  */
4891
4002
  /**
4892
- * High level guidance for the amount of context window space to use for the search.
4003
+ * @nullable
4893
4004
  */
4894
- type GPTV3WebSearchToolDtoSearchContextSize = typeof GPTV3WebSearchToolDtoSearchContextSize[keyof typeof GPTV3WebSearchToolDtoSearchContextSize];
4895
- declare const GPTV3WebSearchToolDtoSearchContextSize: {
4896
- readonly low: "low";
4897
- readonly medium: "medium";
4898
- readonly high: "high";
4899
- };
4005
+ type GPTV3ResponseInputMcpListToolsToolDtoAnnotations = {
4006
+ [key: string]: unknown;
4007
+ } | null;
4900
4008
 
4901
4009
  /**
4902
4010
  * Generated by orval v7.10.0 🍺
@@ -4905,11 +4013,13 @@ declare const GPTV3WebSearchToolDtoSearchContextSize: {
4905
4013
  * OpenAPI spec version: 1.0
4906
4014
  */
4907
4015
 
4908
- interface GPTV3WebSearchToolDto {
4909
- /** The type of the tool. */
4910
- type: GPTV3WebSearchToolDtoType;
4911
- /** High level guidance for the amount of context window space to use for the search. */
4912
- search_context_size?: GPTV3WebSearchToolDtoSearchContextSize;
4016
+ interface GPTV3ResponseInputMcpListToolsToolDto {
4017
+ input_schema: GPTV3ResponseInputMcpListToolsToolDtoInputSchema;
4018
+ name: string;
4019
+ /** @nullable */
4020
+ annotations?: GPTV3ResponseInputMcpListToolsToolDtoAnnotations;
4021
+ /** @nullable */
4022
+ description?: string | null;
4913
4023
  }
4914
4024
 
4915
4025
  /**
@@ -4918,8 +4028,10 @@ interface GPTV3WebSearchToolDto {
4918
4028
  * Hautech API
4919
4029
  * OpenAPI spec version: 1.0
4920
4030
  */
4921
-
4922
- type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3WebSearchToolDto | GPTV3ImageGenerationToolDto;
4031
+ type GPTV3ResponseInputMcpListToolsDtoType = typeof GPTV3ResponseInputMcpListToolsDtoType[keyof typeof GPTV3ResponseInputMcpListToolsDtoType];
4032
+ declare const GPTV3ResponseInputMcpListToolsDtoType: {
4033
+ readonly mcp_list_tools: "mcp_list_tools";
4034
+ };
4923
4035
 
4924
4036
  /**
4925
4037
  * Generated by orval v7.10.0 🍺
@@ -4927,11 +4039,25 @@ type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3
4927
4039
  * Hautech API
4928
4040
  * OpenAPI spec version: 1.0
4929
4041
  */
4042
+
4043
+ interface GPTV3ResponseInputMcpListToolsDto {
4044
+ id: string;
4045
+ server_label: string;
4046
+ tools: GPTV3ResponseInputMcpListToolsToolDto[];
4047
+ type: GPTV3ResponseInputMcpListToolsDtoType;
4048
+ /** @nullable */
4049
+ error?: string | null;
4050
+ }
4051
+
4930
4052
  /**
4931
- * Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice.
4053
+ * Generated by orval v7.10.0 🍺
4054
+ * Do not edit manually.
4055
+ * Hautech API
4056
+ * OpenAPI spec version: 1.0
4932
4057
  */
4933
- type GPTV3InputToolChoice = {
4934
- [key: string]: unknown;
4058
+ type GPTV3ResponseInputMcpApprovalRequestDtoType = typeof GPTV3ResponseInputMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseInputMcpApprovalRequestDtoType];
4059
+ declare const GPTV3ResponseInputMcpApprovalRequestDtoType: {
4060
+ readonly mcp_approval_request: "mcp_approval_request";
4935
4061
  };
4936
4062
 
4937
4063
  /**
@@ -4941,23 +4067,12 @@ type GPTV3InputToolChoice = {
4941
4067
  * OpenAPI spec version: 1.0
4942
4068
  */
4943
4069
 
4944
- interface GPTV3Input {
4945
- /** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
4946
- model?: GPTV3InputModel;
4947
- /** 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. */
4948
- input?: GPTV3InputInput;
4949
- /** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
4950
- text?: GPTV3TextConfigDto;
4951
- /** 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. */
4952
- seed?: number;
4953
- /** A list of tools the model may call. Supports function, file_search, web_search_preview, and image_generation tools. */
4954
- tools?: GPTV3InputToolsItem[];
4955
- /** Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice. */
4956
- tool_choice?: GPTV3InputToolChoice;
4957
- /** Maximum number of output tokens to generate. */
4958
- max_output_tokens?: number;
4959
- /** Specifies which additional data to include in the response. For file search, use ["file_search_call.results"] to include search results. */
4960
- include?: string[];
4070
+ interface GPTV3ResponseInputMcpApprovalRequestDto {
4071
+ id: string;
4072
+ arguments: string;
4073
+ name: string;
4074
+ server_label: string;
4075
+ type: GPTV3ResponseInputMcpApprovalRequestDtoType;
4961
4076
  }
4962
4077
 
4963
4078
  /**
@@ -4966,13 +4081,27 @@ interface GPTV3Input {
4966
4081
  * Hautech API
4967
4082
  * OpenAPI spec version: 1.0
4968
4083
  */
4969
- /**
4970
- * 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.
4971
- */
4972
- type GPTV3MessageContentDtoType = typeof GPTV3MessageContentDtoType[keyof typeof GPTV3MessageContentDtoType];
4973
- declare const GPTV3MessageContentDtoType: {
4974
- readonly message: "message";
4975
- };
4084
+ type GPTV3ResponseInputMcpApprovalResponseDtoType = typeof GPTV3ResponseInputMcpApprovalResponseDtoType[keyof typeof GPTV3ResponseInputMcpApprovalResponseDtoType];
4085
+ declare const GPTV3ResponseInputMcpApprovalResponseDtoType: {
4086
+ readonly mcp_approval_response: "mcp_approval_response";
4087
+ };
4088
+
4089
+ /**
4090
+ * Generated by orval v7.10.0 🍺
4091
+ * Do not edit manually.
4092
+ * Hautech API
4093
+ * OpenAPI spec version: 1.0
4094
+ */
4095
+
4096
+ interface GPTV3ResponseInputMcpApprovalResponseDto {
4097
+ approval_request_id: string;
4098
+ approve: boolean;
4099
+ type: GPTV3ResponseInputMcpApprovalResponseDtoType;
4100
+ /** @nullable */
4101
+ id?: string | null;
4102
+ /** @nullable */
4103
+ reason?: string | null;
4104
+ }
4976
4105
 
4977
4106
  /**
4978
4107
  * Generated by orval v7.10.0 🍺
@@ -4980,12 +4109,9 @@ declare const GPTV3MessageContentDtoType: {
4980
4109
  * Hautech API
4981
4110
  * OpenAPI spec version: 1.0
4982
4111
  */
4983
- /**
4984
- * The role of the message sender.
4985
- */
4986
- type GPTV3MessageContentDtoRole = typeof GPTV3MessageContentDtoRole[keyof typeof GPTV3MessageContentDtoRole];
4987
- declare const GPTV3MessageContentDtoRole: {
4988
- readonly assistant: "assistant";
4112
+ type GPTV3ResponseInputMcpCallDtoType = typeof GPTV3ResponseInputMcpCallDtoType[keyof typeof GPTV3ResponseInputMcpCallDtoType];
4113
+ declare const GPTV3ResponseInputMcpCallDtoType: {
4114
+ readonly mcp_call: "mcp_call";
4989
4115
  };
4990
4116
 
4991
4117
  /**
@@ -4995,15 +4121,16 @@ declare const GPTV3MessageContentDtoRole: {
4995
4121
  * OpenAPI spec version: 1.0
4996
4122
  */
4997
4123
 
4998
- interface GPTV3MessageContentDto {
4999
- /** The unique identifier for the message. */
4124
+ interface GPTV3ResponseInputMcpCallDto {
5000
4125
  id: string;
5001
- /** 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. */
5002
- type: GPTV3MessageContentDtoType;
5003
- /** The role of the message sender. */
5004
- role: GPTV3MessageContentDtoRole;
5005
- /** The content of the message with annotations and citations. */
5006
- content: GPTV3ContentWithAnnotationsDto[];
4126
+ arguments: string;
4127
+ name: string;
4128
+ server_label: string;
4129
+ type: GPTV3ResponseInputMcpCallDtoType;
4130
+ /** @nullable */
4131
+ error?: string | null;
4132
+ /** @nullable */
4133
+ output?: string | null;
5007
4134
  }
5008
4135
 
5009
4136
  /**
@@ -5012,9 +4139,9 @@ interface GPTV3MessageContentDto {
5012
4139
  * Hautech API
5013
4140
  * OpenAPI spec version: 1.0
5014
4141
  */
5015
- type GPTV3OutputKind = typeof GPTV3OutputKind[keyof typeof GPTV3OutputKind];
5016
- declare const GPTV3OutputKind: {
5017
- readonly json: "json";
4142
+ type GPTV3ResponseCustomToolCallOutputDtoType = typeof GPTV3ResponseCustomToolCallOutputDtoType[keyof typeof GPTV3ResponseCustomToolCallOutputDtoType];
4143
+ declare const GPTV3ResponseCustomToolCallOutputDtoType: {
4144
+ readonly custom_tool_call_output: "custom_tool_call_output";
5018
4145
  };
5019
4146
 
5020
4147
  /**
@@ -5023,13 +4150,14 @@ declare const GPTV3OutputKind: {
5023
4150
  * Hautech API
5024
4151
  * OpenAPI spec version: 1.0
5025
4152
  */
5026
- /**
5027
- * The type of the image generation output item.
5028
- */
5029
- type GPTV3ResponseOutputItemImageGenerationCallDtoType = typeof GPTV3ResponseOutputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoType];
5030
- declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
5031
- readonly image_generation_call: "image_generation_call";
5032
- };
4153
+
4154
+ interface GPTV3ResponseCustomToolCallOutputDto {
4155
+ call_id: string;
4156
+ /** JSON string result from your custom tool. */
4157
+ output: string;
4158
+ type: GPTV3ResponseCustomToolCallOutputDtoType;
4159
+ id?: string;
4160
+ }
5033
4161
 
5034
4162
  /**
5035
4163
  * Generated by orval v7.10.0 🍺
@@ -5038,14 +4166,11 @@ declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
5038
4166
  * OpenAPI spec version: 1.0
5039
4167
  */
5040
4168
  /**
5041
- * The status of the image generation call.
4169
+ * The type of the tool call.
5042
4170
  */
5043
- type GPTV3ResponseOutputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus];
5044
- declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
5045
- readonly in_progress: "in_progress";
5046
- readonly completed: "completed";
5047
- readonly generating: "generating";
5048
- readonly failed: "failed";
4171
+ type GPTV3ResponseCustomToolCallDtoType = typeof GPTV3ResponseCustomToolCallDtoType[keyof typeof GPTV3ResponseCustomToolCallDtoType];
4172
+ declare const GPTV3ResponseCustomToolCallDtoType: {
4173
+ readonly custom_tool_call: "custom_tool_call";
5049
4174
  };
5050
4175
 
5051
4176
  /**
@@ -5055,10 +4180,13 @@ declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
5055
4180
  * OpenAPI spec version: 1.0
5056
4181
  */
5057
4182
  /**
5058
- * Additional metadata about the image generation.
4183
+ * The status of the tool call.
5059
4184
  */
5060
- type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
5061
- [key: string]: unknown;
4185
+ type GPTV3ResponseCustomToolCallDtoStatus = typeof GPTV3ResponseCustomToolCallDtoStatus[keyof typeof GPTV3ResponseCustomToolCallDtoStatus];
4186
+ declare const GPTV3ResponseCustomToolCallDtoStatus: {
4187
+ readonly in_progress: "in_progress";
4188
+ readonly completed: "completed";
4189
+ readonly incomplete: "incomplete";
5062
4190
  };
5063
4191
 
5064
4192
  /**
@@ -5068,36 +4196,21 @@ type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
5068
4196
  * OpenAPI spec version: 1.0
5069
4197
  */
5070
4198
 
5071
- interface GPTV3ResponseOutputItemImageGenerationCallDto {
5072
- /** The type of the image generation output item. */
5073
- type: GPTV3ResponseOutputItemImageGenerationCallDtoType;
5074
- /** The unique identifier for this image generation call. */
5075
- id: string;
5076
- /** The status of the image generation call. */
5077
- status: GPTV3ResponseOutputItemImageGenerationCallDtoStatus;
5078
- /** The generated image ID (when conversion is successful). */
5079
- imageId?: string;
5080
- /** The format of the generated image (e.g., "png", "jpeg"). */
5081
- format?: string;
5082
- /** The size of the generated image in bytes. */
5083
- size?: number;
5084
- /** Error message if the image generation failed. */
5085
- error?: string;
5086
- /** Additional metadata about the image generation. */
5087
- metadata?: GPTV3ResponseOutputItemImageGenerationCallDtoMetadata;
4199
+ interface GPTV3ResponseCustomToolCallDto {
4200
+ /** The unique identifier for this custom tool call. */
4201
+ id?: string;
4202
+ /** The type of the tool call. */
4203
+ type: GPTV3ResponseCustomToolCallDtoType;
4204
+ /** The name of the custom tool to run. */
4205
+ name: string;
4206
+ /** The unique ID of the tool call generated by the model. */
4207
+ call_id: string;
4208
+ /** The status of the tool call. */
4209
+ status?: GPTV3ResponseCustomToolCallDtoStatus;
4210
+ /** Input payload for the custom tool. */
4211
+ input: string;
5088
4212
  }
5089
4213
 
5090
- /**
5091
- * Generated by orval v7.10.0 🍺
5092
- * Do not edit manually.
5093
- * Hautech API
5094
- * OpenAPI spec version: 1.0
5095
- */
5096
- type GPTV3ResponseLocalShellCallActionDtoType = typeof GPTV3ResponseLocalShellCallActionDtoType[keyof typeof GPTV3ResponseLocalShellCallActionDtoType];
5097
- declare const GPTV3ResponseLocalShellCallActionDtoType: {
5098
- readonly exec: "exec";
5099
- };
5100
-
5101
4214
  /**
5102
4215
  * Generated by orval v7.10.0 🍺
5103
4216
  * Do not edit manually.
@@ -5105,10 +4218,11 @@ declare const GPTV3ResponseLocalShellCallActionDtoType: {
5105
4218
  * OpenAPI spec version: 1.0
5106
4219
  */
5107
4220
  /**
5108
- * Environment variables map.
4221
+ * @nullable
5109
4222
  */
5110
- type GPTV3ResponseLocalShellCallActionDtoEnv = {
5111
- [key: string]: unknown;
4223
+ type GPTV3ResponseInputItemReferenceDtoType = typeof GPTV3ResponseInputItemReferenceDtoType[keyof typeof GPTV3ResponseInputItemReferenceDtoType] | null;
4224
+ declare const GPTV3ResponseInputItemReferenceDtoType: {
4225
+ readonly item_reference: "item_reference";
5112
4226
  };
5113
4227
 
5114
4228
  /**
@@ -5118,17 +4232,10 @@ type GPTV3ResponseLocalShellCallActionDtoEnv = {
5118
4232
  * OpenAPI spec version: 1.0
5119
4233
  */
5120
4234
 
5121
- interface GPTV3ResponseLocalShellCallActionDto {
5122
- type: GPTV3ResponseLocalShellCallActionDtoType;
5123
- command: string[];
5124
- /** Environment variables map. */
5125
- env: GPTV3ResponseLocalShellCallActionDtoEnv;
5126
- /** @nullable */
5127
- timeout_ms?: number | null;
5128
- /** @nullable */
5129
- user?: string | null;
4235
+ interface GPTV3ResponseInputItemReferenceDto {
4236
+ id: string;
5130
4237
  /** @nullable */
5131
- working_directory?: string | null;
4238
+ type?: GPTV3ResponseInputItemReferenceDtoType;
5132
4239
  }
5133
4240
 
5134
4241
  /**
@@ -5137,12 +4244,8 @@ interface GPTV3ResponseLocalShellCallActionDto {
5137
4244
  * Hautech API
5138
4245
  * OpenAPI spec version: 1.0
5139
4246
  */
5140
- type GPTV3ResponseLocalShellCallDtoStatus = typeof GPTV3ResponseLocalShellCallDtoStatus[keyof typeof GPTV3ResponseLocalShellCallDtoStatus];
5141
- declare const GPTV3ResponseLocalShellCallDtoStatus: {
5142
- readonly in_progress: "in_progress";
5143
- readonly completed: "completed";
5144
- readonly incomplete: "incomplete";
5145
- };
4247
+
4248
+ type GPTV3InputInputOneOfItem = GPTV3ResponseInputItemMessage | GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseInputComputerCallOutputDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseInputFunctionCallOutputDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseInputItemImageGenerationCallDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseInputLocalShellCallDto | GPTV3ResponseInputLocalShellCallOutputDto | GPTV3ResponseInputMcpListToolsDto | GPTV3ResponseInputMcpApprovalRequestDto | GPTV3ResponseInputMcpApprovalResponseDto | GPTV3ResponseInputMcpCallDto | GPTV3ResponseCustomToolCallOutputDto | GPTV3ResponseCustomToolCallDto | GPTV3ResponseInputItemReferenceDto;
5146
4249
 
5147
4250
  /**
5148
4251
  * Generated by orval v7.10.0 🍺
@@ -5150,25 +4253,11 @@ declare const GPTV3ResponseLocalShellCallDtoStatus: {
5150
4253
  * Hautech API
5151
4254
  * OpenAPI spec version: 1.0
5152
4255
  */
5153
- type GPTV3ResponseLocalShellCallDtoType = typeof GPTV3ResponseLocalShellCallDtoType[keyof typeof GPTV3ResponseLocalShellCallDtoType];
5154
- declare const GPTV3ResponseLocalShellCallDtoType: {
5155
- readonly local_shell_call: "local_shell_call";
5156
- };
5157
4256
 
5158
4257
  /**
5159
- * Generated by orval v7.10.0 🍺
5160
- * Do not edit manually.
5161
- * Hautech API
5162
- * OpenAPI spec version: 1.0
4258
+ * 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.
5163
4259
  */
5164
-
5165
- interface GPTV3ResponseLocalShellCallDto {
5166
- id: string;
5167
- action: GPTV3ResponseLocalShellCallActionDto;
5168
- call_id: string;
5169
- status: GPTV3ResponseLocalShellCallDtoStatus;
5170
- type: GPTV3ResponseLocalShellCallDtoType;
5171
- }
4260
+ type GPTV3InputInput = string | GPTV3InputInputOneOfItem[];
5172
4261
 
5173
4262
  /**
5174
4263
  * Generated by orval v7.10.0 🍺
@@ -5176,9 +4265,12 @@ interface GPTV3ResponseLocalShellCallDto {
5176
4265
  * Hautech API
5177
4266
  * OpenAPI spec version: 1.0
5178
4267
  */
5179
- type GPTV3ResponseMcpCallDtoType = typeof GPTV3ResponseMcpCallDtoType[keyof typeof GPTV3ResponseMcpCallDtoType];
5180
- declare const GPTV3ResponseMcpCallDtoType: {
5181
- readonly mcp_call: "mcp_call";
4268
+ /**
4269
+ * The type of response format being defined: 'text'.
4270
+ */
4271
+ type GPTV3ResponseFormatTextDtoType = typeof GPTV3ResponseFormatTextDtoType[keyof typeof GPTV3ResponseFormatTextDtoType];
4272
+ declare const GPTV3ResponseFormatTextDtoType: {
4273
+ readonly text: "text";
5182
4274
  };
5183
4275
 
5184
4276
  /**
@@ -5188,16 +4280,9 @@ declare const GPTV3ResponseMcpCallDtoType: {
5188
4280
  * OpenAPI spec version: 1.0
5189
4281
  */
5190
4282
 
5191
- interface GPTV3ResponseMcpCallDto {
5192
- id: string;
5193
- arguments: string;
5194
- name: string;
5195
- server_label: string;
5196
- type: GPTV3ResponseMcpCallDtoType;
5197
- /** @nullable */
5198
- error?: string | null;
5199
- /** @nullable */
5200
- output?: string | null;
4283
+ interface GPTV3ResponseFormatTextDto {
4284
+ /** The type of response format being defined: 'text'. */
4285
+ type: GPTV3ResponseFormatTextDtoType;
5201
4286
  }
5202
4287
 
5203
4288
  /**
@@ -5207,11 +4292,11 @@ interface GPTV3ResponseMcpCallDto {
5207
4292
  * OpenAPI spec version: 1.0
5208
4293
  */
5209
4294
  /**
5210
- * @nullable
4295
+ * The schema for the response format, described satisfies a JSON Schema object.
5211
4296
  */
5212
- type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
4297
+ type GPTV3ResponseFormatJsonSchemaDtoSchema = {
5213
4298
  [key: string]: unknown;
5214
- } | null;
4299
+ };
5215
4300
 
5216
4301
  /**
5217
4302
  * Generated by orval v7.10.0 🍺
@@ -5219,8 +4304,12 @@ type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
5219
4304
  * Hautech API
5220
4305
  * OpenAPI spec version: 1.0
5221
4306
  */
5222
- type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
5223
- [key: string]: unknown;
4307
+ /**
4308
+ * The type of response format being defined: json_schema.
4309
+ */
4310
+ type GPTV3ResponseFormatJsonSchemaDtoType = typeof GPTV3ResponseFormatJsonSchemaDtoType[keyof typeof GPTV3ResponseFormatJsonSchemaDtoType];
4311
+ declare const GPTV3ResponseFormatJsonSchemaDtoType: {
4312
+ readonly json_schema: "json_schema";
5224
4313
  };
5225
4314
 
5226
4315
  /**
@@ -5230,13 +4319,17 @@ type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
5230
4319
  * OpenAPI spec version: 1.0
5231
4320
  */
5232
4321
 
5233
- interface GPTV3ResponseMcpListToolsToolDto {
4322
+ interface GPTV3ResponseFormatJsonSchemaDto {
4323
+ /** 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. */
5234
4324
  name: string;
5235
- /** @nullable */
5236
- annotations?: GPTV3ResponseMcpListToolsToolDtoAnnotations;
5237
- /** @nullable */
5238
- description?: string | null;
5239
- input_schema: GPTV3ResponseMcpListToolsToolDtoInputSchema;
4325
+ /** The schema for the response format, described satisfies a JSON Schema object. */
4326
+ schema: GPTV3ResponseFormatJsonSchemaDtoSchema;
4327
+ /** The type of response format being defined: json_schema. */
4328
+ type: GPTV3ResponseFormatJsonSchemaDtoType;
4329
+ /** A description of what the response format is for, used by the model to determine how to respond in the format. */
4330
+ description?: string;
4331
+ /** 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. */
4332
+ strict?: boolean;
5240
4333
  }
5241
4334
 
5242
4335
  /**
@@ -5245,10 +4338,11 @@ interface GPTV3ResponseMcpListToolsToolDto {
5245
4338
  * Hautech API
5246
4339
  * OpenAPI spec version: 1.0
5247
4340
  */
5248
- type GPTV3ResponseMcpListToolsDtoType = typeof GPTV3ResponseMcpListToolsDtoType[keyof typeof GPTV3ResponseMcpListToolsDtoType];
5249
- declare const GPTV3ResponseMcpListToolsDtoType: {
5250
- readonly mcp_list_tools: "mcp_list_tools";
5251
- };
4341
+
4342
+ /**
4343
+ * The format for the text response.
4344
+ */
4345
+ type GPTV3TextConfigDtoFormat = GPTV3ResponseFormatTextDto | GPTV3ResponseFormatJsonSchemaDto;
5252
4346
 
5253
4347
  /**
5254
4348
  * Generated by orval v7.10.0 🍺
@@ -5257,13 +4351,9 @@ declare const GPTV3ResponseMcpListToolsDtoType: {
5257
4351
  * OpenAPI spec version: 1.0
5258
4352
  */
5259
4353
 
5260
- interface GPTV3ResponseMcpListToolsDto {
5261
- id: string;
5262
- server_label: string;
5263
- tools: GPTV3ResponseMcpListToolsToolDto[];
5264
- type: GPTV3ResponseMcpListToolsDtoType;
5265
- /** @nullable */
5266
- error?: string | null;
4354
+ interface GPTV3TextConfigDto {
4355
+ /** The format for the text response. */
4356
+ format?: GPTV3TextConfigDtoFormat;
5267
4357
  }
5268
4358
 
5269
4359
  /**
@@ -5272,9 +4362,29 @@ interface GPTV3ResponseMcpListToolsDto {
5272
4362
  * Hautech API
5273
4363
  * OpenAPI spec version: 1.0
5274
4364
  */
5275
- type GPTV3ResponseMcpApprovalRequestDtoType = typeof GPTV3ResponseMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseMcpApprovalRequestDtoType];
5276
- declare const GPTV3ResponseMcpApprovalRequestDtoType: {
5277
- readonly mcp_approval_request: "mcp_approval_request";
4365
+ /**
4366
+ * The type of the tool.
4367
+ */
4368
+ type GPTV3WebSearchToolDtoType = typeof GPTV3WebSearchToolDtoType[keyof typeof GPTV3WebSearchToolDtoType];
4369
+ declare const GPTV3WebSearchToolDtoType: {
4370
+ readonly web_search_preview: "web_search_preview";
4371
+ readonly web_search_preview_2025_03_11: "web_search_preview_2025_03_11";
4372
+ };
4373
+
4374
+ /**
4375
+ * Generated by orval v7.10.0 🍺
4376
+ * Do not edit manually.
4377
+ * Hautech API
4378
+ * OpenAPI spec version: 1.0
4379
+ */
4380
+ /**
4381
+ * High level guidance for the amount of context window space to use for the search.
4382
+ */
4383
+ type GPTV3WebSearchToolDtoSearchContextSize = typeof GPTV3WebSearchToolDtoSearchContextSize[keyof typeof GPTV3WebSearchToolDtoSearchContextSize];
4384
+ declare const GPTV3WebSearchToolDtoSearchContextSize: {
4385
+ readonly low: "low";
4386
+ readonly medium: "medium";
4387
+ readonly high: "high";
5278
4388
  };
5279
4389
 
5280
4390
  /**
@@ -5284,12 +4394,11 @@ declare const GPTV3ResponseMcpApprovalRequestDtoType: {
5284
4394
  * OpenAPI spec version: 1.0
5285
4395
  */
5286
4396
 
5287
- interface GPTV3ResponseMcpApprovalRequestDto {
5288
- id: string;
5289
- arguments: string;
5290
- name: string;
5291
- server_label: string;
5292
- type: GPTV3ResponseMcpApprovalRequestDtoType;
4397
+ interface GPTV3WebSearchToolDto {
4398
+ /** The type of the tool. */
4399
+ type: GPTV3WebSearchToolDtoType;
4400
+ /** High level guidance for the amount of context window space to use for the search. */
4401
+ search_context_size?: GPTV3WebSearchToolDtoSearchContextSize;
5293
4402
  }
5294
4403
 
5295
4404
  /**
@@ -5299,7 +4408,7 @@ interface GPTV3ResponseMcpApprovalRequestDto {
5299
4408
  * OpenAPI spec version: 1.0
5300
4409
  */
5301
4410
 
5302
- type GPTV3ResponseDtoOutputItem = GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseOutputItemImageGenerationCallDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseLocalShellCallDto | GPTV3ResponseMcpCallDto | GPTV3ResponseMcpListToolsDto | GPTV3ResponseMcpApprovalRequestDto | GPTV3ResponseCustomToolCallDto;
4411
+ type GPTV3InputToolsItem = GPTV3FunctionToolDto | GPTV3FileSearchToolDto | GPTV3WebSearchToolDto | GPTV3ImageGenerationToolDto;
5303
4412
 
5304
4413
  /**
5305
4414
  * Generated by orval v7.10.0 🍺
@@ -5307,13 +4416,12 @@ type GPTV3ResponseDtoOutputItem = GPTV3ResponseOutputMessageDto | GPTV3ResponseF
5307
4416
  * Hautech API
5308
4417
  * OpenAPI spec version: 1.0
5309
4418
  */
5310
-
5311
- interface GPTV3ResponseDto {
5312
- /** Model output items. */
5313
- output: GPTV3ResponseDtoOutputItem[];
5314
- /** Concatenated text output from the model. */
5315
- output_text: string;
5316
- }
4419
+ /**
4420
+ * Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice.
4421
+ */
4422
+ type GPTV3InputToolChoice = {
4423
+ [key: string]: unknown;
4424
+ };
5317
4425
 
5318
4426
  /**
5319
4427
  * Generated by orval v7.10.0 🍺
@@ -5322,9 +4430,23 @@ interface GPTV3ResponseDto {
5322
4430
  * OpenAPI spec version: 1.0
5323
4431
  */
5324
4432
 
5325
- interface GPTV3Output {
5326
- kind: GPTV3OutputKind;
5327
- data: GPTV3ResponseDto;
4433
+ interface GPTV3Input {
4434
+ /** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
4435
+ model?: GPTV3InputModel;
4436
+ /** 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. */
4437
+ input?: GPTV3InputInput;
4438
+ /** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
4439
+ text?: GPTV3TextConfigDto;
4440
+ /** 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. */
4441
+ seed?: number;
4442
+ /** A list of tools the model may call. Supports function, file_search, web_search_preview, and image_generation tools. */
4443
+ tools?: GPTV3InputToolsItem[];
4444
+ /** Controls how the model chooses tools: "none" disables, "auto" lets the model decide, "required" forces a tool call, or specify an explicit tool choice. */
4445
+ tool_choice?: GPTV3InputToolChoice;
4446
+ /** Maximum number of output tokens to generate. */
4447
+ max_output_tokens?: number;
4448
+ /** Specifies which additional data to include in the response. For file search, use ["file_search_call.results"] to include search results. */
4449
+ include?: string[];
5328
4450
  }
5329
4451
 
5330
4452
  /**
@@ -5333,11 +4455,10 @@ interface GPTV3Output {
5333
4455
  * Hautech API
5334
4456
  * OpenAPI spec version: 1.0
5335
4457
  */
5336
-
5337
- /**
5338
- * The content of the response. Can be a string for simple text responses or an array of content with annotations for responses with citations.
5339
- */
5340
- type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
4458
+ type GPTV3OutputKind = typeof GPTV3OutputKind[keyof typeof GPTV3OutputKind];
4459
+ declare const GPTV3OutputKind: {
4460
+ readonly json: "json";
4461
+ };
5341
4462
 
5342
4463
  /**
5343
4464
  * Generated by orval v7.10.0 🍺
@@ -5346,12 +4467,11 @@ type GPTV3ResponseDtoContent = string | GPTV3ContentWithAnnotationsDto[];
5346
4467
  * OpenAPI spec version: 1.0
5347
4468
  */
5348
4469
  /**
5349
- * The finish reason for the response.
4470
+ * The type of the image generation output item.
5350
4471
  */
5351
- type GPTV3ResponseDtoFinishReason = typeof GPTV3ResponseDtoFinishReason[keyof typeof GPTV3ResponseDtoFinishReason];
5352
- declare const GPTV3ResponseDtoFinishReason: {
5353
- readonly stop: "stop";
5354
- readonly tool_calls: "tool_calls";
4472
+ type GPTV3ResponseOutputItemImageGenerationCallDtoType = typeof GPTV3ResponseOutputItemImageGenerationCallDtoType[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoType];
4473
+ declare const GPTV3ResponseOutputItemImageGenerationCallDtoType: {
4474
+ readonly image_generation_call: "image_generation_call";
5355
4475
  };
5356
4476
 
5357
4477
  /**
@@ -5361,11 +4481,14 @@ declare const GPTV3ResponseDtoFinishReason: {
5361
4481
  * OpenAPI spec version: 1.0
5362
4482
  */
5363
4483
  /**
5364
- * The role of the assistant.
4484
+ * The status of the image generation call.
5365
4485
  */
5366
- type GPTV3ResponseDtoRole = typeof GPTV3ResponseDtoRole[keyof typeof GPTV3ResponseDtoRole];
5367
- declare const GPTV3ResponseDtoRole: {
5368
- readonly assistant: "assistant";
4486
+ type GPTV3ResponseOutputItemImageGenerationCallDtoStatus = typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus[keyof typeof GPTV3ResponseOutputItemImageGenerationCallDtoStatus];
4487
+ declare const GPTV3ResponseOutputItemImageGenerationCallDtoStatus: {
4488
+ readonly in_progress: "in_progress";
4489
+ readonly completed: "completed";
4490
+ readonly generating: "generating";
4491
+ readonly failed: "failed";
5369
4492
  };
5370
4493
 
5371
4494
  /**
@@ -5375,11 +4498,10 @@ declare const GPTV3ResponseDtoRole: {
5375
4498
  * OpenAPI spec version: 1.0
5376
4499
  */
5377
4500
  /**
5378
- * The type of tool call: web_search_preview.
4501
+ * Additional metadata about the image generation.
5379
4502
  */
5380
- type GPTV3WebSearchCallDtoType = typeof GPTV3WebSearchCallDtoType[keyof typeof GPTV3WebSearchCallDtoType];
5381
- declare const GPTV3WebSearchCallDtoType: {
5382
- readonly web_search_preview: "web_search_preview";
4503
+ type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata = {
4504
+ [key: string]: unknown;
5383
4505
  };
5384
4506
 
5385
4507
  /**
@@ -5389,11 +4511,23 @@ declare const GPTV3WebSearchCallDtoType: {
5389
4511
  * OpenAPI spec version: 1.0
5390
4512
  */
5391
4513
 
5392
- interface GPTV3WebSearchCallDto {
5393
- /** The unique identifier for this tool call. */
4514
+ interface GPTV3ResponseOutputItemImageGenerationCallDto {
4515
+ /** The type of the image generation output item. */
4516
+ type: GPTV3ResponseOutputItemImageGenerationCallDtoType;
4517
+ /** The unique identifier for this image generation call. */
5394
4518
  id: string;
5395
- /** The type of tool call: web_search_preview. */
5396
- type: GPTV3WebSearchCallDtoType;
4519
+ /** The status of the image generation call. */
4520
+ status: GPTV3ResponseOutputItemImageGenerationCallDtoStatus;
4521
+ /** The generated image ID (when conversion is successful). */
4522
+ imageId?: string;
4523
+ /** The format of the generated image (e.g., "png", "jpeg"). */
4524
+ format?: string;
4525
+ /** The size of the generated image in bytes. */
4526
+ size?: number;
4527
+ /** Error message if the image generation failed. */
4528
+ error?: string;
4529
+ /** Additional metadata about the image generation. */
4530
+ metadata?: GPTV3ResponseOutputItemImageGenerationCallDtoMetadata;
5397
4531
  }
5398
4532
 
5399
4533
  /**
@@ -5402,8 +4536,10 @@ interface GPTV3WebSearchCallDto {
5402
4536
  * Hautech API
5403
4537
  * OpenAPI spec version: 1.0
5404
4538
  */
5405
-
5406
- type GPTV3ResponseDtoToolCallsItem = GPTV3FileSearchCallDto | GPTV3WebSearchCallDto | GPTV3ImageGenerationCallDto | GPTV3FunctionCallDto;
4539
+ type GPTV3ResponseLocalShellCallActionDtoType = typeof GPTV3ResponseLocalShellCallActionDtoType[keyof typeof GPTV3ResponseLocalShellCallActionDtoType];
4540
+ declare const GPTV3ResponseLocalShellCallActionDtoType: {
4541
+ readonly exec: "exec";
4542
+ };
5407
4543
 
5408
4544
  /**
5409
4545
  * Generated by orval v7.10.0 🍺
@@ -5411,11 +4547,12 @@ type GPTV3ResponseDtoToolCallsItem = GPTV3FileSearchCallDto | GPTV3WebSearchCall
5411
4547
  * Hautech API
5412
4548
  * OpenAPI spec version: 1.0
5413
4549
  */
5414
-
5415
- interface GPTV3ResponseImageGenerationResultsDto {
5416
- /** Array of image generation results. */
5417
- results: GPTV3ResponseOutputItemImageGenerationCallDto[];
5418
- }
4550
+ /**
4551
+ * Environment variables map.
4552
+ */
4553
+ type GPTV3ResponseLocalShellCallActionDtoEnv = {
4554
+ [key: string]: unknown;
4555
+ };
5419
4556
 
5420
4557
  /**
5421
4558
  * Generated by orval v7.10.0 🍺
@@ -5424,7 +4561,18 @@ interface GPTV3ResponseImageGenerationResultsDto {
5424
4561
  * OpenAPI spec version: 1.0
5425
4562
  */
5426
4563
 
5427
- type GPTV3SystemMessageDtoContentItemOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
4564
+ interface GPTV3ResponseLocalShellCallActionDto {
4565
+ type: GPTV3ResponseLocalShellCallActionDtoType;
4566
+ command: string[];
4567
+ /** Environment variables map. */
4568
+ env: GPTV3ResponseLocalShellCallActionDtoEnv;
4569
+ /** @nullable */
4570
+ timeout_ms?: number | null;
4571
+ /** @nullable */
4572
+ user?: string | null;
4573
+ /** @nullable */
4574
+ working_directory?: string | null;
4575
+ }
5428
4576
 
5429
4577
  /**
5430
4578
  * Generated by orval v7.10.0 🍺
@@ -5432,12 +4580,11 @@ type GPTV3SystemMessageDtoContentItemOneOfItem = GPTV3TextInputDto | GPTV3ImageI
5432
4580
  * Hautech API
5433
4581
  * OpenAPI spec version: 1.0
5434
4582
  */
5435
- /**
5436
- * The role of the message sender.
5437
- */
5438
- type GPTV3SystemMessageDtoRole = typeof GPTV3SystemMessageDtoRole[keyof typeof GPTV3SystemMessageDtoRole];
5439
- declare const GPTV3SystemMessageDtoRole: {
5440
- readonly system: "system";
4583
+ type GPTV3ResponseLocalShellCallDtoStatus = typeof GPTV3ResponseLocalShellCallDtoStatus[keyof typeof GPTV3ResponseLocalShellCallDtoStatus];
4584
+ declare const GPTV3ResponseLocalShellCallDtoStatus: {
4585
+ readonly in_progress: "in_progress";
4586
+ readonly completed: "completed";
4587
+ readonly incomplete: "incomplete";
5441
4588
  };
5442
4589
 
5443
4590
  /**
@@ -5446,12 +4593,9 @@ declare const GPTV3SystemMessageDtoRole: {
5446
4593
  * Hautech API
5447
4594
  * OpenAPI spec version: 1.0
5448
4595
  */
5449
- /**
5450
- * The type of the message input. Always message.
5451
- */
5452
- type GPTV3SystemMessageDtoType = typeof GPTV3SystemMessageDtoType[keyof typeof GPTV3SystemMessageDtoType];
5453
- declare const GPTV3SystemMessageDtoType: {
5454
- readonly message: "message";
4596
+ type GPTV3ResponseLocalShellCallDtoType = typeof GPTV3ResponseLocalShellCallDtoType[keyof typeof GPTV3ResponseLocalShellCallDtoType];
4597
+ declare const GPTV3ResponseLocalShellCallDtoType: {
4598
+ readonly local_shell_call: "local_shell_call";
5455
4599
  };
5456
4600
 
5457
4601
  /**
@@ -5461,13 +4605,12 @@ declare const GPTV3SystemMessageDtoType: {
5461
4605
  * OpenAPI spec version: 1.0
5462
4606
  */
5463
4607
 
5464
- interface GPTV3SystemMessageDto {
5465
- /** The content of the system message. Can be a string or an array of text and image inputs. */
5466
- content: GPTV3SystemMessageDtoContentItemOneOfItem[][];
5467
- /** The role of the message sender. */
5468
- role: GPTV3SystemMessageDtoRole;
5469
- /** The type of the message input. Always message. */
5470
- type: GPTV3SystemMessageDtoType;
4608
+ interface GPTV3ResponseLocalShellCallDto {
4609
+ id: string;
4610
+ action: GPTV3ResponseLocalShellCallActionDto;
4611
+ call_id: string;
4612
+ status: GPTV3ResponseLocalShellCallDtoStatus;
4613
+ type: GPTV3ResponseLocalShellCallDtoType;
5471
4614
  }
5472
4615
 
5473
4616
  /**
@@ -5476,8 +4619,10 @@ interface GPTV3SystemMessageDto {
5476
4619
  * Hautech API
5477
4620
  * OpenAPI spec version: 1.0
5478
4621
  */
5479
-
5480
- type GPTV3SystemMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
4622
+ type GPTV3ResponseMcpCallDtoType = typeof GPTV3ResponseMcpCallDtoType[keyof typeof GPTV3ResponseMcpCallDtoType];
4623
+ declare const GPTV3ResponseMcpCallDtoType: {
4624
+ readonly mcp_call: "mcp_call";
4625
+ };
5481
4626
 
5482
4627
  /**
5483
4628
  * Generated by orval v7.10.0 🍺
@@ -5486,10 +4631,17 @@ type GPTV3SystemMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInput
5486
4631
  * OpenAPI spec version: 1.0
5487
4632
  */
5488
4633
 
5489
- /**
5490
- * The content of the system message. Can be a string or an array of text and image inputs.
5491
- */
5492
- type GPTV3SystemMessageDtoContent = string | GPTV3SystemMessageDtoContentOneOfItem[];
4634
+ interface GPTV3ResponseMcpCallDto {
4635
+ id: string;
4636
+ arguments: string;
4637
+ name: string;
4638
+ server_label: string;
4639
+ type: GPTV3ResponseMcpCallDtoType;
4640
+ /** @nullable */
4641
+ error?: string | null;
4642
+ /** @nullable */
4643
+ output?: string | null;
4644
+ }
5493
4645
 
5494
4646
  /**
5495
4647
  * Generated by orval v7.10.0 🍺
@@ -5498,18 +4650,11 @@ type GPTV3SystemMessageDtoContent = string | GPTV3SystemMessageDtoContentOneOfIt
5498
4650
  * OpenAPI spec version: 1.0
5499
4651
  */
5500
4652
  /**
5501
- * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type.
4653
+ * @nullable
5502
4654
  */
5503
- type GPTV3ToolChoiceDtoType = typeof GPTV3ToolChoiceDtoType[keyof typeof GPTV3ToolChoiceDtoType];
5504
- declare const GPTV3ToolChoiceDtoType: {
5505
- readonly none: "none";
5506
- readonly auto: "auto";
5507
- readonly required: "required";
5508
- readonly function: "function";
5509
- readonly file_search: "file_search";
5510
- readonly web_search_preview: "web_search_preview";
5511
- readonly image_generation: "image_generation";
5512
- };
4655
+ type GPTV3ResponseMcpListToolsToolDtoAnnotations = {
4656
+ [key: string]: unknown;
4657
+ } | null;
5513
4658
 
5514
4659
  /**
5515
4660
  * Generated by orval v7.10.0 🍺
@@ -5517,10 +4662,9 @@ declare const GPTV3ToolChoiceDtoType: {
5517
4662
  * Hautech API
5518
4663
  * OpenAPI spec version: 1.0
5519
4664
  */
5520
- interface GPTV3ToolChoiceFunctionDto {
5521
- /** The name of the function to call. */
5522
- name: string;
5523
- }
4665
+ type GPTV3ResponseMcpListToolsToolDtoInputSchema = {
4666
+ [key: string]: unknown;
4667
+ };
5524
4668
 
5525
4669
  /**
5526
4670
  * Generated by orval v7.10.0 🍺
@@ -5529,11 +4673,13 @@ interface GPTV3ToolChoiceFunctionDto {
5529
4673
  * OpenAPI spec version: 1.0
5530
4674
  */
5531
4675
 
5532
- interface GPTV3ToolChoiceDto {
5533
- /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific tool type. */
5534
- type: GPTV3ToolChoiceDtoType;
5535
- /** The function to call, if type is `function`. */
5536
- function?: GPTV3ToolChoiceFunctionDto;
4676
+ interface GPTV3ResponseMcpListToolsToolDto {
4677
+ name: string;
4678
+ /** @nullable */
4679
+ annotations?: GPTV3ResponseMcpListToolsToolDtoAnnotations;
4680
+ /** @nullable */
4681
+ description?: string | null;
4682
+ input_schema: GPTV3ResponseMcpListToolsToolDtoInputSchema;
5537
4683
  }
5538
4684
 
5539
4685
  /**
@@ -5542,15 +4688,9 @@ interface GPTV3ToolChoiceDto {
5542
4688
  * Hautech API
5543
4689
  * OpenAPI spec version: 1.0
5544
4690
  */
5545
- /**
5546
- * The type of the tool.
5547
- */
5548
- type GPTV3ToolDtoType = typeof GPTV3ToolDtoType[keyof typeof GPTV3ToolDtoType];
5549
- declare const GPTV3ToolDtoType: {
5550
- readonly function: "function";
5551
- readonly file_search: "file_search";
5552
- readonly web_search_preview: "web_search_preview";
5553
- readonly image_generation: "image_generation";
4691
+ type GPTV3ResponseMcpListToolsDtoType = typeof GPTV3ResponseMcpListToolsDtoType[keyof typeof GPTV3ResponseMcpListToolsDtoType];
4692
+ declare const GPTV3ResponseMcpListToolsDtoType: {
4693
+ readonly mcp_list_tools: "mcp_list_tools";
5554
4694
  };
5555
4695
 
5556
4696
  /**
@@ -5560,9 +4700,13 @@ declare const GPTV3ToolDtoType: {
5560
4700
  * OpenAPI spec version: 1.0
5561
4701
  */
5562
4702
 
5563
- interface GPTV3ToolDto {
5564
- /** The type of the tool. */
5565
- type: GPTV3ToolDtoType;
4703
+ interface GPTV3ResponseMcpListToolsDto {
4704
+ id: string;
4705
+ server_label: string;
4706
+ tools: GPTV3ResponseMcpListToolsToolDto[];
4707
+ type: GPTV3ResponseMcpListToolsDtoType;
4708
+ /** @nullable */
4709
+ error?: string | null;
5566
4710
  }
5567
4711
 
5568
4712
  /**
@@ -5571,8 +4715,10 @@ interface GPTV3ToolDto {
5571
4715
  * Hautech API
5572
4716
  * OpenAPI spec version: 1.0
5573
4717
  */
5574
-
5575
- type GPTV3UserMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDto;
4718
+ type GPTV3ResponseMcpApprovalRequestDtoType = typeof GPTV3ResponseMcpApprovalRequestDtoType[keyof typeof GPTV3ResponseMcpApprovalRequestDtoType];
4719
+ declare const GPTV3ResponseMcpApprovalRequestDtoType: {
4720
+ readonly mcp_approval_request: "mcp_approval_request";
4721
+ };
5576
4722
 
5577
4723
  /**
5578
4724
  * Generated by orval v7.10.0 🍺
@@ -5581,10 +4727,13 @@ type GPTV3UserMessageDtoContentOneOfItem = GPTV3TextInputDto | GPTV3ImageInputDt
5581
4727
  * OpenAPI spec version: 1.0
5582
4728
  */
5583
4729
 
5584
- /**
5585
- * The content of the user message. Can be a string or an array of text and image inputs.
5586
- */
5587
- type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[];
4730
+ interface GPTV3ResponseMcpApprovalRequestDto {
4731
+ id: string;
4732
+ arguments: string;
4733
+ name: string;
4734
+ server_label: string;
4735
+ type: GPTV3ResponseMcpApprovalRequestDtoType;
4736
+ }
5588
4737
 
5589
4738
  /**
5590
4739
  * Generated by orval v7.10.0 🍺
@@ -5592,13 +4741,8 @@ type GPTV3UserMessageDtoContent = string | GPTV3UserMessageDtoContentOneOfItem[]
5592
4741
  * Hautech API
5593
4742
  * OpenAPI spec version: 1.0
5594
4743
  */
5595
- /**
5596
- * The role of the message sender.
5597
- */
5598
- type GPTV3UserMessageDtoRole = typeof GPTV3UserMessageDtoRole[keyof typeof GPTV3UserMessageDtoRole];
5599
- declare const GPTV3UserMessageDtoRole: {
5600
- readonly user: "user";
5601
- };
4744
+
4745
+ type GPTV3ResponseDtoOutputItem = GPTV3ResponseOutputMessageDto | GPTV3ResponseFileSearchToolCallDto | GPTV3ResponseFunctionWebSearchDto | GPTV3ResponseOutputItemImageGenerationCallDto | GPTV3ResponseFunctionToolCallDto | GPTV3ResponseComputerToolCallDto | GPTV3ResponseReasoningItemDto | GPTV3ResponseCodeInterpreterToolCallDto | GPTV3ResponseLocalShellCallDto | GPTV3ResponseMcpCallDto | GPTV3ResponseMcpListToolsDto | GPTV3ResponseMcpApprovalRequestDto | GPTV3ResponseCustomToolCallDto;
5602
4746
 
5603
4747
  /**
5604
4748
  * Generated by orval v7.10.0 🍺
@@ -5606,13 +4750,13 @@ declare const GPTV3UserMessageDtoRole: {
5606
4750
  * Hautech API
5607
4751
  * OpenAPI spec version: 1.0
5608
4752
  */
5609
- /**
5610
- * The type of the message input. Always message.
5611
- */
5612
- type GPTV3UserMessageDtoType = typeof GPTV3UserMessageDtoType[keyof typeof GPTV3UserMessageDtoType];
5613
- declare const GPTV3UserMessageDtoType: {
5614
- readonly message: "message";
5615
- };
4753
+
4754
+ interface GPTV3ResponseDto {
4755
+ /** Model output items. */
4756
+ output: GPTV3ResponseDtoOutputItem[];
4757
+ /** Concatenated text output from the model. */
4758
+ output_text: string;
4759
+ }
5616
4760
 
5617
4761
  /**
5618
4762
  * Generated by orval v7.10.0 🍺
@@ -5621,13 +4765,9 @@ declare const GPTV3UserMessageDtoType: {
5621
4765
  * OpenAPI spec version: 1.0
5622
4766
  */
5623
4767
 
5624
- interface GPTV3UserMessageDto {
5625
- /** The content of the user message. Can be a string or an array of text and image inputs. */
5626
- content: GPTV3UserMessageDtoContent;
5627
- /** The role of the message sender. */
5628
- role: GPTV3UserMessageDtoRole;
5629
- /** The type of the message input. Always message. */
5630
- type: GPTV3UserMessageDtoType;
4768
+ interface GPTV3Output {
4769
+ kind: GPTV3OutputKind;
4770
+ data: GPTV3ResponseDto;
5631
4771
  }
5632
4772
 
5633
4773
  /**
@@ -5636,13 +4776,11 @@ interface GPTV3UserMessageDto {
5636
4776
  * Hautech API
5637
4777
  * OpenAPI spec version: 1.0
5638
4778
  */
5639
- /**
5640
- * The type of the web search result. This is the FIRST output item when web_search tool is called.
5641
- */
5642
- type GPTV3WebSearchResultDtoType = typeof GPTV3WebSearchResultDtoType[keyof typeof GPTV3WebSearchResultDtoType];
5643
- declare const GPTV3WebSearchResultDtoType: {
5644
- readonly web_search_call: "web_search_call";
5645
- };
4779
+
4780
+ interface GPTV3ResponseImageGenerationResultsDto {
4781
+ /** Array of image generation results. */
4782
+ results: GPTV3ResponseOutputItemImageGenerationCallDto[];
4783
+ }
5646
4784
 
5647
4785
  /**
5648
4786
  * Generated by orval v7.10.0 🍺
@@ -5651,13 +4789,11 @@ declare const GPTV3WebSearchResultDtoType: {
5651
4789
  * OpenAPI spec version: 1.0
5652
4790
  */
5653
4791
  /**
5654
- * The status of the web search call.
4792
+ * The type of tool call: web_search_preview.
5655
4793
  */
5656
- type GPTV3WebSearchResultDtoStatus = typeof GPTV3WebSearchResultDtoStatus[keyof typeof GPTV3WebSearchResultDtoStatus];
5657
- declare const GPTV3WebSearchResultDtoStatus: {
5658
- readonly completed: "completed";
5659
- readonly failed: "failed";
5660
- readonly pending: "pending";
4794
+ type GPTV3WebSearchCallDtoType = typeof GPTV3WebSearchCallDtoType[keyof typeof GPTV3WebSearchCallDtoType];
4795
+ declare const GPTV3WebSearchCallDtoType: {
4796
+ readonly web_search_preview: "web_search_preview";
5661
4797
  };
5662
4798
 
5663
4799
  /**
@@ -5667,13 +4803,11 @@ declare const GPTV3WebSearchResultDtoStatus: {
5667
4803
  * OpenAPI spec version: 1.0
5668
4804
  */
5669
4805
 
5670
- interface GPTV3WebSearchResultDto {
5671
- /** The type of the web search result. This is the FIRST output item when web_search tool is called. */
5672
- type: GPTV3WebSearchResultDtoType;
5673
- /** The unique identifier for this web search call. */
4806
+ interface GPTV3WebSearchCallDto {
4807
+ /** The unique identifier for this tool call. */
5674
4808
  id: string;
5675
- /** The status of the web search call. */
5676
- status: GPTV3WebSearchResultDtoStatus;
4809
+ /** The type of tool call: web_search_preview. */
4810
+ type: GPTV3WebSearchCallDtoType;
5677
4811
  }
5678
4812
 
5679
4813
  /**
@@ -7605,78 +6739,6 @@ interface ListCollectionsParamsDto {
7605
6739
  cursor?: string;
7606
6740
  }
7607
6741
 
7608
- /**
7609
- * Generated by orval v7.10.0 🍺
7610
- * Do not edit manually.
7611
- * Hautech API
7612
- * OpenAPI spec version: 1.0
7613
- */
7614
- type LoraDtoInput = {
7615
- [key: string]: unknown;
7616
- };
7617
-
7618
- /**
7619
- * Generated by orval v7.10.0 🍺
7620
- * Do not edit manually.
7621
- * Hautech API
7622
- * OpenAPI spec version: 1.0
7623
- */
7624
- type LoraDtoOutput = {
7625
- [key: string]: unknown;
7626
- };
7627
-
7628
- /**
7629
- * Generated by orval v7.10.0 🍺
7630
- * Do not edit manually.
7631
- * Hautech API
7632
- * OpenAPI spec version: 1.0
7633
- */
7634
- type LoraDtoStatus = typeof LoraDtoStatus[keyof typeof LoraDtoStatus];
7635
- declare const LoraDtoStatus: {
7636
- readonly starting: "starting";
7637
- readonly processing: "processing";
7638
- readonly succeeded: "succeeded";
7639
- readonly failed: "failed";
7640
- readonly canceled: "canceled";
7641
- };
7642
-
7643
- /**
7644
- * Generated by orval v7.10.0 🍺
7645
- * Do not edit manually.
7646
- * Hautech API
7647
- * OpenAPI spec version: 1.0
7648
- */
7649
-
7650
- interface LoraDto {
7651
- modelName: string;
7652
- modelOwner: string;
7653
- modelVersion: string;
7654
- trainingId: string;
7655
- connectedOperationId: string;
7656
- weightsUrl?: string;
7657
- destination: string;
7658
- input: LoraDtoInput;
7659
- error?: string;
7660
- output?: LoraDtoOutput;
7661
- status: LoraDtoStatus;
7662
- creatorId: string;
7663
- createdAt: string;
7664
- updatedAt: string;
7665
- completedAt?: string;
7666
- }
7667
-
7668
- /**
7669
- * Generated by orval v7.10.0 🍺
7670
- * Do not edit manually.
7671
- * Hautech API
7672
- * OpenAPI spec version: 1.0
7673
- */
7674
-
7675
- interface ListLorasDto {
7676
- data: LoraDto[];
7677
- pageInfo: PageInfoDto;
7678
- }
7679
-
7680
6742
  /**
7681
6743
  * Generated by orval v7.10.0 🍺
7682
6744
  * Do not edit manually.
@@ -8079,6 +7141,16 @@ type WorkflowDtoData = {
8079
7141
  [key: string]: unknown;
8080
7142
  };
8081
7143
 
7144
+ /**
7145
+ * Generated by orval v7.10.0 🍺
7146
+ * Do not edit manually.
7147
+ * Hautech API
7148
+ * OpenAPI spec version: 1.0
7149
+ */
7150
+ type WorkflowDtoPipelineTemplate = {
7151
+ [key: string]: unknown;
7152
+ };
7153
+
8082
7154
  /**
8083
7155
  * Generated by orval v7.10.0 🍺
8084
7156
  * Do not edit manually.
@@ -8100,6 +7172,7 @@ interface WorkflowDto {
8100
7172
  id: string;
8101
7173
  creatorId: string;
8102
7174
  data: WorkflowDtoData;
7175
+ pipelineTemplate?: WorkflowDtoPipelineTemplate;
8103
7176
  version: string;
8104
7177
  metadata: WorkflowDtoMetadata;
8105
7178
  createdAt: string;
@@ -8124,7 +7197,7 @@ interface ListWorkflowsDto {
8124
7197
  * Hautech API
8125
7198
  * OpenAPI spec version: 1.0
8126
7199
  */
8127
- type LoraControllerGetV1200 = {
7200
+ type LoraDtoInput = {
8128
7201
  [key: string]: unknown;
8129
7202
  };
8130
7203
 
@@ -8134,10 +7207,8 @@ type LoraControllerGetV1200 = {
8134
7207
  * Hautech API
8135
7208
  * OpenAPI spec version: 1.0
8136
7209
  */
8137
- type LoraControllerListV1OrderBy = typeof LoraControllerListV1OrderBy[keyof typeof LoraControllerListV1OrderBy];
8138
- declare const LoraControllerListV1OrderBy: {
8139
- readonly createdAt_ASC: "createdAt_ASC";
8140
- readonly createdAt_DESC: "createdAt_DESC";
7210
+ type LoraDtoOutput = {
7211
+ [key: string]: unknown;
8141
7212
  };
8142
7213
 
8143
7214
  /**
@@ -8146,8 +7217,8 @@ declare const LoraControllerListV1OrderBy: {
8146
7217
  * Hautech API
8147
7218
  * OpenAPI spec version: 1.0
8148
7219
  */
8149
- type LoraControllerListV1Status = typeof LoraControllerListV1Status[keyof typeof LoraControllerListV1Status];
8150
- declare const LoraControllerListV1Status: {
7220
+ type LoraDtoStatus = typeof LoraDtoStatus[keyof typeof LoraDtoStatus];
7221
+ declare const LoraDtoStatus: {
8151
7222
  readonly starting: "starting";
8152
7223
  readonly processing: "processing";
8153
7224
  readonly succeeded: "succeeded";
@@ -8162,15 +7233,23 @@ declare const LoraControllerListV1Status: {
8162
7233
  * OpenAPI spec version: 1.0
8163
7234
  */
8164
7235
 
8165
- type LoraControllerListV1Params = {
8166
- orderBy?: LoraControllerListV1OrderBy;
8167
- limit?: number;
8168
- status?: LoraControllerListV1Status;
8169
- modelOwner?: string;
8170
- modelName?: string;
8171
- modelVersion?: string;
8172
- cursor?: string;
8173
- };
7236
+ interface LoraDto {
7237
+ modelName: string;
7238
+ modelOwner: string;
7239
+ modelVersion: string;
7240
+ trainingId: string;
7241
+ connectedOperationId: string;
7242
+ weightsUrl?: string;
7243
+ destination: string;
7244
+ input: LoraDtoInput;
7245
+ error?: string;
7246
+ output?: LoraDtoOutput;
7247
+ status: LoraDtoStatus;
7248
+ creatorId: string;
7249
+ createdAt: string;
7250
+ updatedAt: string;
7251
+ completedAt?: string;
7252
+ }
8174
7253
 
8175
7254
  /**
8176
7255
  * Generated by orval v7.10.0 🍺
@@ -8321,90 +7400,6 @@ interface LoraTrainingResponse {
8321
7400
  updatedAt: string;
8322
7401
  }
8323
7402
 
8324
- /**
8325
- * Generated by orval v7.10.0 🍺
8326
- * Do not edit manually.
8327
- * Hautech API
8328
- * OpenAPI spec version: 1.0
8329
- */
8330
- type LoraWebhookDtoStatus = typeof LoraWebhookDtoStatus[keyof typeof LoraWebhookDtoStatus];
8331
- declare const LoraWebhookDtoStatus: {
8332
- readonly starting: "starting";
8333
- readonly processing: "processing";
8334
- readonly succeeded: "succeeded";
8335
- readonly failed: "failed";
8336
- readonly canceled: "canceled";
8337
- };
8338
-
8339
- /**
8340
- * Generated by orval v7.10.0 🍺
8341
- * Do not edit manually.
8342
- * Hautech API
8343
- * OpenAPI spec version: 1.0
8344
- */
8345
- type LoraWebhookDtoInput = {
8346
- [key: string]: unknown;
8347
- };
8348
-
8349
- /**
8350
- * Generated by orval v7.10.0 🍺
8351
- * Do not edit manually.
8352
- * Hautech API
8353
- * OpenAPI spec version: 1.0
8354
- */
8355
- type LoraWebhookDtoMetrics = {
8356
- [key: string]: unknown;
8357
- };
8358
-
8359
- /**
8360
- * Generated by orval v7.10.0 🍺
8361
- * Do not edit manually.
8362
- * Hautech API
8363
- * OpenAPI spec version: 1.0
8364
- */
8365
- /**
8366
- * @nullable
8367
- */
8368
- type LoraWebhookDtoOutput = {
8369
- [key: string]: unknown;
8370
- } | null;
8371
-
8372
- /**
8373
- * Generated by orval v7.10.0 🍺
8374
- * Do not edit manually.
8375
- * Hautech API
8376
- * OpenAPI spec version: 1.0
8377
- */
8378
- type LoraWebhookDtoUrls = {
8379
- [key: string]: unknown;
8380
- };
8381
-
8382
- /**
8383
- * Generated by orval v7.10.0 🍺
8384
- * Do not edit manually.
8385
- * Hautech API
8386
- * OpenAPI spec version: 1.0
8387
- */
8388
-
8389
- interface LoraWebhookDto {
8390
- id: string;
8391
- status: LoraWebhookDtoStatus;
8392
- error?: string;
8393
- model?: string;
8394
- version?: string;
8395
- webhook?: string;
8396
- created_at?: string;
8397
- started_at?: string;
8398
- completed_at?: string;
8399
- data_removed?: boolean;
8400
- input?: LoraWebhookDtoInput;
8401
- metrics?: LoraWebhookDtoMetrics;
8402
- /** @nullable */
8403
- output?: LoraWebhookDtoOutput;
8404
- urls?: LoraWebhookDtoUrls;
8405
- logs?: string;
8406
- }
8407
-
8408
7403
  /**
8409
7404
  * Generated by orval v7.10.0 🍺
8410
7405
  * Do not edit manually.
@@ -10073,16 +9068,6 @@ interface SeedV1Request {
10073
9068
  metadata?: SeedV1RequestMetadata;
10074
9069
  }
10075
9070
 
10076
- /**
10077
- * Generated by orval v7.10.0 🍺
10078
- * Do not edit manually.
10079
- * Hautech API
10080
- * OpenAPI spec version: 1.0
10081
- */
10082
- type SeedV1RequestInput = {
10083
- [key: string]: unknown;
10084
- };
10085
-
10086
9071
  /**
10087
9072
  * Generated by orval v7.10.0 🍺
10088
9073
  * Do not edit manually.
@@ -10587,97 +9572,6 @@ type StacksControllerListStacksV1Params = {
10587
9572
  cursor?: string;
10588
9573
  };
10589
9574
 
10590
- /**
10591
- * Generated by orval v7.10.0 🍺
10592
- * Do not edit manually.
10593
- * Hautech API
10594
- * OpenAPI spec version: 1.0
10595
- */
10596
- interface StartFluxTrainingParamsDto {
10597
- modelVersion?: string;
10598
- modelDestination?: string;
10599
- inputImages: string;
10600
- trainingSteps?: number;
10601
- }
10602
-
10603
- /**
10604
- * Generated by orval v7.10.0 🍺
10605
- * Do not edit manually.
10606
- * Hautech API
10607
- * OpenAPI spec version: 1.0
10608
- */
10609
- interface StartLoraTrainingParamsDto {
10610
- modelVersion?: string;
10611
- modelDestination?: string;
10612
- inputImages: string;
10613
- triggerWord: string;
10614
- trainingSteps?: number;
10615
- }
10616
-
10617
- /**
10618
- * Generated by orval v7.10.0 🍺
10619
- * Do not edit manually.
10620
- * Hautech API
10621
- * OpenAPI spec version: 1.0
10622
- */
10623
- type StartNaomiTrainingParamsDtoLrScheduler = typeof StartNaomiTrainingParamsDtoLrScheduler[keyof typeof StartNaomiTrainingParamsDtoLrScheduler];
10624
- declare const StartNaomiTrainingParamsDtoLrScheduler: {
10625
- readonly linear: "linear";
10626
- readonly cosine: "cosine";
10627
- readonly polynomial: "polynomial";
10628
- };
10629
-
10630
- /**
10631
- * Generated by orval v7.10.0 🍺
10632
- * Do not edit manually.
10633
- * Hautech API
10634
- * OpenAPI spec version: 1.0
10635
- */
10636
- type StartNaomiTrainingParamsDtoMixedPrecision = typeof StartNaomiTrainingParamsDtoMixedPrecision[keyof typeof StartNaomiTrainingParamsDtoMixedPrecision];
10637
- declare const StartNaomiTrainingParamsDtoMixedPrecision: {
10638
- readonly no: "no";
10639
- readonly fp16: "fp16";
10640
- readonly bf16: "bf16";
10641
- };
10642
-
10643
- /**
10644
- * Generated by orval v7.10.0 🍺
10645
- * Do not edit manually.
10646
- * Hautech API
10647
- * OpenAPI spec version: 1.0
10648
- */
10649
-
10650
- interface StartNaomiTrainingParamsDto {
10651
- modelVersion?: string;
10652
- modelDestination?: string;
10653
- zipFile: string;
10654
- modelNameOrPath?: string;
10655
- epochs?: number;
10656
- batchSizePerDevice?: number;
10657
- vaePath?: string;
10658
- numWorkers?: number;
10659
- logEvery?: number;
10660
- ckptEvery?: number;
10661
- maxGradNorm?: number;
10662
- lr?: number;
10663
- maxInputLengthLimit?: number;
10664
- conditionDropoutProb?: number;
10665
- adamWeightDecay?: number;
10666
- keepRawResolution?: boolean;
10667
- maxImageSize?: number;
10668
- useLora?: boolean;
10669
- loraRank?: number;
10670
- useEma?: boolean;
10671
- lrWarmupSteps?: number;
10672
- reportTo?: string;
10673
- gradientAccumulationSteps?: number;
10674
- emaDecay?: number;
10675
- emaPath?: string;
10676
- useDynamicShifting?: boolean;
10677
- lrScheduler?: StartNaomiTrainingParamsDtoLrScheduler;
10678
- mixedPrecision?: StartNaomiTrainingParamsDtoMixedPrecision;
10679
- }
10680
-
10681
9575
  /**
10682
9576
  * Generated by orval v7.10.0 🍺
10683
9577
  * Do not edit manually.
@@ -11259,6 +10153,16 @@ type UpdateWorkflowParamsDtoData = {
11259
10153
  [key: string]: unknown;
11260
10154
  };
11261
10155
 
10156
+ /**
10157
+ * Generated by orval v7.10.0 🍺
10158
+ * Do not edit manually.
10159
+ * Hautech API
10160
+ * OpenAPI spec version: 1.0
10161
+ */
10162
+ type UpdateWorkflowParamsDtoPipelineTemplate = {
10163
+ [key: string]: unknown;
10164
+ };
10165
+
11262
10166
  /**
11263
10167
  * Generated by orval v7.10.0 🍺
11264
10168
  * Do not edit manually.
@@ -11278,6 +10182,7 @@ type UpdateWorkflowParamsDtoMetadata = {
11278
10182
 
11279
10183
  interface UpdateWorkflowParamsDto {
11280
10184
  data?: UpdateWorkflowParamsDtoData;
10185
+ pipelineTemplate?: UpdateWorkflowParamsDtoPipelineTemplate;
11281
10186
  version?: string;
11282
10187
  metadata?: UpdateWorkflowParamsDtoMetadata;
11283
10188
  }
@@ -11809,6 +10714,9 @@ declare const apiDefinitions: {
11809
10714
  get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<WorkflowDto | null, any>>;
11810
10715
  list: (params?: WorkflowsControllerListWorkflowsV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListWorkflowsDto, any>>;
11811
10716
  update: (id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<WorkflowDto, any>>;
10717
+ delete: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
10718
+ getSchema: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
10719
+ run: (id: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<RunWorkflowResponseDto, any>>;
11812
10720
  }>;
11813
10721
  storage: ApiDefinitionTree<{
11814
10722
  create: (createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StorageEntity, any>>;
@@ -11995,7 +10903,7 @@ declare const apiDefinitions: {
11995
10903
  updateMetadata: (id: string, updateMetadataDto: UpdateMetadataDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ResourceEntity, any>>;
11996
10904
  wait: <O, T extends Omit<OperationEntity, "output"> & {
11997
10905
  output: O extends unknown ? any : O;
11998
- }>(this: any, operation: T, timeoutMs?: number) => Promise<T>;
10906
+ }>(this: any, operation: T, timeoutMs?: number, delay?: number) => Promise<T>;
11999
10907
  }>;
12000
10908
  groups: ApiDefinitionTree<{
12001
10909
  create: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GroupEntity, any>>;
@@ -12055,7 +10963,7 @@ declare const apiDefinitions: {
12055
10963
  count: (params?: PipelinesControllerCountPipelinesV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<CountPipelinesResultDto, any>>;
12056
10964
  list: (params?: PipelinesControllerListPipelinesV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListPipelinesDto, any>>;
12057
10965
  constructTemplate: <TSdk extends PipelineSDK, O = any, I = any>(this: any, builder: (pipeline: PipelineTyped<TSdk>) => PipelineTyped<TSdk>) => PipelineTyped<TSdk>;
12058
- wait: <T extends PipelineDto>(this: any, pipeline: T, timeoutMs?: number) => Promise<T>;
10966
+ wait: <T extends PipelineDto>(this: any, pipeline: T, timeoutMs?: number, delay?: number) => Promise<T>;
12059
10967
  }>;
12060
10968
  upload: ApiDefinitionTree<{
12061
10969
  initUpload: (initializeGenericUploadParamsDto: InitializeGenericUploadParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<InitializeGenericUploadResponseDto, any>>;
@@ -12377,6 +11285,7 @@ type MethodsPermissions = {
12377
11285
  read: boolean;
12378
11286
  update: boolean;
12379
11287
  delete: boolean;
11288
+ execute: boolean;
12380
11289
  };
12381
11290
  poses: {
12382
11291
  create: boolean;
@@ -12434,4 +11343,4 @@ declare const createTokenSigner: (options: {
12434
11343
  }) => Promise<string>;
12435
11344
  };
12436
11345
 
12437
- export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, 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, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, 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 CreateChatParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, GoogleNanoBananaV1InputOutputFormat, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, 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 InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, 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 ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LoraControllerGetV1200, LoraControllerListV1OrderBy, type LoraControllerListV1Params, LoraControllerListV1Status, type LoraDto, type LoraDtoInput, type LoraDtoOutput, LoraDtoStatus, type LoraTrainingOutput, LoraTrainingOutputKind, type LoraTrainingRequest, type LoraTrainingRequestMetadata, type LoraTrainingResponse, type LoraTrainingResponseInput, LoraTrainingResponseKind, type LoraTrainingResponseMetadata, LoraTrainingResponseStatus, type LoraWebhookDto, type LoraWebhookDtoInput, type LoraWebhookDtoMetrics, type LoraWebhookDtoOutput, LoraWebhookDtoStatus, type LoraWebhookDtoUrls, 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 OperationOutputNumber, OperationOutputNumberKind, 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 SeedV1Input, type SeedV1Request, type SeedV1RequestInput, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, 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 StartFluxTrainingParamsDto, type StartLoraTrainingParamsDto, type StartNaomiTrainingParamsDto, StartNaomiTrainingParamsDtoLrScheduler, StartNaomiTrainingParamsDtoMixedPrecision, type StartTrainingParamsDto, type StartTrainingParamsDtoInput, StartTrainingParamsDtoModelType, 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 UploadControllerGetUploadedFileUrlV1Params, 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 };
11346
+ export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, 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, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, 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 CreateChatParamsDto, 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 CreateWorkflowParamsDtoPipelineTemplate, 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 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 GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoOutputItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, 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 GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, GoogleNanoBananaV1InputOutputFormat, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, 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 InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, 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 ListChatsDto, 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 LoraDto, type LoraDtoInput, type LoraDtoOutput, LoraDtoStatus, type LoraTrainingOutput, LoraTrainingOutputKind, type LoraTrainingRequest, type LoraTrainingRequestMetadata, type LoraTrainingResponse, type LoraTrainingResponseInput, LoraTrainingResponseKind, type LoraTrainingResponseMetadata, LoraTrainingResponseStatus, 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 OperationOutputNumber, OperationOutputNumberKind, 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 SeedV1Input, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, 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 StartTrainingParamsDto, type StartTrainingParamsDtoInput, StartTrainingParamsDtoModelType, 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 UpdateWorkflowParamsDtoPipelineTemplate, type UploadControllerGetUploadedFileUrlV1Params, 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, type WorkflowDtoPipelineTemplate, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };