@hautechai/sdk 2.5.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -142,6 +142,27 @@ interface AddBalanceParamsDto {
142
142
  idempotencyKey?: string;
143
143
  }
144
144
 
145
+ /**
146
+ * Generated by orval v7.10.0 🍺
147
+ * Do not edit manually.
148
+ * Hautech API
149
+ * OpenAPI spec version: 1.0
150
+ */
151
+ type AddChatItemsDtoItemsItem = {
152
+ [key: string]: unknown;
153
+ };
154
+
155
+ /**
156
+ * Generated by orval v7.10.0 🍺
157
+ * Do not edit manually.
158
+ * Hautech API
159
+ * OpenAPI spec version: 1.0
160
+ */
161
+
162
+ interface AddChatItemsDto {
163
+ items: AddChatItemsDtoItemsItem[];
164
+ }
165
+
145
166
  /**
146
167
  * Generated by orval v7.10.0 🍺
147
168
  * Do not edit manually.
@@ -604,6 +625,286 @@ interface BalanceResultDto {
604
625
  balance: string;
605
626
  }
606
627
 
628
+ /**
629
+ * Generated by orval v7.10.0 🍺
630
+ * Do not edit manually.
631
+ * Hautech API
632
+ * OpenAPI spec version: 1.0
633
+ */
634
+ type ChatControllerListChatsV1OrderBy = typeof ChatControllerListChatsV1OrderBy[keyof typeof ChatControllerListChatsV1OrderBy];
635
+ declare const ChatControllerListChatsV1OrderBy: {
636
+ readonly createdAt_ASC: "createdAt_ASC";
637
+ readonly createdAt_DESC: "createdAt_DESC";
638
+ readonly updatedAt_ASC: "updatedAt_ASC";
639
+ readonly updatedAt_DESC: "updatedAt_DESC";
640
+ };
641
+
642
+ /**
643
+ * Generated by orval v7.10.0 🍺
644
+ * Do not edit manually.
645
+ * Hautech API
646
+ * OpenAPI spec version: 1.0
647
+ */
648
+
649
+ type ChatControllerListChatsV1Params = {
650
+ orderBy?: ChatControllerListChatsV1OrderBy;
651
+ limit?: number;
652
+ cursor?: string;
653
+ };
654
+
655
+ /**
656
+ * Generated by orval v7.10.0 🍺
657
+ * Do not edit manually.
658
+ * Hautech API
659
+ * OpenAPI spec version: 1.0
660
+ */
661
+ type ChatDtoItemsItem = {
662
+ [key: string]: unknown;
663
+ };
664
+
665
+ /**
666
+ * Generated by orval v7.10.0 🍺
667
+ * Do not edit manually.
668
+ * Hautech API
669
+ * OpenAPI spec version: 1.0
670
+ */
671
+ /**
672
+ * The type of response format being defined: 'text' or 'json_object'.
673
+ */
674
+ type GPTV2ResponseFormatTextOrObjectDtoType = typeof GPTV2ResponseFormatTextOrObjectDtoType[keyof typeof GPTV2ResponseFormatTextOrObjectDtoType];
675
+ declare const GPTV2ResponseFormatTextOrObjectDtoType: {
676
+ readonly text: "text";
677
+ readonly json_object: "json_object";
678
+ };
679
+
680
+ /**
681
+ * Generated by orval v7.10.0 🍺
682
+ * Do not edit manually.
683
+ * Hautech API
684
+ * OpenAPI spec version: 1.0
685
+ */
686
+
687
+ interface GPTV2ResponseFormatTextOrObjectDto {
688
+ /** The type of response format being defined: 'text' or 'json_object'. */
689
+ type: GPTV2ResponseFormatTextOrObjectDtoType;
690
+ }
691
+
692
+ /**
693
+ * Generated by orval v7.10.0 🍺
694
+ * Do not edit manually.
695
+ * Hautech API
696
+ * OpenAPI spec version: 1.0
697
+ */
698
+ /**
699
+ * The type of response format being defined: json_schema.
700
+ */
701
+ type GPTV2ResponseFormatJsonSchemaDtoType = typeof GPTV2ResponseFormatJsonSchemaDtoType[keyof typeof GPTV2ResponseFormatJsonSchemaDtoType];
702
+ declare const GPTV2ResponseFormatJsonSchemaDtoType: {
703
+ readonly json_schema: "json_schema";
704
+ };
705
+
706
+ /**
707
+ * Generated by orval v7.10.0 🍺
708
+ * Do not edit manually.
709
+ * Hautech API
710
+ * OpenAPI spec version: 1.0
711
+ */
712
+ /**
713
+ * The schema for the response format, described as a JSON Schema object.
714
+ */
715
+ type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema = {
716
+ [key: string]: unknown;
717
+ };
718
+
719
+ /**
720
+ * Generated by orval v7.10.0 🍺
721
+ * Do not edit manually.
722
+ * Hautech API
723
+ * OpenAPI spec version: 1.0
724
+ */
725
+
726
+ interface GPTV2ResponseFormatJsonSchemaDetailsDto {
727
+ /** 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. */
728
+ name: string;
729
+ /** A description of what the response format is for, used by the model to determine how to respond in the format. */
730
+ description?: string;
731
+ /** The schema for the response format, described as a JSON Schema object. */
732
+ schema?: GPTV2ResponseFormatJsonSchemaDetailsDtoSchema;
733
+ /**
734
+ * 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. Only a subset of JSON Schema is supported when `strict` is `true`.
735
+ * @nullable
736
+ */
737
+ strict?: boolean | null;
738
+ }
739
+
740
+ /**
741
+ * Generated by orval v7.10.0 🍺
742
+ * Do not edit manually.
743
+ * Hautech API
744
+ * OpenAPI spec version: 1.0
745
+ */
746
+
747
+ interface GPTV2ResponseFormatJsonSchemaDto {
748
+ /** The type of response format being defined: json_schema. */
749
+ type: GPTV2ResponseFormatJsonSchemaDtoType;
750
+ /** The JSON schema definition for the response format. Required for type json_schema. */
751
+ json_schema: GPTV2ResponseFormatJsonSchemaDetailsDto;
752
+ }
753
+
754
+ /**
755
+ * Generated by orval v7.10.0 🍺
756
+ * Do not edit manually.
757
+ * Hautech API
758
+ * OpenAPI spec version: 1.0
759
+ */
760
+
761
+ /**
762
+ * The response format for the model output. See OpenAI docs for details.
763
+ */
764
+ type ChatParametersDtoResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2ResponseFormatJsonSchemaDto;
765
+
766
+ /**
767
+ * Generated by orval v7.10.0 🍺
768
+ * Do not edit manually.
769
+ * Hautech API
770
+ * OpenAPI spec version: 1.0
771
+ */
772
+ /**
773
+ * The parameters the functions accepts, described as a JSON Schema object.
774
+ */
775
+ type GPTV2ToolFunctionDtoParameters = {
776
+ [key: string]: unknown;
777
+ };
778
+
779
+ /**
780
+ * Generated by orval v7.10.0 🍺
781
+ * Do not edit manually.
782
+ * Hautech API
783
+ * OpenAPI spec version: 1.0
784
+ */
785
+
786
+ interface GPTV2ToolFunctionDto {
787
+ /** The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
788
+ name: string;
789
+ /** A description of what the function does, used by the model to choose when and how to call the function. */
790
+ description?: string;
791
+ /** The parameters the functions accepts, described as a JSON Schema object. */
792
+ parameters?: GPTV2ToolFunctionDtoParameters;
793
+ /**
794
+ * Whether to enable strict schema adherence when generating the function call.
795
+ * @nullable
796
+ */
797
+ strict?: boolean | null;
798
+ }
799
+
800
+ /**
801
+ * Generated by orval v7.10.0 🍺
802
+ * Do not edit manually.
803
+ * Hautech API
804
+ * OpenAPI spec version: 1.0
805
+ */
806
+ /**
807
+ * The type of the tool. Currently, only 'function' is supported.
808
+ */
809
+ type GPTV2ToolDtoType = typeof GPTV2ToolDtoType[keyof typeof GPTV2ToolDtoType];
810
+ declare const GPTV2ToolDtoType: {
811
+ readonly function: "function";
812
+ };
813
+
814
+ /**
815
+ * Generated by orval v7.10.0 🍺
816
+ * Do not edit manually.
817
+ * Hautech API
818
+ * OpenAPI spec version: 1.0
819
+ */
820
+
821
+ interface GPTV2ToolDto {
822
+ /** The function definition for the tool. Currently, only functions are supported. */
823
+ function: GPTV2ToolFunctionDto;
824
+ /** The type of the tool. Currently, only 'function' is supported. */
825
+ type: GPTV2ToolDtoType;
826
+ }
827
+
828
+ /**
829
+ * Generated by orval v7.10.0 🍺
830
+ * Do not edit manually.
831
+ * Hautech API
832
+ * OpenAPI spec version: 1.0
833
+ */
834
+ /**
835
+ * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool.
836
+ */
837
+ type GPTV2ToolChoiceDtoType = typeof GPTV2ToolChoiceDtoType[keyof typeof GPTV2ToolChoiceDtoType];
838
+ declare const GPTV2ToolChoiceDtoType: {
839
+ readonly none: "none";
840
+ readonly auto: "auto";
841
+ readonly required: "required";
842
+ readonly function: "function";
843
+ };
844
+
845
+ /**
846
+ * Generated by orval v7.10.0 🍺
847
+ * Do not edit manually.
848
+ * Hautech API
849
+ * OpenAPI spec version: 1.0
850
+ */
851
+ interface GPTV2ToolChoiceFunctionDto {
852
+ /** The name of the function to call. */
853
+ name: string;
854
+ }
855
+
856
+ /**
857
+ * Generated by orval v7.10.0 🍺
858
+ * Do not edit manually.
859
+ * Hautech API
860
+ * OpenAPI spec version: 1.0
861
+ */
862
+
863
+ interface GPTV2ToolChoiceDto {
864
+ /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool. */
865
+ type: GPTV2ToolChoiceDtoType;
866
+ /** The function to call, if type is `function`. */
867
+ function?: GPTV2ToolChoiceFunctionDto;
868
+ }
869
+
870
+ /**
871
+ * Generated by orval v7.10.0 🍺
872
+ * Do not edit manually.
873
+ * Hautech API
874
+ * OpenAPI spec version: 1.0
875
+ */
876
+
877
+ interface ChatParametersDto {
878
+ /** The response format for the model output. See OpenAI docs for details. */
879
+ response_format?: ChatParametersDtoResponseFormat;
880
+ /** 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. */
881
+ seed?: number;
882
+ /** A list of tools the model may call. Currently, only functions are supported as a tool. */
883
+ tools?: GPTV2ToolDto[];
884
+ /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool. */
885
+ tool_choice?: GPTV2ToolChoiceDto;
886
+ response_format_text_or_object?: GPTV2ResponseFormatTextOrObjectDto;
887
+ max_completion_tokens?: number;
888
+ }
889
+
890
+ /**
891
+ * Generated by orval v7.10.0 🍺
892
+ * Do not edit manually.
893
+ * Hautech API
894
+ * OpenAPI spec version: 1.0
895
+ */
896
+
897
+ interface ChatDto {
898
+ id: string;
899
+ chatId: string;
900
+ modelName: string;
901
+ creatorId: string;
902
+ items: ChatDtoItemsItem[];
903
+ parameters: ChatParametersDto;
904
+ createdAt: string;
905
+ updatedAt: string;
906
+ }
907
+
607
908
  /**
608
909
  * Generated by orval v7.10.0 🍺
609
910
  * Do not edit manually.
@@ -1042,6 +1343,19 @@ interface CreateAccountParamsDto {
1042
1343
  alias?: string;
1043
1344
  }
1044
1345
 
1346
+ /**
1347
+ * Generated by orval v7.10.0 🍺
1348
+ * Do not edit manually.
1349
+ * Hautech API
1350
+ * OpenAPI spec version: 1.0
1351
+ */
1352
+
1353
+ interface CreateChatParamsDto {
1354
+ modelName: string;
1355
+ chatId: string;
1356
+ parameters: ChatParametersDto;
1357
+ }
1358
+
1045
1359
  /**
1046
1360
  * Generated by orval v7.10.0 🍺
1047
1361
  * Do not edit manually.
@@ -2020,213 +2334,11 @@ declare const GPTV2UserMessageDtoRole: {
2020
2334
 
2021
2335
  interface GPTV2UserMessageDto {
2022
2336
  /** The content of the user message. */
2023
- content: string;
2024
- /** The role of the message sender. */
2025
- role: GPTV2UserMessageDtoRole;
2026
- /** The name of the sender, if applicable. */
2027
- name?: string;
2028
- }
2029
-
2030
- /**
2031
- * Generated by orval v7.10.0 🍺
2032
- * Do not edit manually.
2033
- * Hautech API
2034
- * OpenAPI spec version: 1.0
2035
- */
2036
- /**
2037
- * The role of the message sender.
2038
- */
2039
- type GPTV2ToolMessageDtoRole = typeof GPTV2ToolMessageDtoRole[keyof typeof GPTV2ToolMessageDtoRole];
2040
- declare const GPTV2ToolMessageDtoRole: {
2041
- readonly tool: "tool";
2042
- };
2043
-
2044
- /**
2045
- * Generated by orval v7.10.0 🍺
2046
- * Do not edit manually.
2047
- * Hautech API
2048
- * OpenAPI spec version: 1.0
2049
- */
2050
-
2051
- interface GPTV2ToolMessageDto {
2052
- /** The content of the tool message. */
2053
- content: string;
2054
- /** The role of the message sender. */
2055
- role: GPTV2ToolMessageDtoRole;
2056
- /** The ID of the tool call. */
2057
- tool_call_id: string;
2058
- }
2059
-
2060
- /**
2061
- * Generated by orval v7.10.0 🍺
2062
- * Do not edit manually.
2063
- * Hautech API
2064
- * OpenAPI spec version: 1.0
2065
- */
2066
-
2067
- type GPTV2InputMessagesItem = GPTV2SystemMessageDto | GPTV2UserMessageDto | GPTV2AssistantMessageDto | GPTV2ToolMessageDto | GPTV2DeveloperMessageDto;
2068
-
2069
- /**
2070
- * Generated by orval v7.10.0 🍺
2071
- * Do not edit manually.
2072
- * Hautech API
2073
- * OpenAPI spec version: 1.0
2074
- */
2075
- /**
2076
- * The type of response format being defined: 'text' or 'json_object'.
2077
- */
2078
- type GPTV2ResponseFormatTextOrObjectDtoType = typeof GPTV2ResponseFormatTextOrObjectDtoType[keyof typeof GPTV2ResponseFormatTextOrObjectDtoType];
2079
- declare const GPTV2ResponseFormatTextOrObjectDtoType: {
2080
- readonly text: "text";
2081
- readonly json_object: "json_object";
2082
- };
2083
-
2084
- /**
2085
- * Generated by orval v7.10.0 🍺
2086
- * Do not edit manually.
2087
- * Hautech API
2088
- * OpenAPI spec version: 1.0
2089
- */
2090
-
2091
- interface GPTV2ResponseFormatTextOrObjectDto {
2092
- /** The type of response format being defined: 'text' or 'json_object'. */
2093
- type: GPTV2ResponseFormatTextOrObjectDtoType;
2094
- }
2095
-
2096
- /**
2097
- * Generated by orval v7.10.0 🍺
2098
- * Do not edit manually.
2099
- * Hautech API
2100
- * OpenAPI spec version: 1.0
2101
- */
2102
- /**
2103
- * The type of response format being defined: json_schema.
2104
- */
2105
- type GPTV2ResponseFormatJsonSchemaDtoType = typeof GPTV2ResponseFormatJsonSchemaDtoType[keyof typeof GPTV2ResponseFormatJsonSchemaDtoType];
2106
- declare const GPTV2ResponseFormatJsonSchemaDtoType: {
2107
- readonly json_schema: "json_schema";
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
- /**
2117
- * The schema for the response format, described as a JSON Schema object.
2118
- */
2119
- type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema = {
2120
- [key: string]: unknown;
2121
- };
2122
-
2123
- /**
2124
- * Generated by orval v7.10.0 🍺
2125
- * Do not edit manually.
2126
- * Hautech API
2127
- * OpenAPI spec version: 1.0
2128
- */
2129
-
2130
- interface GPTV2ResponseFormatJsonSchemaDetailsDto {
2131
- /** 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. */
2132
- name: string;
2133
- /** A description of what the response format is for, used by the model to determine how to respond in the format. */
2134
- description?: string;
2135
- /** The schema for the response format, described as a JSON Schema object. */
2136
- schema?: GPTV2ResponseFormatJsonSchemaDetailsDtoSchema;
2137
- /**
2138
- * 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. Only a subset of JSON Schema is supported when `strict` is `true`.
2139
- * @nullable
2140
- */
2141
- strict?: boolean | null;
2142
- }
2143
-
2144
- /**
2145
- * Generated by orval v7.10.0 🍺
2146
- * Do not edit manually.
2147
- * Hautech API
2148
- * OpenAPI spec version: 1.0
2149
- */
2150
-
2151
- interface GPTV2ResponseFormatJsonSchemaDto {
2152
- /** The type of response format being defined: json_schema. */
2153
- type: GPTV2ResponseFormatJsonSchemaDtoType;
2154
- /** The JSON schema definition for the response format. Required for type json_schema. */
2155
- json_schema: GPTV2ResponseFormatJsonSchemaDetailsDto;
2156
- }
2157
-
2158
- /**
2159
- * Generated by orval v7.10.0 🍺
2160
- * Do not edit manually.
2161
- * Hautech API
2162
- * OpenAPI spec version: 1.0
2163
- */
2164
-
2165
- /**
2166
- * The response format for the model output. See OpenAI docs for details.
2167
- */
2168
- type GPTV2InputResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2ResponseFormatJsonSchemaDto;
2169
-
2170
- /**
2171
- * Generated by orval v7.10.0 🍺
2172
- * Do not edit manually.
2173
- * Hautech API
2174
- * OpenAPI spec version: 1.0
2175
- */
2176
- /**
2177
- * The parameters the functions accepts, described as a JSON Schema object.
2178
- */
2179
- type GPTV2ToolFunctionDtoParameters = {
2180
- [key: string]: unknown;
2181
- };
2182
-
2183
- /**
2184
- * Generated by orval v7.10.0 🍺
2185
- * Do not edit manually.
2186
- * Hautech API
2187
- * OpenAPI spec version: 1.0
2188
- */
2189
-
2190
- interface GPTV2ToolFunctionDto {
2191
- /** The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
2192
- name: string;
2193
- /** A description of what the function does, used by the model to choose when and how to call the function. */
2194
- description?: string;
2195
- /** The parameters the functions accepts, described as a JSON Schema object. */
2196
- parameters?: GPTV2ToolFunctionDtoParameters;
2197
- /**
2198
- * Whether to enable strict schema adherence when generating the function call.
2199
- * @nullable
2200
- */
2201
- strict?: boolean | null;
2202
- }
2203
-
2204
- /**
2205
- * Generated by orval v7.10.0 🍺
2206
- * Do not edit manually.
2207
- * Hautech API
2208
- * OpenAPI spec version: 1.0
2209
- */
2210
- /**
2211
- * The type of the tool. Currently, only 'function' is supported.
2212
- */
2213
- type GPTV2ToolDtoType = typeof GPTV2ToolDtoType[keyof typeof GPTV2ToolDtoType];
2214
- declare const GPTV2ToolDtoType: {
2215
- readonly function: "function";
2216
- };
2217
-
2218
- /**
2219
- * Generated by orval v7.10.0 🍺
2220
- * Do not edit manually.
2221
- * Hautech API
2222
- * OpenAPI spec version: 1.0
2223
- */
2224
-
2225
- interface GPTV2ToolDto {
2226
- /** The function definition for the tool. Currently, only functions are supported. */
2227
- function: GPTV2ToolFunctionDto;
2228
- /** The type of the tool. Currently, only 'function' is supported. */
2229
- type: GPTV2ToolDtoType;
2337
+ content: string;
2338
+ /** The role of the message sender. */
2339
+ role: GPTV2UserMessageDtoRole;
2340
+ /** The name of the sender, if applicable. */
2341
+ name?: string;
2230
2342
  }
2231
2343
 
2232
2344
  /**
@@ -2236,14 +2348,11 @@ interface GPTV2ToolDto {
2236
2348
  * OpenAPI spec version: 1.0
2237
2349
  */
2238
2350
  /**
2239
- * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool.
2351
+ * The role of the message sender.
2240
2352
  */
2241
- type GPTV2ToolChoiceDtoType = typeof GPTV2ToolChoiceDtoType[keyof typeof GPTV2ToolChoiceDtoType];
2242
- declare const GPTV2ToolChoiceDtoType: {
2243
- readonly none: "none";
2244
- readonly auto: "auto";
2245
- readonly required: "required";
2246
- readonly function: "function";
2353
+ type GPTV2ToolMessageDtoRole = typeof GPTV2ToolMessageDtoRole[keyof typeof GPTV2ToolMessageDtoRole];
2354
+ declare const GPTV2ToolMessageDtoRole: {
2355
+ readonly tool: "tool";
2247
2356
  };
2248
2357
 
2249
2358
  /**
@@ -2252,9 +2361,14 @@ declare const GPTV2ToolChoiceDtoType: {
2252
2361
  * Hautech API
2253
2362
  * OpenAPI spec version: 1.0
2254
2363
  */
2255
- interface GPTV2ToolChoiceFunctionDto {
2256
- /** The name of the function to call. */
2257
- name: string;
2364
+
2365
+ interface GPTV2ToolMessageDto {
2366
+ /** The content of the tool message. */
2367
+ content: string;
2368
+ /** The role of the message sender. */
2369
+ role: GPTV2ToolMessageDtoRole;
2370
+ /** The ID of the tool call. */
2371
+ tool_call_id: string;
2258
2372
  }
2259
2373
 
2260
2374
  /**
@@ -2264,12 +2378,19 @@ interface GPTV2ToolChoiceFunctionDto {
2264
2378
  * OpenAPI spec version: 1.0
2265
2379
  */
2266
2380
 
2267
- interface GPTV2ToolChoiceDto {
2268
- /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool. */
2269
- type: GPTV2ToolChoiceDtoType;
2270
- /** The function to call, if type is `function`. */
2271
- function?: GPTV2ToolChoiceFunctionDto;
2272
- }
2381
+ type GPTV2InputMessagesItem = GPTV2SystemMessageDto | GPTV2UserMessageDto | GPTV2AssistantMessageDto | GPTV2ToolMessageDto | GPTV2DeveloperMessageDto;
2382
+
2383
+ /**
2384
+ * Generated by orval v7.10.0 🍺
2385
+ * Do not edit manually.
2386
+ * Hautech API
2387
+ * OpenAPI spec version: 1.0
2388
+ */
2389
+
2390
+ /**
2391
+ * The response format for the model output. See OpenAI docs for details.
2392
+ */
2393
+ type GPTV2InputResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2ResponseFormatJsonSchemaDto;
2273
2394
 
2274
2395
  /**
2275
2396
  * Generated by orval v7.10.0 🍺
@@ -5680,6 +5801,16 @@ interface GetStorageRecordParamsDto {
5680
5801
  keys: string[];
5681
5802
  }
5682
5803
 
5804
+ /**
5805
+ * Generated by orval v7.10.0 🍺
5806
+ * Do not edit manually.
5807
+ * Hautech API
5808
+ * OpenAPI spec version: 1.0
5809
+ */
5810
+ interface GetUploadedFileUrlResponseDto {
5811
+ url: string;
5812
+ }
5813
+
5683
5814
  /**
5684
5815
  * Generated by orval v7.10.0 🍺
5685
5816
  * Do not edit manually.
@@ -6924,6 +7055,27 @@ interface ImagineKateV1Response {
6924
7055
  updatedAt: string;
6925
7056
  }
6926
7057
 
7058
+ /**
7059
+ * Generated by orval v7.10.0 🍺
7060
+ * Do not edit manually.
7061
+ * Hautech API
7062
+ * OpenAPI spec version: 1.0
7063
+ */
7064
+ interface InitializeGenericUploadParamsDto {
7065
+ filename: string;
7066
+ }
7067
+
7068
+ /**
7069
+ * Generated by orval v7.10.0 🍺
7070
+ * Do not edit manually.
7071
+ * Hautech API
7072
+ * OpenAPI spec version: 1.0
7073
+ */
7074
+ interface InitializeGenericUploadResponseDto {
7075
+ key: string;
7076
+ uploadUrl: string;
7077
+ }
7078
+
6927
7079
  /**
6928
7080
  * Generated by orval v7.10.0 🍺
6929
7081
  * Do not edit manually.
@@ -7182,6 +7334,18 @@ interface ListAccountsParamsDto {
7182
7334
  cursor?: string;
7183
7335
  }
7184
7336
 
7337
+ /**
7338
+ * Generated by orval v7.10.0 🍺
7339
+ * Do not edit manually.
7340
+ * Hautech API
7341
+ * OpenAPI spec version: 1.0
7342
+ */
7343
+
7344
+ interface ListChatsDto {
7345
+ data: ChatDto[];
7346
+ pageInfo: PageInfoDto;
7347
+ }
7348
+
7185
7349
  /**
7186
7350
  * Generated by orval v7.10.0 🍺
7187
7351
  * Do not edit manually.
@@ -7326,6 +7490,79 @@ interface ListCollectionsParamsDto {
7326
7490
  cursor?: string;
7327
7491
  }
7328
7492
 
7493
+ /**
7494
+ * Generated by orval v7.10.0 🍺
7495
+ * Do not edit manually.
7496
+ * Hautech API
7497
+ * OpenAPI spec version: 1.0
7498
+ */
7499
+ type LoraDtoInput = {
7500
+ [key: string]: unknown;
7501
+ };
7502
+
7503
+ /**
7504
+ * Generated by orval v7.10.0 🍺
7505
+ * Do not edit manually.
7506
+ * Hautech API
7507
+ * OpenAPI spec version: 1.0
7508
+ */
7509
+ type LoraDtoOutput = {
7510
+ [key: string]: unknown;
7511
+ };
7512
+
7513
+ /**
7514
+ * Generated by orval v7.10.0 🍺
7515
+ * Do not edit manually.
7516
+ * Hautech API
7517
+ * OpenAPI spec version: 1.0
7518
+ */
7519
+ type LoraDtoStatus = typeof LoraDtoStatus[keyof typeof LoraDtoStatus];
7520
+ declare const LoraDtoStatus: {
7521
+ readonly starting: "starting";
7522
+ readonly processing: "processing";
7523
+ readonly succeeded: "succeeded";
7524
+ readonly failed: "failed";
7525
+ readonly canceled: "canceled";
7526
+ };
7527
+
7528
+ /**
7529
+ * Generated by orval v7.10.0 🍺
7530
+ * Do not edit manually.
7531
+ * Hautech API
7532
+ * OpenAPI spec version: 1.0
7533
+ */
7534
+
7535
+ interface LoraDto {
7536
+ id: string;
7537
+ modelName: string;
7538
+ modelOwner: string;
7539
+ modelVersion: string;
7540
+ trainingId: string;
7541
+ weightsUrl?: string;
7542
+ destination: string;
7543
+ input: LoraDtoInput;
7544
+ error?: string;
7545
+ output?: LoraDtoOutput;
7546
+ status: LoraDtoStatus;
7547
+ triggerWord: string;
7548
+ creatorId: string;
7549
+ createdAt: string;
7550
+ updatedAt: string;
7551
+ completedAt?: string;
7552
+ }
7553
+
7554
+ /**
7555
+ * Generated by orval v7.10.0 🍺
7556
+ * Do not edit manually.
7557
+ * Hautech API
7558
+ * OpenAPI spec version: 1.0
7559
+ */
7560
+
7561
+ interface ListLorasDto {
7562
+ data: LoraDto[];
7563
+ pageInfo: PageInfoDto;
7564
+ }
7565
+
7329
7566
  /**
7330
7567
  * Generated by orval v7.10.0 🍺
7331
7568
  * Do not edit manually.
@@ -7767,6 +8004,144 @@ interface ListWorkflowsDto {
7767
8004
  pageInfo: PageInfoDto;
7768
8005
  }
7769
8006
 
8007
+ /**
8008
+ * Generated by orval v7.10.0 🍺
8009
+ * Do not edit manually.
8010
+ * Hautech API
8011
+ * OpenAPI spec version: 1.0
8012
+ */
8013
+ type LoraControllerGetV1200 = {
8014
+ [key: string]: unknown;
8015
+ };
8016
+
8017
+ /**
8018
+ * Generated by orval v7.10.0 🍺
8019
+ * Do not edit manually.
8020
+ * Hautech API
8021
+ * OpenAPI spec version: 1.0
8022
+ */
8023
+ type LoraControllerListV1OrderBy = typeof LoraControllerListV1OrderBy[keyof typeof LoraControllerListV1OrderBy];
8024
+ declare const LoraControllerListV1OrderBy: {
8025
+ readonly createdAt_ASC: "createdAt_ASC";
8026
+ readonly createdAt_DESC: "createdAt_DESC";
8027
+ };
8028
+
8029
+ /**
8030
+ * Generated by orval v7.10.0 🍺
8031
+ * Do not edit manually.
8032
+ * Hautech API
8033
+ * OpenAPI spec version: 1.0
8034
+ */
8035
+ type LoraControllerListV1Status = typeof LoraControllerListV1Status[keyof typeof LoraControllerListV1Status];
8036
+ declare const LoraControllerListV1Status: {
8037
+ readonly starting: "starting";
8038
+ readonly processing: "processing";
8039
+ readonly succeeded: "succeeded";
8040
+ readonly failed: "failed";
8041
+ readonly canceled: "canceled";
8042
+ };
8043
+
8044
+ /**
8045
+ * Generated by orval v7.10.0 🍺
8046
+ * Do not edit manually.
8047
+ * Hautech API
8048
+ * OpenAPI spec version: 1.0
8049
+ */
8050
+
8051
+ type LoraControllerListV1Params = {
8052
+ orderBy?: LoraControllerListV1OrderBy;
8053
+ limit?: number;
8054
+ status?: LoraControllerListV1Status;
8055
+ modelOwner?: string;
8056
+ modelName?: string;
8057
+ modelVersion?: string;
8058
+ cursor?: string;
8059
+ };
8060
+
8061
+ /**
8062
+ * Generated by orval v7.10.0 🍺
8063
+ * Do not edit manually.
8064
+ * Hautech API
8065
+ * OpenAPI spec version: 1.0
8066
+ */
8067
+ type LoraWebhookDtoStatus = typeof LoraWebhookDtoStatus[keyof typeof LoraWebhookDtoStatus];
8068
+ declare const LoraWebhookDtoStatus: {
8069
+ readonly starting: "starting";
8070
+ readonly processing: "processing";
8071
+ readonly succeeded: "succeeded";
8072
+ readonly failed: "failed";
8073
+ readonly canceled: "canceled";
8074
+ };
8075
+
8076
+ /**
8077
+ * Generated by orval v7.10.0 🍺
8078
+ * Do not edit manually.
8079
+ * Hautech API
8080
+ * OpenAPI spec version: 1.0
8081
+ */
8082
+ type LoraWebhookDtoInput = {
8083
+ [key: string]: unknown;
8084
+ };
8085
+
8086
+ /**
8087
+ * Generated by orval v7.10.0 🍺
8088
+ * Do not edit manually.
8089
+ * Hautech API
8090
+ * OpenAPI spec version: 1.0
8091
+ */
8092
+ type LoraWebhookDtoMetrics = {
8093
+ [key: string]: unknown;
8094
+ };
8095
+
8096
+ /**
8097
+ * Generated by orval v7.10.0 🍺
8098
+ * Do not edit manually.
8099
+ * Hautech API
8100
+ * OpenAPI spec version: 1.0
8101
+ */
8102
+ /**
8103
+ * @nullable
8104
+ */
8105
+ type LoraWebhookDtoOutput = {
8106
+ [key: string]: unknown;
8107
+ } | null;
8108
+
8109
+ /**
8110
+ * Generated by orval v7.10.0 🍺
8111
+ * Do not edit manually.
8112
+ * Hautech API
8113
+ * OpenAPI spec version: 1.0
8114
+ */
8115
+ type LoraWebhookDtoUrls = {
8116
+ [key: string]: unknown;
8117
+ };
8118
+
8119
+ /**
8120
+ * Generated by orval v7.10.0 🍺
8121
+ * Do not edit manually.
8122
+ * Hautech API
8123
+ * OpenAPI spec version: 1.0
8124
+ */
8125
+
8126
+ interface LoraWebhookDto {
8127
+ id: string;
8128
+ status: LoraWebhookDtoStatus;
8129
+ error?: string;
8130
+ model?: string;
8131
+ version?: string;
8132
+ webhook?: string;
8133
+ created_at?: string;
8134
+ started_at?: string;
8135
+ completed_at?: string;
8136
+ data_removed?: boolean;
8137
+ input?: LoraWebhookDtoInput;
8138
+ metrics?: LoraWebhookDtoMetrics;
8139
+ /** @nullable */
8140
+ output?: LoraWebhookDtoOutput;
8141
+ urls?: LoraWebhookDtoUrls;
8142
+ logs?: string;
8143
+ }
8144
+
7770
8145
  /**
7771
8146
  * Generated by orval v7.10.0 🍺
7772
8147
  * Do not edit manually.
@@ -9817,6 +10192,20 @@ type StacksControllerListStacksV1Params = {
9817
10192
  cursor?: string;
9818
10193
  };
9819
10194
 
10195
+ /**
10196
+ * Generated by orval v7.10.0 🍺
10197
+ * Do not edit manually.
10198
+ * Hautech API
10199
+ * OpenAPI spec version: 1.0
10200
+ */
10201
+ interface StartLoraTrainingParamsDto {
10202
+ modelVersion?: string;
10203
+ modelDestination?: string;
10204
+ inputImages: string;
10205
+ triggerWord: string;
10206
+ trainingSteps?: number;
10207
+ }
10208
+
9820
10209
  /**
9821
10210
  * Generated by orval v7.10.0 🍺
9822
10211
  * Do not edit manually.
@@ -10421,6 +10810,17 @@ interface UpdateWorkflowParamsDto {
10421
10810
  metadata?: UpdateWorkflowParamsDtoMetadata;
10422
10811
  }
10423
10812
 
10813
+ /**
10814
+ * Generated by orval v7.10.0 🍺
10815
+ * Do not edit manually.
10816
+ * Hautech API
10817
+ * OpenAPI spec version: 1.0
10818
+ */
10819
+ type UploadControllerGetUploadedFileUrlV1Params = {
10820
+ key: string;
10821
+ base64?: boolean;
10822
+ };
10823
+
10424
10824
  /**
10425
10825
  * Generated by orval v7.10.0 🍺
10426
10826
  * Do not edit manually.
@@ -11148,6 +11548,13 @@ declare const apiDefinitions: {
11148
11548
  }>;
11149
11549
  };
11150
11550
  }>;
11551
+ chats: ApiDefinitionTree<{
11552
+ create: (createChatParamsDto: CreateChatParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ChatDto, any>>;
11553
+ list: (params?: ChatControllerListChatsV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListChatsDto, any>>;
11554
+ get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ChatDto | null, any>>;
11555
+ delete: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
11556
+ addItems: (chatId: string, addChatItemsDto: AddChatItemsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ChatDto, any>>;
11557
+ }>;
11151
11558
  balances: ApiDefinitionTree<{
11152
11559
  add: (id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
11153
11560
  get: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<BalanceResultDto, any>>;
@@ -11170,6 +11577,16 @@ declare const apiDefinitions: {
11170
11577
  constructTemplate: <TSdk extends PipelineSDK, O = any, I = any>(this: any, builder: (pipeline: PipelineTyped<TSdk>) => PipelineTyped<TSdk>) => PipelineTyped<TSdk>;
11171
11578
  wait: <T extends PipelineDto>(this: any, pipeline: T, timeoutMs?: number) => Promise<T>;
11172
11579
  }>;
11580
+ lora: ApiDefinitionTree<{
11581
+ start: (startLoraTrainingParamsDto: StartLoraTrainingParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraDto, any>>;
11582
+ list: (params?: LoraControllerListV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListLorasDto, any>>;
11583
+ get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraDto, any>>;
11584
+ wait: (this: any, lora: Pick<LoraDto, "id" | "status">, timeoutMs?: any) => Promise<LoraDto>;
11585
+ }>;
11586
+ upload: ApiDefinitionTree<{
11587
+ initUpload: (initializeGenericUploadParamsDto: InitializeGenericUploadParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<InitializeGenericUploadResponseDto, any>>;
11588
+ getUploadedFileUrl: (params: UploadControllerGetUploadedFileUrlV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GetUploadedFileUrlResponseDto, any>>;
11589
+ }>;
11173
11590
  };
11174
11591
  declare const pipelineDefinitions: {
11175
11592
  access: {
@@ -11532,4 +11949,4 @@ declare const createTokenSigner: (options: {
11532
11949
  }) => Promise<string>;
11533
11950
  };
11534
11951
 
11535
- export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
11952
+ 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 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 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 OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StartLoraTrainingParamsDto, 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 };