@hebo-ai/gateway 0.10.7 → 0.11.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.
Files changed (111) hide show
  1. package/README.md +97 -84
  2. package/dist/config.js +21 -4
  3. package/dist/endpoints/chat-completions/handler.js +9 -5
  4. package/dist/endpoints/conversations/handler.js +3 -3
  5. package/dist/endpoints/embeddings/handler.js +2 -2
  6. package/dist/endpoints/messages/converters.js +17 -21
  7. package/dist/endpoints/messages/handler.js +5 -5
  8. package/dist/endpoints/responses/handler.js +9 -5
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.js +1 -0
  11. package/dist/models/alibaba/index.d.ts +2 -0
  12. package/dist/models/alibaba/index.js +2 -0
  13. package/dist/models/alibaba/middleware.d.ts +2 -0
  14. package/dist/models/alibaba/middleware.js +31 -0
  15. package/dist/models/alibaba/presets.d.ts +900 -0
  16. package/dist/models/alibaba/presets.js +252 -0
  17. package/dist/models/amazon/presets.d.ts +31 -31
  18. package/dist/models/anthropic/presets.d.ts +68 -68
  19. package/dist/models/cohere/presets.d.ts +38 -38
  20. package/dist/models/deepseek/index.d.ts +2 -0
  21. package/dist/models/deepseek/index.js +2 -0
  22. package/dist/models/deepseek/middleware.d.ts +2 -0
  23. package/dist/models/deepseek/middleware.js +25 -0
  24. package/dist/models/deepseek/presets.d.ts +51 -0
  25. package/dist/models/deepseek/presets.js +33 -0
  26. package/dist/models/google/presets.d.ts +94 -94
  27. package/dist/models/google/presets.js +3 -1
  28. package/dist/models/meta/presets.d.ts +84 -84
  29. package/dist/models/meta/presets.js +11 -12
  30. package/dist/models/minimax/index.d.ts +2 -0
  31. package/dist/models/minimax/index.js +2 -0
  32. package/dist/models/minimax/middleware.d.ts +2 -0
  33. package/dist/models/minimax/middleware.js +43 -0
  34. package/dist/models/minimax/presets.d.ts +99 -0
  35. package/dist/models/minimax/presets.js +47 -0
  36. package/dist/models/moonshot/index.d.ts +2 -0
  37. package/dist/models/moonshot/index.js +2 -0
  38. package/dist/models/moonshot/middleware.d.ts +2 -0
  39. package/dist/models/moonshot/middleware.js +32 -0
  40. package/dist/models/moonshot/presets.d.ts +104 -0
  41. package/dist/models/moonshot/presets.js +36 -0
  42. package/dist/models/openai/presets.d.ts +128 -128
  43. package/dist/models/openai/presets.js +1 -1
  44. package/dist/models/types.d.ts +1 -1
  45. package/dist/models/types.js +39 -0
  46. package/dist/models/voyage/presets.d.ts +46 -46
  47. package/dist/models/xai/index.d.ts +2 -0
  48. package/dist/models/xai/index.js +2 -0
  49. package/dist/models/xai/middleware.d.ts +2 -0
  50. package/dist/models/xai/middleware.js +37 -0
  51. package/dist/models/xai/presets.d.ts +210 -0
  52. package/dist/models/xai/presets.js +55 -0
  53. package/dist/models/zai/index.d.ts +2 -0
  54. package/dist/models/zai/index.js +2 -0
  55. package/dist/models/zai/middleware.d.ts +2 -0
  56. package/dist/models/zai/middleware.js +25 -0
  57. package/dist/models/zai/presets.d.ts +141 -0
  58. package/dist/models/zai/presets.js +41 -0
  59. package/dist/providers/alibaba/canonical.d.ts +3 -0
  60. package/dist/providers/alibaba/canonical.js +13 -0
  61. package/dist/providers/alibaba/index.d.ts +1 -0
  62. package/dist/providers/alibaba/index.js +1 -0
  63. package/dist/providers/bedrock/canonical.js +3 -0
  64. package/dist/providers/chutes/canonical.d.ts +3 -0
  65. package/dist/providers/chutes/canonical.js +14 -0
  66. package/dist/providers/chutes/index.d.ts +1 -0
  67. package/dist/providers/chutes/index.js +1 -0
  68. package/dist/providers/deepinfra/canonical.d.ts +3 -0
  69. package/dist/providers/deepinfra/canonical.js +40 -0
  70. package/dist/providers/deepinfra/index.d.ts +1 -0
  71. package/dist/providers/deepinfra/index.js +1 -0
  72. package/dist/providers/deepseek/canonical.d.ts +3 -0
  73. package/dist/providers/deepseek/canonical.js +9 -0
  74. package/dist/providers/deepseek/index.d.ts +1 -0
  75. package/dist/providers/deepseek/index.js +1 -0
  76. package/dist/providers/fireworks/canonical.d.ts +3 -0
  77. package/dist/providers/fireworks/canonical.js +27 -0
  78. package/dist/providers/fireworks/index.d.ts +2 -0
  79. package/dist/providers/fireworks/index.js +2 -0
  80. package/dist/providers/fireworks/middleware.d.ts +2 -0
  81. package/dist/providers/fireworks/middleware.js +35 -0
  82. package/dist/providers/groq/canonical.js +1 -1
  83. package/dist/providers/minimax/canonical.d.ts +3 -0
  84. package/dist/providers/minimax/canonical.js +9 -0
  85. package/dist/providers/minimax/index.d.ts +1 -0
  86. package/dist/providers/minimax/index.js +1 -0
  87. package/dist/providers/moonshot/canonical.d.ts +3 -0
  88. package/dist/providers/moonshot/canonical.js +6 -0
  89. package/dist/providers/moonshot/index.d.ts +1 -0
  90. package/dist/providers/moonshot/index.js +1 -0
  91. package/dist/providers/togetherai/canonical.d.ts +3 -0
  92. package/dist/providers/togetherai/canonical.js +24 -0
  93. package/dist/providers/togetherai/index.d.ts +1 -0
  94. package/dist/providers/togetherai/index.js +1 -0
  95. package/dist/providers/types.d.ts +1 -1
  96. package/dist/providers/types.js +10 -0
  97. package/dist/providers/vertex/canonical.js +5 -1
  98. package/dist/providers/xai/canonical.d.ts +3 -0
  99. package/dist/providers/xai/canonical.js +12 -0
  100. package/dist/providers/xai/index.d.ts +1 -0
  101. package/dist/providers/xai/index.js +1 -0
  102. package/dist/providers/zai/canonical.d.ts +3 -0
  103. package/dist/providers/zai/canonical.js +10 -0
  104. package/dist/providers/zai/index.d.ts +1 -0
  105. package/dist/providers/zai/index.js +1 -0
  106. package/dist/types.d.ts +30 -16
  107. package/dist/utils/index.d.ts +8 -0
  108. package/dist/utils/index.js +8 -0
  109. package/dist/utils/request.d.ts +2 -1
  110. package/dist/utils/request.js +35 -7
  111. package/package.json +133 -9
@@ -0,0 +1,900 @@
1
+ import type { CatalogModel } from "../types";
2
+ export declare const qwen3_235b: import("../../utils").Preset<"alibaba/qwen3-235b", CatalogModel, {
3
+ name: string;
4
+ created: string;
5
+ knowledge: string;
6
+ modalities: {
7
+ input: readonly ["text", "file"];
8
+ output: readonly ["text"];
9
+ };
10
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
11
+ context: number;
12
+ providers: readonly ["alibaba", "azure", "bedrock", "vertex", "deepinfra", "togetherai", "fireworks"];
13
+ }>;
14
+ export declare const qwen3_32b: import("../../utils").Preset<"alibaba/qwen3-32b", CatalogModel, {
15
+ name: string;
16
+ providers: readonly ["alibaba", "azure", "groq", "bedrock", "vertex", "chutes", "deepinfra", "togetherai", "fireworks"];
17
+ created: string;
18
+ knowledge: string;
19
+ modalities: {
20
+ input: readonly ["text", "file"];
21
+ output: readonly ["text"];
22
+ };
23
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
24
+ context: number;
25
+ }>;
26
+ export declare const qwen35Plus: import("../../utils").Preset<"alibaba/qwen3.5-plus", CatalogModel, {
27
+ modalities: {
28
+ input: readonly ["text", "image", "video", "file"];
29
+ output: readonly ["text"];
30
+ };
31
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
32
+ providers: readonly ["alibaba"];
33
+ name: string;
34
+ context: number;
35
+ created: string;
36
+ knowledge: string;
37
+ }>;
38
+ export declare const qwen35Flash: import("../../utils").Preset<"alibaba/qwen3.5-flash", CatalogModel, {
39
+ modalities: {
40
+ input: readonly ["text", "image", "video", "file"];
41
+ output: readonly ["text"];
42
+ };
43
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
44
+ providers: readonly ["alibaba"];
45
+ name: string;
46
+ context: number;
47
+ created: string;
48
+ knowledge: string;
49
+ }>;
50
+ export declare const qwen35_397b: import("../../utils").Preset<"alibaba/qwen3.5-397b", CatalogModel, {
51
+ modalities: {
52
+ input: readonly ["text", "image", "video", "file"];
53
+ output: readonly ["text"];
54
+ };
55
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
56
+ providers: readonly ["alibaba", "chutes", "deepinfra", "togetherai", "fireworks"];
57
+ name: string;
58
+ context: number;
59
+ created: string;
60
+ knowledge: string;
61
+ }>;
62
+ export declare const qwen35_122b: import("../../utils").Preset<"alibaba/qwen3.5-122b", CatalogModel, {
63
+ modalities: {
64
+ input: readonly ["text", "image", "video", "file"];
65
+ output: readonly ["text"];
66
+ };
67
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
68
+ providers: readonly ["alibaba", "azure", "deepinfra"];
69
+ name: string;
70
+ context: number;
71
+ created: string;
72
+ knowledge: string;
73
+ }>;
74
+ export declare const qwen35_35b: import("../../utils").Preset<"alibaba/qwen3.5-35b", CatalogModel, {
75
+ modalities: {
76
+ input: readonly ["text", "image", "video", "file"];
77
+ output: readonly ["text"];
78
+ };
79
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
80
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
81
+ name: string;
82
+ context: number;
83
+ created: string;
84
+ knowledge: string;
85
+ }>;
86
+ export declare const qwen35_27b: import("../../utils").Preset<"alibaba/qwen3.5-27b", CatalogModel, {
87
+ modalities: {
88
+ input: readonly ["text", "image", "video", "file"];
89
+ output: readonly ["text"];
90
+ };
91
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
92
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
93
+ name: string;
94
+ context: number;
95
+ created: string;
96
+ knowledge: string;
97
+ }>;
98
+ export declare const qwen35_9b: import("../../utils").Preset<"alibaba/qwen3.5-9b", CatalogModel, {
99
+ modalities: {
100
+ input: readonly ["text", "image", "video", "file"];
101
+ output: readonly ["text"];
102
+ };
103
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
104
+ providers: readonly ["alibaba", "azure", "deepinfra", "togetherai", "fireworks"];
105
+ name: string;
106
+ context: number;
107
+ created: string;
108
+ knowledge: string;
109
+ }>;
110
+ export declare const qwen35_4b: import("../../utils").Preset<"alibaba/qwen3.5-4b", CatalogModel, {
111
+ modalities: {
112
+ input: readonly ["text", "image", "video", "file"];
113
+ output: readonly ["text"];
114
+ };
115
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
116
+ providers: readonly ["alibaba", "azure", "deepinfra"];
117
+ name: string;
118
+ context: number;
119
+ created: string;
120
+ knowledge: string;
121
+ }>;
122
+ export declare const qwen35_2b: import("../../utils").Preset<"alibaba/qwen3.5-2b", CatalogModel, {
123
+ modalities: {
124
+ input: readonly ["text", "image", "video", "file"];
125
+ output: readonly ["text"];
126
+ };
127
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
128
+ providers: readonly ["alibaba", "azure", "deepinfra"];
129
+ name: string;
130
+ context: number;
131
+ created: string;
132
+ knowledge: string;
133
+ }>;
134
+ export declare const qwen35_08b: import("../../utils").Preset<"alibaba/qwen3.5-0.8b", CatalogModel, {
135
+ modalities: {
136
+ input: readonly ["text", "image", "video", "file"];
137
+ output: readonly ["text"];
138
+ };
139
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
140
+ providers: readonly ["alibaba", "azure", "deepinfra"];
141
+ name: string;
142
+ context: number;
143
+ created: string;
144
+ knowledge: string;
145
+ }>;
146
+ export declare const qwen36Plus: import("../../utils").Preset<"alibaba/qwen3.6-plus", CatalogModel, {
147
+ modalities: {
148
+ input: readonly ["text", "image", "video", "file"];
149
+ output: readonly ["text"];
150
+ };
151
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
152
+ providers: readonly ["alibaba"];
153
+ name: string;
154
+ context: number;
155
+ created: string;
156
+ knowledge: string;
157
+ }>;
158
+ export declare const qwen36Flash: import("../../utils").Preset<"alibaba/qwen3.6-flash", CatalogModel, {
159
+ modalities: {
160
+ input: readonly ["text", "image", "video", "file"];
161
+ output: readonly ["text"];
162
+ };
163
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
164
+ providers: readonly ["alibaba", "azure", "deepinfra"];
165
+ name: string;
166
+ context: number;
167
+ created: string;
168
+ knowledge: string;
169
+ }>;
170
+ export declare const qwen36MaxPreview: import("../../utils").Preset<"alibaba/qwen3.6-max-preview", CatalogModel, {
171
+ modalities: {
172
+ input: readonly ["text", "image", "video", "file"];
173
+ output: readonly ["text"];
174
+ };
175
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
176
+ providers: readonly ["alibaba"];
177
+ name: string;
178
+ context: number;
179
+ created: string;
180
+ knowledge: string;
181
+ }>;
182
+ export declare const qwen3CoderNext: import("../../utils").Preset<"alibaba/qwen3-coder-next", CatalogModel, {
183
+ modalities: {
184
+ input: readonly ["text", "file"];
185
+ output: readonly ["text"];
186
+ };
187
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
188
+ providers: readonly ["alibaba", "azure"];
189
+ name: string;
190
+ context: number;
191
+ created: string;
192
+ knowledge: string;
193
+ }>;
194
+ export declare const qwen3Vl235b: import("../../utils").Preset<"alibaba/qwen3-vl-235b", CatalogModel, {
195
+ name: string;
196
+ created: string;
197
+ knowledge: string;
198
+ modalities: {
199
+ input: readonly ["text", "image", "video", "file"];
200
+ output: readonly ["text"];
201
+ };
202
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
203
+ context: number;
204
+ providers: readonly ["alibaba", "azure", "bedrock"];
205
+ }>;
206
+ export declare const qwen3Embedding06b: import("../../utils").Preset<"alibaba/qwen3-embedding-0.6b", CatalogModel, {
207
+ name: string;
208
+ created: string;
209
+ modalities: {
210
+ input: readonly ["text"];
211
+ output: readonly ["embedding"];
212
+ };
213
+ context: number;
214
+ providers: readonly ["alibaba", "azure", "deepinfra"];
215
+ }>;
216
+ export declare const qwen3Embedding4b: import("../../utils").Preset<"alibaba/qwen3-embedding-4b", CatalogModel, {
217
+ providers: readonly ["alibaba", "deepinfra"];
218
+ name: string;
219
+ created: string;
220
+ modalities: {
221
+ input: readonly ["text"];
222
+ output: readonly ["embedding"];
223
+ };
224
+ context: number;
225
+ }>;
226
+ export declare const qwen3Embedding8b: import("../../utils").Preset<"alibaba/qwen3-embedding-8b", CatalogModel, {
227
+ name: string;
228
+ created: string;
229
+ modalities: {
230
+ input: readonly ["text"];
231
+ output: readonly ["embedding"];
232
+ };
233
+ context: number;
234
+ providers: readonly ["alibaba", "azure", "deepinfra"];
235
+ }>;
236
+ export declare const qwen: {
237
+ readonly latest: readonly [import("../../utils").Preset<"alibaba/qwen3.6-plus", CatalogModel, {
238
+ modalities: {
239
+ input: readonly ["text", "image", "video", "file"];
240
+ output: readonly ["text"];
241
+ };
242
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
243
+ providers: readonly ["alibaba"];
244
+ name: string;
245
+ context: number;
246
+ created: string;
247
+ knowledge: string;
248
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-flash", CatalogModel, {
249
+ modalities: {
250
+ input: readonly ["text", "image", "video", "file"];
251
+ output: readonly ["text"];
252
+ };
253
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
254
+ providers: readonly ["alibaba", "azure", "deepinfra"];
255
+ name: string;
256
+ context: number;
257
+ created: string;
258
+ knowledge: string;
259
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-max-preview", CatalogModel, {
260
+ modalities: {
261
+ input: readonly ["text", "image", "video", "file"];
262
+ output: readonly ["text"];
263
+ };
264
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
265
+ providers: readonly ["alibaba"];
266
+ name: string;
267
+ context: number;
268
+ created: string;
269
+ knowledge: string;
270
+ }>];
271
+ readonly all: (import("../../utils").Preset<"alibaba/qwen3-235b", CatalogModel, {
272
+ name: string;
273
+ created: string;
274
+ knowledge: string;
275
+ modalities: {
276
+ input: readonly ["text", "file"];
277
+ output: readonly ["text"];
278
+ };
279
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
280
+ context: number;
281
+ providers: readonly ["alibaba", "azure", "bedrock", "vertex", "deepinfra", "togetherai", "fireworks"];
282
+ }> | import("../../utils").Preset<"alibaba/qwen3-32b", CatalogModel, {
283
+ name: string;
284
+ providers: readonly ["alibaba", "azure", "groq", "bedrock", "vertex", "chutes", "deepinfra", "togetherai", "fireworks"];
285
+ created: string;
286
+ knowledge: string;
287
+ modalities: {
288
+ input: readonly ["text", "file"];
289
+ output: readonly ["text"];
290
+ };
291
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
292
+ context: number;
293
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-plus", CatalogModel, {
294
+ modalities: {
295
+ input: readonly ["text", "image", "video", "file"];
296
+ output: readonly ["text"];
297
+ };
298
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
299
+ providers: readonly ["alibaba"];
300
+ name: string;
301
+ context: number;
302
+ created: string;
303
+ knowledge: string;
304
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-flash", CatalogModel, {
305
+ modalities: {
306
+ input: readonly ["text", "image", "video", "file"];
307
+ output: readonly ["text"];
308
+ };
309
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
310
+ providers: readonly ["alibaba"];
311
+ name: string;
312
+ context: number;
313
+ created: string;
314
+ knowledge: string;
315
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-397b", CatalogModel, {
316
+ modalities: {
317
+ input: readonly ["text", "image", "video", "file"];
318
+ output: readonly ["text"];
319
+ };
320
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
321
+ providers: readonly ["alibaba", "chutes", "deepinfra", "togetherai", "fireworks"];
322
+ name: string;
323
+ context: number;
324
+ created: string;
325
+ knowledge: string;
326
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-122b", CatalogModel, {
327
+ modalities: {
328
+ input: readonly ["text", "image", "video", "file"];
329
+ output: readonly ["text"];
330
+ };
331
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
332
+ providers: readonly ["alibaba", "azure", "deepinfra"];
333
+ name: string;
334
+ context: number;
335
+ created: string;
336
+ knowledge: string;
337
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-35b", CatalogModel, {
338
+ modalities: {
339
+ input: readonly ["text", "image", "video", "file"];
340
+ output: readonly ["text"];
341
+ };
342
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
343
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
344
+ name: string;
345
+ context: number;
346
+ created: string;
347
+ knowledge: string;
348
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-27b", CatalogModel, {
349
+ modalities: {
350
+ input: readonly ["text", "image", "video", "file"];
351
+ output: readonly ["text"];
352
+ };
353
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
354
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
355
+ name: string;
356
+ context: number;
357
+ created: string;
358
+ knowledge: string;
359
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-9b", CatalogModel, {
360
+ modalities: {
361
+ input: readonly ["text", "image", "video", "file"];
362
+ output: readonly ["text"];
363
+ };
364
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
365
+ providers: readonly ["alibaba", "azure", "deepinfra", "togetherai", "fireworks"];
366
+ name: string;
367
+ context: number;
368
+ created: string;
369
+ knowledge: string;
370
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-4b", CatalogModel, {
371
+ modalities: {
372
+ input: readonly ["text", "image", "video", "file"];
373
+ output: readonly ["text"];
374
+ };
375
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
376
+ providers: readonly ["alibaba", "azure", "deepinfra"];
377
+ name: string;
378
+ context: number;
379
+ created: string;
380
+ knowledge: string;
381
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-2b", CatalogModel, {
382
+ modalities: {
383
+ input: readonly ["text", "image", "video", "file"];
384
+ output: readonly ["text"];
385
+ };
386
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
387
+ providers: readonly ["alibaba", "azure", "deepinfra"];
388
+ name: string;
389
+ context: number;
390
+ created: string;
391
+ knowledge: string;
392
+ }> | import("../../utils").Preset<"alibaba/qwen3.5-0.8b", CatalogModel, {
393
+ modalities: {
394
+ input: readonly ["text", "image", "video", "file"];
395
+ output: readonly ["text"];
396
+ };
397
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
398
+ providers: readonly ["alibaba", "azure", "deepinfra"];
399
+ name: string;
400
+ context: number;
401
+ created: string;
402
+ knowledge: string;
403
+ }> | import("../../utils").Preset<"alibaba/qwen3.6-plus", CatalogModel, {
404
+ modalities: {
405
+ input: readonly ["text", "image", "video", "file"];
406
+ output: readonly ["text"];
407
+ };
408
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
409
+ providers: readonly ["alibaba"];
410
+ name: string;
411
+ context: number;
412
+ created: string;
413
+ knowledge: string;
414
+ }> | import("../../utils").Preset<"alibaba/qwen3.6-flash", CatalogModel, {
415
+ modalities: {
416
+ input: readonly ["text", "image", "video", "file"];
417
+ output: readonly ["text"];
418
+ };
419
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
420
+ providers: readonly ["alibaba", "azure", "deepinfra"];
421
+ name: string;
422
+ context: number;
423
+ created: string;
424
+ knowledge: string;
425
+ }> | import("../../utils").Preset<"alibaba/qwen3.6-max-preview", CatalogModel, {
426
+ modalities: {
427
+ input: readonly ["text", "image", "video", "file"];
428
+ output: readonly ["text"];
429
+ };
430
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
431
+ providers: readonly ["alibaba"];
432
+ name: string;
433
+ context: number;
434
+ created: string;
435
+ knowledge: string;
436
+ }> | import("../../utils").Preset<"alibaba/qwen3-coder-next", CatalogModel, {
437
+ modalities: {
438
+ input: readonly ["text", "file"];
439
+ output: readonly ["text"];
440
+ };
441
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
442
+ providers: readonly ["alibaba", "azure"];
443
+ name: string;
444
+ context: number;
445
+ created: string;
446
+ knowledge: string;
447
+ }> | import("../../utils").Preset<"alibaba/qwen3-vl-235b", CatalogModel, {
448
+ name: string;
449
+ created: string;
450
+ knowledge: string;
451
+ modalities: {
452
+ input: readonly ["text", "image", "video", "file"];
453
+ output: readonly ["text"];
454
+ };
455
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
456
+ context: number;
457
+ providers: readonly ["alibaba", "azure", "bedrock"];
458
+ }> | import("../../utils").Preset<"alibaba/qwen3-embedding-0.6b", CatalogModel, {
459
+ name: string;
460
+ created: string;
461
+ modalities: {
462
+ input: readonly ["text"];
463
+ output: readonly ["embedding"];
464
+ };
465
+ context: number;
466
+ providers: readonly ["alibaba", "azure", "deepinfra"];
467
+ }> | import("../../utils").Preset<"alibaba/qwen3-embedding-4b", CatalogModel, {
468
+ providers: readonly ["alibaba", "deepinfra"];
469
+ name: string;
470
+ created: string;
471
+ modalities: {
472
+ input: readonly ["text"];
473
+ output: readonly ["embedding"];
474
+ };
475
+ context: number;
476
+ }> | import("../../utils").Preset<"alibaba/qwen3-embedding-8b", CatalogModel, {
477
+ name: string;
478
+ created: string;
479
+ modalities: {
480
+ input: readonly ["text"];
481
+ output: readonly ["embedding"];
482
+ };
483
+ context: number;
484
+ providers: readonly ["alibaba", "azure", "deepinfra"];
485
+ }>)[];
486
+ readonly "v3.x": readonly [import("../../utils").Preset<"alibaba/qwen3-235b", CatalogModel, {
487
+ name: string;
488
+ created: string;
489
+ knowledge: string;
490
+ modalities: {
491
+ input: readonly ["text", "file"];
492
+ output: readonly ["text"];
493
+ };
494
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
495
+ context: number;
496
+ providers: readonly ["alibaba", "azure", "bedrock", "vertex", "deepinfra", "togetherai", "fireworks"];
497
+ }>, import("../../utils").Preset<"alibaba/qwen3-32b", CatalogModel, {
498
+ name: string;
499
+ providers: readonly ["alibaba", "azure", "groq", "bedrock", "vertex", "chutes", "deepinfra", "togetherai", "fireworks"];
500
+ created: string;
501
+ knowledge: string;
502
+ modalities: {
503
+ input: readonly ["text", "file"];
504
+ output: readonly ["text"];
505
+ };
506
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
507
+ context: number;
508
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-plus", CatalogModel, {
509
+ modalities: {
510
+ input: readonly ["text", "image", "video", "file"];
511
+ output: readonly ["text"];
512
+ };
513
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
514
+ providers: readonly ["alibaba"];
515
+ name: string;
516
+ context: number;
517
+ created: string;
518
+ knowledge: string;
519
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-flash", CatalogModel, {
520
+ modalities: {
521
+ input: readonly ["text", "image", "video", "file"];
522
+ output: readonly ["text"];
523
+ };
524
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
525
+ providers: readonly ["alibaba"];
526
+ name: string;
527
+ context: number;
528
+ created: string;
529
+ knowledge: string;
530
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-397b", CatalogModel, {
531
+ modalities: {
532
+ input: readonly ["text", "image", "video", "file"];
533
+ output: readonly ["text"];
534
+ };
535
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
536
+ providers: readonly ["alibaba", "chutes", "deepinfra", "togetherai", "fireworks"];
537
+ name: string;
538
+ context: number;
539
+ created: string;
540
+ knowledge: string;
541
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-122b", CatalogModel, {
542
+ modalities: {
543
+ input: readonly ["text", "image", "video", "file"];
544
+ output: readonly ["text"];
545
+ };
546
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
547
+ providers: readonly ["alibaba", "azure", "deepinfra"];
548
+ name: string;
549
+ context: number;
550
+ created: string;
551
+ knowledge: string;
552
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-35b", CatalogModel, {
553
+ modalities: {
554
+ input: readonly ["text", "image", "video", "file"];
555
+ output: readonly ["text"];
556
+ };
557
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
558
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
559
+ name: string;
560
+ context: number;
561
+ created: string;
562
+ knowledge: string;
563
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-27b", CatalogModel, {
564
+ modalities: {
565
+ input: readonly ["text", "image", "video", "file"];
566
+ output: readonly ["text"];
567
+ };
568
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
569
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
570
+ name: string;
571
+ context: number;
572
+ created: string;
573
+ knowledge: string;
574
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-9b", CatalogModel, {
575
+ modalities: {
576
+ input: readonly ["text", "image", "video", "file"];
577
+ output: readonly ["text"];
578
+ };
579
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
580
+ providers: readonly ["alibaba", "azure", "deepinfra", "togetherai", "fireworks"];
581
+ name: string;
582
+ context: number;
583
+ created: string;
584
+ knowledge: string;
585
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-4b", CatalogModel, {
586
+ modalities: {
587
+ input: readonly ["text", "image", "video", "file"];
588
+ output: readonly ["text"];
589
+ };
590
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
591
+ providers: readonly ["alibaba", "azure", "deepinfra"];
592
+ name: string;
593
+ context: number;
594
+ created: string;
595
+ knowledge: string;
596
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-2b", CatalogModel, {
597
+ modalities: {
598
+ input: readonly ["text", "image", "video", "file"];
599
+ output: readonly ["text"];
600
+ };
601
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
602
+ providers: readonly ["alibaba", "azure", "deepinfra"];
603
+ name: string;
604
+ context: number;
605
+ created: string;
606
+ knowledge: string;
607
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-0.8b", CatalogModel, {
608
+ modalities: {
609
+ input: readonly ["text", "image", "video", "file"];
610
+ output: readonly ["text"];
611
+ };
612
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
613
+ providers: readonly ["alibaba", "azure", "deepinfra"];
614
+ name: string;
615
+ context: number;
616
+ created: string;
617
+ knowledge: string;
618
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-plus", CatalogModel, {
619
+ modalities: {
620
+ input: readonly ["text", "image", "video", "file"];
621
+ output: readonly ["text"];
622
+ };
623
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
624
+ providers: readonly ["alibaba"];
625
+ name: string;
626
+ context: number;
627
+ created: string;
628
+ knowledge: string;
629
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-flash", CatalogModel, {
630
+ modalities: {
631
+ input: readonly ["text", "image", "video", "file"];
632
+ output: readonly ["text"];
633
+ };
634
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
635
+ providers: readonly ["alibaba", "azure", "deepinfra"];
636
+ name: string;
637
+ context: number;
638
+ created: string;
639
+ knowledge: string;
640
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-max-preview", CatalogModel, {
641
+ modalities: {
642
+ input: readonly ["text", "image", "video", "file"];
643
+ output: readonly ["text"];
644
+ };
645
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
646
+ providers: readonly ["alibaba"];
647
+ name: string;
648
+ context: number;
649
+ created: string;
650
+ knowledge: string;
651
+ }>];
652
+ readonly embeddings: readonly [import("../../utils").Preset<"alibaba/qwen3-embedding-0.6b", CatalogModel, {
653
+ name: string;
654
+ created: string;
655
+ modalities: {
656
+ input: readonly ["text"];
657
+ output: readonly ["embedding"];
658
+ };
659
+ context: number;
660
+ providers: readonly ["alibaba", "azure", "deepinfra"];
661
+ }>, import("../../utils").Preset<"alibaba/qwen3-embedding-4b", CatalogModel, {
662
+ providers: readonly ["alibaba", "deepinfra"];
663
+ name: string;
664
+ created: string;
665
+ modalities: {
666
+ input: readonly ["text"];
667
+ output: readonly ["embedding"];
668
+ };
669
+ context: number;
670
+ }>, import("../../utils").Preset<"alibaba/qwen3-embedding-8b", CatalogModel, {
671
+ name: string;
672
+ created: string;
673
+ modalities: {
674
+ input: readonly ["text"];
675
+ output: readonly ["embedding"];
676
+ };
677
+ context: number;
678
+ providers: readonly ["alibaba", "azure", "deepinfra"];
679
+ }>];
680
+ readonly v3: readonly [import("../../utils").Preset<"alibaba/qwen3-235b", CatalogModel, {
681
+ name: string;
682
+ created: string;
683
+ knowledge: string;
684
+ modalities: {
685
+ input: readonly ["text", "file"];
686
+ output: readonly ["text"];
687
+ };
688
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
689
+ context: number;
690
+ providers: readonly ["alibaba", "azure", "bedrock", "vertex", "deepinfra", "togetherai", "fireworks"];
691
+ }>, import("../../utils").Preset<"alibaba/qwen3-32b", CatalogModel, {
692
+ name: string;
693
+ providers: readonly ["alibaba", "azure", "groq", "bedrock", "vertex", "chutes", "deepinfra", "togetherai", "fireworks"];
694
+ created: string;
695
+ knowledge: string;
696
+ modalities: {
697
+ input: readonly ["text", "file"];
698
+ output: readonly ["text"];
699
+ };
700
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
701
+ context: number;
702
+ }>];
703
+ readonly "v3.5": readonly [import("../../utils").Preset<"alibaba/qwen3.5-plus", CatalogModel, {
704
+ modalities: {
705
+ input: readonly ["text", "image", "video", "file"];
706
+ output: readonly ["text"];
707
+ };
708
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
709
+ providers: readonly ["alibaba"];
710
+ name: string;
711
+ context: number;
712
+ created: string;
713
+ knowledge: string;
714
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-flash", CatalogModel, {
715
+ modalities: {
716
+ input: readonly ["text", "image", "video", "file"];
717
+ output: readonly ["text"];
718
+ };
719
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
720
+ providers: readonly ["alibaba"];
721
+ name: string;
722
+ context: number;
723
+ created: string;
724
+ knowledge: string;
725
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-397b", CatalogModel, {
726
+ modalities: {
727
+ input: readonly ["text", "image", "video", "file"];
728
+ output: readonly ["text"];
729
+ };
730
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
731
+ providers: readonly ["alibaba", "chutes", "deepinfra", "togetherai", "fireworks"];
732
+ name: string;
733
+ context: number;
734
+ created: string;
735
+ knowledge: string;
736
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-122b", CatalogModel, {
737
+ modalities: {
738
+ input: readonly ["text", "image", "video", "file"];
739
+ output: readonly ["text"];
740
+ };
741
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
742
+ providers: readonly ["alibaba", "azure", "deepinfra"];
743
+ name: string;
744
+ context: number;
745
+ created: string;
746
+ knowledge: string;
747
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-35b", CatalogModel, {
748
+ modalities: {
749
+ input: readonly ["text", "image", "video", "file"];
750
+ output: readonly ["text"];
751
+ };
752
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
753
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
754
+ name: string;
755
+ context: number;
756
+ created: string;
757
+ knowledge: string;
758
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-27b", CatalogModel, {
759
+ modalities: {
760
+ input: readonly ["text", "image", "video", "file"];
761
+ output: readonly ["text"];
762
+ };
763
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
764
+ providers: readonly ["alibaba", "azure", "deepinfra", "fireworks"];
765
+ name: string;
766
+ context: number;
767
+ created: string;
768
+ knowledge: string;
769
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-9b", CatalogModel, {
770
+ modalities: {
771
+ input: readonly ["text", "image", "video", "file"];
772
+ output: readonly ["text"];
773
+ };
774
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
775
+ providers: readonly ["alibaba", "azure", "deepinfra", "togetherai", "fireworks"];
776
+ name: string;
777
+ context: number;
778
+ created: string;
779
+ knowledge: string;
780
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-4b", CatalogModel, {
781
+ modalities: {
782
+ input: readonly ["text", "image", "video", "file"];
783
+ output: readonly ["text"];
784
+ };
785
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
786
+ providers: readonly ["alibaba", "azure", "deepinfra"];
787
+ name: string;
788
+ context: number;
789
+ created: string;
790
+ knowledge: string;
791
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-2b", CatalogModel, {
792
+ modalities: {
793
+ input: readonly ["text", "image", "video", "file"];
794
+ output: readonly ["text"];
795
+ };
796
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
797
+ providers: readonly ["alibaba", "azure", "deepinfra"];
798
+ name: string;
799
+ context: number;
800
+ created: string;
801
+ knowledge: string;
802
+ }>, import("../../utils").Preset<"alibaba/qwen3.5-0.8b", CatalogModel, {
803
+ modalities: {
804
+ input: readonly ["text", "image", "video", "file"];
805
+ output: readonly ["text"];
806
+ };
807
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
808
+ providers: readonly ["alibaba", "azure", "deepinfra"];
809
+ name: string;
810
+ context: number;
811
+ created: string;
812
+ knowledge: string;
813
+ }>];
814
+ readonly "v3.6": readonly [import("../../utils").Preset<"alibaba/qwen3.6-plus", CatalogModel, {
815
+ modalities: {
816
+ input: readonly ["text", "image", "video", "file"];
817
+ output: readonly ["text"];
818
+ };
819
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
820
+ providers: readonly ["alibaba"];
821
+ name: string;
822
+ context: number;
823
+ created: string;
824
+ knowledge: string;
825
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-flash", CatalogModel, {
826
+ modalities: {
827
+ input: readonly ["text", "image", "video", "file"];
828
+ output: readonly ["text"];
829
+ };
830
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
831
+ providers: readonly ["alibaba", "azure", "deepinfra"];
832
+ name: string;
833
+ context: number;
834
+ created: string;
835
+ knowledge: string;
836
+ }>, import("../../utils").Preset<"alibaba/qwen3.6-max-preview", CatalogModel, {
837
+ modalities: {
838
+ input: readonly ["text", "image", "video", "file"];
839
+ output: readonly ["text"];
840
+ };
841
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
842
+ providers: readonly ["alibaba"];
843
+ name: string;
844
+ context: number;
845
+ created: string;
846
+ knowledge: string;
847
+ }>];
848
+ readonly coder: readonly [import("../../utils").Preset<"alibaba/qwen3-coder-next", CatalogModel, {
849
+ modalities: {
850
+ input: readonly ["text", "file"];
851
+ output: readonly ["text"];
852
+ };
853
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
854
+ providers: readonly ["alibaba", "azure"];
855
+ name: string;
856
+ context: number;
857
+ created: string;
858
+ knowledge: string;
859
+ }>];
860
+ readonly vl: readonly [import("../../utils").Preset<"alibaba/qwen3-vl-235b", CatalogModel, {
861
+ name: string;
862
+ created: string;
863
+ knowledge: string;
864
+ modalities: {
865
+ input: readonly ["text", "image", "video", "file"];
866
+ output: readonly ["text"];
867
+ };
868
+ capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
869
+ context: number;
870
+ providers: readonly ["alibaba", "azure", "bedrock"];
871
+ }>];
872
+ readonly embedding: readonly [import("../../utils").Preset<"alibaba/qwen3-embedding-0.6b", CatalogModel, {
873
+ name: string;
874
+ created: string;
875
+ modalities: {
876
+ input: readonly ["text"];
877
+ output: readonly ["embedding"];
878
+ };
879
+ context: number;
880
+ providers: readonly ["alibaba", "azure", "deepinfra"];
881
+ }>, import("../../utils").Preset<"alibaba/qwen3-embedding-4b", CatalogModel, {
882
+ providers: readonly ["alibaba", "deepinfra"];
883
+ name: string;
884
+ created: string;
885
+ modalities: {
886
+ input: readonly ["text"];
887
+ output: readonly ["embedding"];
888
+ };
889
+ context: number;
890
+ }>, import("../../utils").Preset<"alibaba/qwen3-embedding-8b", CatalogModel, {
891
+ name: string;
892
+ created: string;
893
+ modalities: {
894
+ input: readonly ["text"];
895
+ output: readonly ["embedding"];
896
+ };
897
+ context: number;
898
+ providers: readonly ["alibaba", "azure", "deepinfra"];
899
+ }>];
900
+ };