@deepstrike/sdk 0.2.52 → 0.2.60

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 (148) hide show
  1. package/README.md +28 -28
  2. package/dist/agent-ir.d.ts +103 -0
  3. package/dist/agent-ir.js +134 -0
  4. package/dist/agent.d.ts +67 -0
  5. package/dist/agent.js +36 -0
  6. package/dist/collaboration/harness.js +1 -1
  7. package/dist/collaboration/modes/creator-verifier.d.ts +2 -7
  8. package/dist/collaboration/modes/creator-verifier.js +4 -6
  9. package/dist/collaboration/pool.d.ts +8 -20
  10. package/dist/collaboration/pool.js +27 -97
  11. package/dist/compat/anthropic/mcp.d.ts +15 -0
  12. package/dist/compat/anthropic/mcp.js +10 -0
  13. package/dist/compat/openai/agent.d.ts +34 -0
  14. package/dist/compat/openai/agent.js +24 -0
  15. package/dist/governance.d.ts +1 -17
  16. package/dist/governance.js +1 -34
  17. package/dist/guardrail.d.ts +6 -0
  18. package/dist/guardrail.js +1 -0
  19. package/dist/handoff-target.d.ts +12 -0
  20. package/dist/handoff-target.js +1 -0
  21. package/dist/harness/manifest.js +0 -4
  22. package/dist/index.d.ts +19 -7
  23. package/dist/index.js +8 -5
  24. package/dist/kernel.d.ts +2 -20
  25. package/dist/knowledge/public.d.ts +29 -0
  26. package/dist/knowledge/public.js +1 -0
  27. package/dist/mcp-server.d.ts +28 -0
  28. package/dist/mcp-server.js +1 -0
  29. package/dist/memory/agent.d.ts +2 -2
  30. package/dist/memory/agent.js +2 -2
  31. package/dist/memory/durable.d.ts +16 -0
  32. package/dist/memory/durable.js +46 -0
  33. package/dist/memory/in-memory-store.d.ts +9 -7
  34. package/dist/memory/in-memory-store.js +8 -2
  35. package/dist/memory/protocols.d.ts +22 -4
  36. package/dist/memory/public.d.ts +4 -3
  37. package/dist/memory/public.js +3 -2
  38. package/dist/providers/anthropic-adapter.d.ts +47 -0
  39. package/dist/providers/anthropic-adapter.js +444 -0
  40. package/dist/providers/anthropic-compatible.d.ts +2 -3
  41. package/dist/providers/anthropic-compatible.js +8 -5
  42. package/dist/providers/anthropic.d.ts +19 -23
  43. package/dist/providers/anthropic.js +169 -395
  44. package/dist/providers/base.js +43 -3
  45. package/dist/providers/capability-router.d.ts +29 -0
  46. package/dist/providers/capability-router.js +43 -0
  47. package/dist/providers/catalog.d.ts +16 -4
  48. package/dist/providers/catalog.js +112 -21
  49. package/dist/providers/content-normalization.d.ts +57 -0
  50. package/dist/providers/content-normalization.js +238 -0
  51. package/dist/providers/content-policy.d.ts +16 -0
  52. package/dist/providers/content-policy.js +39 -0
  53. package/dist/providers/credentials.d.ts +83 -0
  54. package/dist/providers/credentials.js +190 -0
  55. package/dist/providers/endpoints.d.ts +137 -0
  56. package/dist/providers/endpoints.js +128 -0
  57. package/dist/providers/factories.js +9 -3
  58. package/dist/providers/gemini-adapter.d.ts +33 -0
  59. package/dist/providers/gemini-adapter.js +272 -0
  60. package/dist/providers/gemini.d.ts +16 -3
  61. package/dist/providers/gemini.js +97 -195
  62. package/dist/providers/model-catalog.d.ts +37 -0
  63. package/dist/providers/model-catalog.js +62 -0
  64. package/dist/providers/model-registry.d.ts +98 -0
  65. package/dist/providers/model-registry.js +315 -0
  66. package/dist/providers/ollama-adapter.d.ts +65 -0
  67. package/dist/providers/ollama-adapter.js +188 -0
  68. package/dist/providers/ollama.d.ts +9 -4
  69. package/dist/providers/ollama.js +96 -109
  70. package/dist/providers/openai-chat-dialects.d.ts +154 -0
  71. package/dist/providers/openai-chat-dialects.js +179 -0
  72. package/dist/providers/openai-chat.d.ts +46 -18
  73. package/dist/providers/openai-chat.js +418 -51
  74. package/dist/providers/openai-responses-adapter.d.ts +42 -0
  75. package/dist/providers/openai-responses-adapter.js +341 -0
  76. package/dist/providers/openai-responses.d.ts +14 -33
  77. package/dist/providers/openai-responses.js +131 -264
  78. package/dist/providers/openai.d.ts +29 -76
  79. package/dist/providers/openai.js +195 -292
  80. package/dist/providers/protocol-adapter.d.ts +34 -0
  81. package/dist/providers/protocol-adapter.js +9 -0
  82. package/dist/providers/protocol-capabilities.d.ts +34 -0
  83. package/dist/providers/protocol-capabilities.js +44 -0
  84. package/dist/providers/provider-error.d.ts +31 -0
  85. package/dist/providers/provider-error.js +149 -0
  86. package/dist/providers/public.d.ts +26 -3
  87. package/dist/providers/public.js +13 -1
  88. package/dist/providers/registry.d.ts +7 -6
  89. package/dist/providers/registry.js +47 -20
  90. package/dist/providers/request-plan.d.ts +86 -0
  91. package/dist/providers/request-plan.js +175 -0
  92. package/dist/providers/usage-normalizer.d.ts +48 -0
  93. package/dist/providers/usage-normalizer.js +96 -0
  94. package/dist/providers/vendor-profiles.d.ts +2 -15
  95. package/dist/providers/vendor-profiles.js +14 -60
  96. package/dist/runtime/canonical-kernel-step.d.ts +1 -2
  97. package/dist/runtime/canonical-kernel-step.js +47 -12
  98. package/dist/runtime/context-policy.d.ts +10 -12
  99. package/dist/runtime/context-policy.js +6 -8
  100. package/dist/runtime/durable-content.d.ts +50 -0
  101. package/dist/runtime/durable-content.js +159 -0
  102. package/dist/runtime/execution-plane.d.ts +2 -2
  103. package/dist/runtime/execution-plane.js +2 -2
  104. package/dist/runtime/kernel-event-log.js +0 -1
  105. package/dist/runtime/kernel-step.d.ts +0 -1
  106. package/dist/runtime/kernel-step.js +4 -2
  107. package/dist/runtime/mcp-proxy-plane.d.ts +25 -1
  108. package/dist/runtime/mcp-proxy-plane.js +44 -6
  109. package/dist/runtime/output-schema.d.ts +1 -2
  110. package/dist/runtime/provider-replay.d.ts +1 -1
  111. package/dist/runtime/provider-replay.js +12 -27
  112. package/dist/runtime/reactive-session.d.ts +1 -1
  113. package/dist/runtime/reactive-session.js +2 -3
  114. package/dist/runtime/run-group.d.ts +1 -1
  115. package/dist/runtime/runner.d.ts +26 -40
  116. package/dist/runtime/runner.js +145 -63
  117. package/dist/runtime/session-log.d.ts +8 -1
  118. package/dist/runtime/session-log.js +42 -2
  119. package/dist/runtime/session-repair.d.ts +1 -1
  120. package/dist/runtime/session-repair.js +1 -1
  121. package/dist/runtime/sub-agent-orchestrator.d.ts +1 -1
  122. package/dist/runtime/sub-agent-orchestrator.js +8 -11
  123. package/dist/runtime/workflow-control-flow.d.ts +0 -4
  124. package/dist/runtime/workflow-control-flow.js +0 -16
  125. package/dist/session.d.ts +11 -0
  126. package/dist/session.js +1 -0
  127. package/dist/skill.d.ts +17 -0
  128. package/dist/skill.js +16 -0
  129. package/dist/skills/loader.d.ts +3 -0
  130. package/dist/tools/errors.d.ts +1 -3
  131. package/dist/tools/errors.js +1 -3
  132. package/dist/tools/index.d.ts +3 -0
  133. package/dist/types/agent.d.ts +21 -9
  134. package/dist/types/agent.js +30 -4
  135. package/dist/types.d.ts +128 -13
  136. package/package.json +3 -3
  137. package/dist/providers/deepseek.d.ts +0 -46
  138. package/dist/providers/deepseek.js +0 -97
  139. package/dist/providers/glm.d.ts +0 -25
  140. package/dist/providers/glm.js +0 -48
  141. package/dist/providers/kimi.d.ts +0 -23
  142. package/dist/providers/kimi.js +0 -30
  143. package/dist/providers/minimax.d.ts +0 -49
  144. package/dist/providers/minimax.js +0 -98
  145. package/dist/providers/profiles.d.ts +0 -1992
  146. package/dist/providers/profiles.js +0 -796
  147. package/dist/providers/qwen.d.ts +0 -38
  148. package/dist/providers/qwen.js +0 -97
@@ -1,1992 +0,0 @@
1
- export type ProviderId = "anthropic" | "openai" | "minimax" | "deepseek" | "kimi" | "qwen" | "gemini" | "glm" | "baai";
2
- export type EndpointProtocol = "anthropic-messages" | "openai-chat" | "openai-responses" | "openai-embeddings" | "dashscope-multimodal-embeddings" | "gemini" | "gemini-embeddings" | "self-hosted-embeddings";
3
- export interface EndpointProfile {
4
- id: string;
5
- providerId: ProviderId;
6
- protocol: EndpointProtocol;
7
- baseURL: string;
8
- }
9
- export interface ModelProfile {
10
- id: string;
11
- providerId: ProviderId;
12
- defaultEndpointId: string;
13
- contextWindow?: number;
14
- /** Agent-message modalities the ContentPart → provider serializer path can deliver.
15
- * Do not advertise video/pdf until ContentPart gains those variants. */
16
- modalities: {
17
- input: Array<"text" | "image" | "audio" | "video" | "pdf">;
18
- output: Array<"text" | "embedding">;
19
- };
20
- tools: {
21
- supported: boolean;
22
- };
23
- reasoning: {
24
- supported: boolean;
25
- preserveAcrossToolTurns: boolean;
26
- };
27
- /** Recommended runtime execution policy for this model. */
28
- policy?: {
29
- maxTurns?: number;
30
- timeoutMs?: number;
31
- };
32
- }
33
- export declare const endpointProfiles: {
34
- readonly "anthropic.messages": {
35
- readonly id: "anthropic.messages";
36
- readonly providerId: "anthropic";
37
- readonly protocol: "anthropic-messages";
38
- readonly baseURL: "https://api.anthropic.com";
39
- };
40
- readonly "openai.chat": {
41
- readonly id: "openai.chat";
42
- readonly providerId: "openai";
43
- readonly protocol: "openai-chat";
44
- readonly baseURL: "https://api.openai.com/v1";
45
- };
46
- readonly "openai.responses": {
47
- readonly id: "openai.responses";
48
- readonly providerId: "openai";
49
- readonly protocol: "openai-responses";
50
- readonly baseURL: "https://api.openai.com/v1";
51
- };
52
- readonly "openai.embeddings": {
53
- readonly id: "openai.embeddings";
54
- readonly providerId: "openai";
55
- readonly protocol: "openai-embeddings";
56
- readonly baseURL: "https://api.openai.com/v1";
57
- };
58
- readonly "minimax.anthropic": {
59
- readonly id: "minimax.anthropic";
60
- readonly providerId: "minimax";
61
- readonly protocol: "anthropic-messages";
62
- readonly baseURL: "https://api.minimaxi.com/anthropic";
63
- };
64
- readonly "minimax.openai": {
65
- readonly id: "minimax.openai";
66
- readonly providerId: "minimax";
67
- readonly protocol: "openai-chat";
68
- readonly baseURL: "https://api.minimaxi.com/v1";
69
- };
70
- readonly "deepseek.anthropic": {
71
- readonly id: "deepseek.anthropic";
72
- readonly providerId: "deepseek";
73
- readonly protocol: "anthropic-messages";
74
- readonly baseURL: "https://api.deepseek.com/anthropic";
75
- };
76
- readonly "deepseek.openai": {
77
- readonly id: "deepseek.openai";
78
- readonly providerId: "deepseek";
79
- readonly protocol: "openai-chat";
80
- readonly baseURL: "https://api.deepseek.com";
81
- };
82
- readonly "kimi.anthropic": {
83
- readonly id: "kimi.anthropic";
84
- readonly providerId: "kimi";
85
- readonly protocol: "anthropic-messages";
86
- readonly baseURL: "https://api.moonshot.cn/anthropic";
87
- };
88
- readonly "kimi.openai": {
89
- readonly id: "kimi.openai";
90
- readonly providerId: "kimi";
91
- readonly protocol: "openai-chat";
92
- readonly baseURL: "https://api.moonshot.cn/v1";
93
- };
94
- readonly "qwen.anthropic": {
95
- readonly id: "qwen.anthropic";
96
- readonly providerId: "qwen";
97
- readonly protocol: "anthropic-messages";
98
- readonly baseURL: "https://dashscope-intl.aliyuncs.com/apps/anthropic";
99
- };
100
- readonly "qwen.dashscope": {
101
- readonly id: "qwen.dashscope";
102
- readonly providerId: "qwen";
103
- readonly protocol: "openai-chat";
104
- readonly baseURL: "https://dashscope.aliyuncs.com/compatible-mode/v1";
105
- };
106
- readonly "qwen.dashscope.embeddings": {
107
- readonly id: "qwen.dashscope.embeddings";
108
- readonly providerId: "qwen";
109
- readonly protocol: "openai-embeddings";
110
- readonly baseURL: "https://dashscope.aliyuncs.com/compatible-mode/v1";
111
- };
112
- readonly "qwen.dashscope.multimodal-embeddings": {
113
- readonly id: "qwen.dashscope.multimodal-embeddings";
114
- readonly providerId: "qwen";
115
- readonly protocol: "dashscope-multimodal-embeddings";
116
- readonly baseURL: "https://dashscope.aliyuncs.com/api/v1/services/embeddings/multimodal-embedding/multimodal-embedding";
117
- };
118
- readonly "gemini.google": {
119
- readonly id: "gemini.google";
120
- readonly providerId: "gemini";
121
- readonly protocol: "gemini";
122
- readonly baseURL: "https://generativelanguage.googleapis.com";
123
- };
124
- readonly "gemini.google.embeddings": {
125
- readonly id: "gemini.google.embeddings";
126
- readonly providerId: "gemini";
127
- readonly protocol: "gemini-embeddings";
128
- readonly baseURL: "https://generativelanguage.googleapis.com";
129
- };
130
- readonly "glm.anthropic": {
131
- readonly id: "glm.anthropic";
132
- readonly providerId: "glm";
133
- readonly protocol: "anthropic-messages";
134
- readonly baseURL: "https://open.bigmodel.cn/api/anthropic";
135
- };
136
- readonly "glm.openai": {
137
- readonly id: "glm.openai";
138
- readonly providerId: "glm";
139
- readonly protocol: "openai-chat";
140
- readonly baseURL: "https://open.bigmodel.cn/api/paas/v4";
141
- };
142
- readonly "glm.openai.embeddings": {
143
- readonly id: "glm.openai.embeddings";
144
- readonly providerId: "glm";
145
- readonly protocol: "openai-embeddings";
146
- readonly baseURL: "https://open.bigmodel.cn/api/paas/v4";
147
- };
148
- readonly "baai.self-hosted.embeddings": {
149
- readonly id: "baai.self-hosted.embeddings";
150
- readonly providerId: "baai";
151
- readonly protocol: "self-hosted-embeddings";
152
- readonly baseURL: "https://huggingface.co/BAAI";
153
- };
154
- };
155
- export declare const modelProfiles: {
156
- readonly "anthropic/claude-opus-4-1": {
157
- readonly id: "anthropic/claude-opus-4-1";
158
- readonly providerId: "anthropic";
159
- readonly defaultEndpointId: "anthropic.messages";
160
- readonly contextWindow: 200000;
161
- readonly modalities: {
162
- readonly input: ["text", "image"];
163
- readonly output: ["text"];
164
- };
165
- readonly tools: {
166
- readonly supported: true;
167
- };
168
- readonly reasoning: {
169
- readonly supported: true;
170
- readonly preserveAcrossToolTurns: true;
171
- };
172
- readonly policy: {
173
- readonly maxTurns: 50;
174
- };
175
- };
176
- readonly "anthropic/claude-opus-4-7": {
177
- readonly id: "anthropic/claude-opus-4-7";
178
- readonly providerId: "anthropic";
179
- readonly defaultEndpointId: "anthropic.messages";
180
- readonly contextWindow: 200000;
181
- readonly modalities: {
182
- readonly input: ["text", "image"];
183
- readonly output: ["text"];
184
- };
185
- readonly tools: {
186
- readonly supported: true;
187
- };
188
- readonly reasoning: {
189
- readonly supported: true;
190
- readonly preserveAcrossToolTurns: true;
191
- };
192
- readonly policy: {
193
- readonly maxTurns: 50;
194
- };
195
- };
196
- readonly "anthropic/claude-opus-4-6": {
197
- readonly id: "anthropic/claude-opus-4-6";
198
- readonly providerId: "anthropic";
199
- readonly defaultEndpointId: "anthropic.messages";
200
- readonly contextWindow: 200000;
201
- readonly modalities: {
202
- readonly input: ["text", "image"];
203
- readonly output: ["text"];
204
- };
205
- readonly tools: {
206
- readonly supported: true;
207
- };
208
- readonly reasoning: {
209
- readonly supported: true;
210
- readonly preserveAcrossToolTurns: true;
211
- };
212
- readonly policy: {
213
- readonly maxTurns: 50;
214
- };
215
- };
216
- readonly "anthropic/claude-opus-4-0": {
217
- readonly id: "anthropic/claude-opus-4-0";
218
- readonly providerId: "anthropic";
219
- readonly defaultEndpointId: "anthropic.messages";
220
- readonly contextWindow: 200000;
221
- readonly modalities: {
222
- readonly input: ["text", "image"];
223
- readonly output: ["text"];
224
- };
225
- readonly tools: {
226
- readonly supported: true;
227
- };
228
- readonly reasoning: {
229
- readonly supported: true;
230
- readonly preserveAcrossToolTurns: true;
231
- };
232
- readonly policy: {
233
- readonly maxTurns: 50;
234
- };
235
- };
236
- readonly "anthropic/claude-sonnet-4-6": {
237
- readonly id: "anthropic/claude-sonnet-4-6";
238
- readonly providerId: "anthropic";
239
- readonly defaultEndpointId: "anthropic.messages";
240
- readonly contextWindow: 200000;
241
- readonly modalities: {
242
- readonly input: ["text", "image"];
243
- readonly output: ["text"];
244
- };
245
- readonly tools: {
246
- readonly supported: true;
247
- };
248
- readonly reasoning: {
249
- readonly supported: true;
250
- readonly preserveAcrossToolTurns: false;
251
- };
252
- readonly policy: {
253
- readonly maxTurns: 25;
254
- };
255
- };
256
- readonly "anthropic/claude-sonnet-4-0": {
257
- readonly id: "anthropic/claude-sonnet-4-0";
258
- readonly providerId: "anthropic";
259
- readonly defaultEndpointId: "anthropic.messages";
260
- readonly contextWindow: 200000;
261
- readonly modalities: {
262
- readonly input: ["text", "image"];
263
- readonly output: ["text"];
264
- };
265
- readonly tools: {
266
- readonly supported: true;
267
- };
268
- readonly reasoning: {
269
- readonly supported: true;
270
- readonly preserveAcrossToolTurns: false;
271
- };
272
- readonly policy: {
273
- readonly maxTurns: 25;
274
- };
275
- };
276
- readonly "anthropic/claude-haiku-4-5": {
277
- readonly id: "anthropic/claude-haiku-4-5";
278
- readonly providerId: "anthropic";
279
- readonly defaultEndpointId: "anthropic.messages";
280
- readonly contextWindow: 200000;
281
- readonly modalities: {
282
- readonly input: ["text", "image"];
283
- readonly output: ["text"];
284
- };
285
- readonly tools: {
286
- readonly supported: true;
287
- };
288
- readonly reasoning: {
289
- readonly supported: false;
290
- readonly preserveAcrossToolTurns: false;
291
- };
292
- readonly policy: {
293
- readonly maxTurns: 15;
294
- };
295
- };
296
- readonly "anthropic/claude-3-5-haiku-latest": {
297
- readonly id: "anthropic/claude-3-5-haiku-latest";
298
- readonly providerId: "anthropic";
299
- readonly defaultEndpointId: "anthropic.messages";
300
- readonly contextWindow: 200000;
301
- readonly modalities: {
302
- readonly input: ["text", "image"];
303
- readonly output: ["text"];
304
- };
305
- readonly tools: {
306
- readonly supported: true;
307
- };
308
- readonly reasoning: {
309
- readonly supported: false;
310
- readonly preserveAcrossToolTurns: false;
311
- };
312
- readonly policy: {
313
- readonly maxTurns: 15;
314
- };
315
- };
316
- readonly "openai/gpt-5.5": {
317
- readonly id: "openai/gpt-5.5";
318
- readonly providerId: "openai";
319
- readonly defaultEndpointId: "openai.responses";
320
- readonly contextWindow: 1000000;
321
- readonly modalities: {
322
- readonly input: ["text", "image"];
323
- readonly output: ["text"];
324
- };
325
- readonly tools: {
326
- readonly supported: true;
327
- };
328
- readonly reasoning: {
329
- readonly supported: true;
330
- readonly preserveAcrossToolTurns: true;
331
- };
332
- readonly policy: {
333
- readonly maxTurns: 60;
334
- };
335
- };
336
- readonly "openai/gpt-5.4": {
337
- readonly id: "openai/gpt-5.4";
338
- readonly providerId: "openai";
339
- readonly defaultEndpointId: "openai.responses";
340
- readonly contextWindow: 1050000;
341
- readonly modalities: {
342
- readonly input: ["text", "image"];
343
- readonly output: ["text"];
344
- };
345
- readonly tools: {
346
- readonly supported: true;
347
- };
348
- readonly reasoning: {
349
- readonly supported: true;
350
- readonly preserveAcrossToolTurns: true;
351
- };
352
- readonly policy: {
353
- readonly maxTurns: 50;
354
- };
355
- };
356
- readonly "openai/gpt-5.4-mini": {
357
- readonly id: "openai/gpt-5.4-mini";
358
- readonly providerId: "openai";
359
- readonly defaultEndpointId: "openai.responses";
360
- readonly contextWindow: 400000;
361
- readonly modalities: {
362
- readonly input: ["text", "image"];
363
- readonly output: ["text"];
364
- };
365
- readonly tools: {
366
- readonly supported: true;
367
- };
368
- readonly reasoning: {
369
- readonly supported: true;
370
- readonly preserveAcrossToolTurns: true;
371
- };
372
- readonly policy: {
373
- readonly maxTurns: 25;
374
- };
375
- };
376
- readonly "openai/gpt-5.4-nano": {
377
- readonly id: "openai/gpt-5.4-nano";
378
- readonly providerId: "openai";
379
- readonly defaultEndpointId: "openai.responses";
380
- readonly contextWindow: 400000;
381
- readonly modalities: {
382
- readonly input: ["text", "image"];
383
- readonly output: ["text"];
384
- };
385
- readonly tools: {
386
- readonly supported: true;
387
- };
388
- readonly reasoning: {
389
- readonly supported: true;
390
- readonly preserveAcrossToolTurns: true;
391
- };
392
- readonly policy: {
393
- readonly maxTurns: 15;
394
- };
395
- };
396
- readonly "openai/gpt-5.2": {
397
- readonly id: "openai/gpt-5.2";
398
- readonly providerId: "openai";
399
- readonly defaultEndpointId: "openai.responses";
400
- readonly modalities: {
401
- readonly input: ["text", "image"];
402
- readonly output: ["text"];
403
- };
404
- readonly tools: {
405
- readonly supported: true;
406
- };
407
- readonly reasoning: {
408
- readonly supported: true;
409
- readonly preserveAcrossToolTurns: true;
410
- };
411
- readonly policy: {
412
- readonly maxTurns: 50;
413
- };
414
- };
415
- readonly "openai/gpt-5.2-pro": {
416
- readonly id: "openai/gpt-5.2-pro";
417
- readonly providerId: "openai";
418
- readonly defaultEndpointId: "openai.responses";
419
- readonly modalities: {
420
- readonly input: ["text", "image"];
421
- readonly output: ["text"];
422
- };
423
- readonly tools: {
424
- readonly supported: true;
425
- };
426
- readonly reasoning: {
427
- readonly supported: true;
428
- readonly preserveAcrossToolTurns: true;
429
- };
430
- readonly policy: {
431
- readonly maxTurns: 60;
432
- };
433
- };
434
- readonly "openai/gpt-5.1": {
435
- readonly id: "openai/gpt-5.1";
436
- readonly providerId: "openai";
437
- readonly defaultEndpointId: "openai.responses";
438
- readonly modalities: {
439
- readonly input: ["text", "image"];
440
- readonly output: ["text"];
441
- };
442
- readonly tools: {
443
- readonly supported: true;
444
- };
445
- readonly reasoning: {
446
- readonly supported: true;
447
- readonly preserveAcrossToolTurns: true;
448
- };
449
- readonly policy: {
450
- readonly maxTurns: 50;
451
- };
452
- };
453
- readonly "openai/gpt-4o": {
454
- readonly id: "openai/gpt-4o";
455
- readonly providerId: "openai";
456
- readonly defaultEndpointId: "openai.chat";
457
- readonly contextWindow: 128000;
458
- readonly modalities: {
459
- readonly input: ["text", "image"];
460
- readonly output: ["text"];
461
- };
462
- readonly tools: {
463
- readonly supported: true;
464
- };
465
- readonly reasoning: {
466
- readonly supported: false;
467
- readonly preserveAcrossToolTurns: false;
468
- };
469
- readonly policy: {
470
- readonly maxTurns: 25;
471
- };
472
- };
473
- readonly "openai/gpt-4o-mini": {
474
- readonly id: "openai/gpt-4o-mini";
475
- readonly providerId: "openai";
476
- readonly defaultEndpointId: "openai.chat";
477
- readonly contextWindow: 128000;
478
- readonly modalities: {
479
- readonly input: ["text", "image"];
480
- readonly output: ["text"];
481
- };
482
- readonly tools: {
483
- readonly supported: true;
484
- };
485
- readonly reasoning: {
486
- readonly supported: false;
487
- readonly preserveAcrossToolTurns: false;
488
- };
489
- readonly policy: {
490
- readonly maxTurns: 15;
491
- };
492
- };
493
- readonly "openai/gpt-4.1": {
494
- readonly id: "openai/gpt-4.1";
495
- readonly providerId: "openai";
496
- readonly defaultEndpointId: "openai.responses";
497
- readonly contextWindow: 1047576;
498
- readonly modalities: {
499
- readonly input: ["text", "image"];
500
- readonly output: ["text"];
501
- };
502
- readonly tools: {
503
- readonly supported: true;
504
- };
505
- readonly reasoning: {
506
- readonly supported: false;
507
- readonly preserveAcrossToolTurns: false;
508
- };
509
- readonly policy: {
510
- readonly maxTurns: 35;
511
- };
512
- };
513
- readonly "openai/gpt-4.1-mini": {
514
- readonly id: "openai/gpt-4.1-mini";
515
- readonly providerId: "openai";
516
- readonly defaultEndpointId: "openai.responses";
517
- readonly contextWindow: 1047576;
518
- readonly modalities: {
519
- readonly input: ["text", "image"];
520
- readonly output: ["text"];
521
- };
522
- readonly tools: {
523
- readonly supported: true;
524
- };
525
- readonly reasoning: {
526
- readonly supported: false;
527
- readonly preserveAcrossToolTurns: false;
528
- };
529
- readonly policy: {
530
- readonly maxTurns: 20;
531
- };
532
- };
533
- readonly "openai/gpt-4.1-nano": {
534
- readonly id: "openai/gpt-4.1-nano";
535
- readonly providerId: "openai";
536
- readonly defaultEndpointId: "openai.responses";
537
- readonly contextWindow: 1047576;
538
- readonly modalities: {
539
- readonly input: ["text", "image"];
540
- readonly output: ["text"];
541
- };
542
- readonly tools: {
543
- readonly supported: true;
544
- };
545
- readonly reasoning: {
546
- readonly supported: false;
547
- readonly preserveAcrossToolTurns: false;
548
- };
549
- readonly policy: {
550
- readonly maxTurns: 15;
551
- };
552
- };
553
- readonly "openai/gpt-5": {
554
- readonly id: "openai/gpt-5";
555
- readonly providerId: "openai";
556
- readonly defaultEndpointId: "openai.responses";
557
- readonly modalities: {
558
- readonly input: ["text", "image"];
559
- readonly output: ["text"];
560
- };
561
- readonly tools: {
562
- readonly supported: true;
563
- };
564
- readonly reasoning: {
565
- readonly supported: true;
566
- readonly preserveAcrossToolTurns: true;
567
- };
568
- readonly policy: {
569
- readonly maxTurns: 50;
570
- };
571
- };
572
- readonly "openai/gpt-5-pro": {
573
- readonly id: "openai/gpt-5-pro";
574
- readonly providerId: "openai";
575
- readonly defaultEndpointId: "openai.responses";
576
- readonly modalities: {
577
- readonly input: ["text", "image"];
578
- readonly output: ["text"];
579
- };
580
- readonly tools: {
581
- readonly supported: true;
582
- };
583
- readonly reasoning: {
584
- readonly supported: true;
585
- readonly preserveAcrossToolTurns: true;
586
- };
587
- readonly policy: {
588
- readonly maxTurns: 60;
589
- };
590
- };
591
- readonly "openai/gpt-5-mini": {
592
- readonly id: "openai/gpt-5-mini";
593
- readonly providerId: "openai";
594
- readonly defaultEndpointId: "openai.responses";
595
- readonly modalities: {
596
- readonly input: ["text", "image"];
597
- readonly output: ["text"];
598
- };
599
- readonly tools: {
600
- readonly supported: true;
601
- };
602
- readonly reasoning: {
603
- readonly supported: true;
604
- readonly preserveAcrossToolTurns: true;
605
- };
606
- readonly policy: {
607
- readonly maxTurns: 25;
608
- };
609
- };
610
- readonly "openai/gpt-5-nano": {
611
- readonly id: "openai/gpt-5-nano";
612
- readonly providerId: "openai";
613
- readonly defaultEndpointId: "openai.responses";
614
- readonly modalities: {
615
- readonly input: ["text", "image"];
616
- readonly output: ["text"];
617
- };
618
- readonly tools: {
619
- readonly supported: true;
620
- };
621
- readonly reasoning: {
622
- readonly supported: true;
623
- readonly preserveAcrossToolTurns: true;
624
- };
625
- readonly policy: {
626
- readonly maxTurns: 15;
627
- };
628
- };
629
- readonly "openai/o3": {
630
- readonly id: "openai/o3";
631
- readonly providerId: "openai";
632
- readonly defaultEndpointId: "openai.responses";
633
- readonly modalities: {
634
- readonly input: ["text", "image"];
635
- readonly output: ["text"];
636
- };
637
- readonly tools: {
638
- readonly supported: true;
639
- };
640
- readonly reasoning: {
641
- readonly supported: true;
642
- readonly preserveAcrossToolTurns: true;
643
- };
644
- readonly policy: {
645
- readonly maxTurns: 50;
646
- };
647
- };
648
- readonly "openai/o3-mini": {
649
- readonly id: "openai/o3-mini";
650
- readonly providerId: "openai";
651
- readonly defaultEndpointId: "openai.responses";
652
- readonly modalities: {
653
- readonly input: ["text"];
654
- readonly output: ["text"];
655
- };
656
- readonly tools: {
657
- readonly supported: true;
658
- };
659
- readonly reasoning: {
660
- readonly supported: true;
661
- readonly preserveAcrossToolTurns: true;
662
- };
663
- readonly policy: {
664
- readonly maxTurns: 25;
665
- };
666
- };
667
- readonly "openai/o4-mini": {
668
- readonly id: "openai/o4-mini";
669
- readonly providerId: "openai";
670
- readonly defaultEndpointId: "openai.responses";
671
- readonly modalities: {
672
- readonly input: ["text", "image"];
673
- readonly output: ["text"];
674
- };
675
- readonly tools: {
676
- readonly supported: true;
677
- };
678
- readonly reasoning: {
679
- readonly supported: true;
680
- readonly preserveAcrossToolTurns: true;
681
- };
682
- readonly policy: {
683
- readonly maxTurns: 25;
684
- };
685
- };
686
- readonly "openai/text-embedding-3-large": {
687
- readonly id: "openai/text-embedding-3-large";
688
- readonly providerId: "openai";
689
- readonly defaultEndpointId: "openai.embeddings";
690
- readonly modalities: {
691
- readonly input: ["text"];
692
- readonly output: ["embedding"];
693
- };
694
- readonly tools: {
695
- readonly supported: false;
696
- };
697
- readonly reasoning: {
698
- readonly supported: false;
699
- readonly preserveAcrossToolTurns: false;
700
- };
701
- };
702
- readonly "openai/text-embedding-3-small": {
703
- readonly id: "openai/text-embedding-3-small";
704
- readonly providerId: "openai";
705
- readonly defaultEndpointId: "openai.embeddings";
706
- readonly modalities: {
707
- readonly input: ["text"];
708
- readonly output: ["embedding"];
709
- };
710
- readonly tools: {
711
- readonly supported: false;
712
- };
713
- readonly reasoning: {
714
- readonly supported: false;
715
- readonly preserveAcrossToolTurns: false;
716
- };
717
- };
718
- readonly "openai/text-embedding-ada-002": {
719
- readonly id: "openai/text-embedding-ada-002";
720
- readonly providerId: "openai";
721
- readonly defaultEndpointId: "openai.embeddings";
722
- readonly modalities: {
723
- readonly input: ["text"];
724
- readonly output: ["embedding"];
725
- };
726
- readonly tools: {
727
- readonly supported: false;
728
- };
729
- readonly reasoning: {
730
- readonly supported: false;
731
- readonly preserveAcrossToolTurns: false;
732
- };
733
- };
734
- readonly "minimax/MiniMax-M3": {
735
- readonly id: "minimax/MiniMax-M3";
736
- readonly providerId: "minimax";
737
- readonly defaultEndpointId: "minimax.anthropic";
738
- readonly contextWindow: 204800;
739
- readonly modalities: {
740
- readonly input: ["text", "image"];
741
- readonly output: ["text"];
742
- };
743
- readonly tools: {
744
- readonly supported: true;
745
- };
746
- readonly reasoning: {
747
- readonly supported: true;
748
- readonly preserveAcrossToolTurns: true;
749
- };
750
- readonly policy: {
751
- readonly maxTurns: 35;
752
- };
753
- };
754
- readonly "minimax/MiniMax-M3-highspeed": {
755
- readonly id: "minimax/MiniMax-M3-highspeed";
756
- readonly providerId: "minimax";
757
- readonly defaultEndpointId: "minimax.anthropic";
758
- readonly contextWindow: 204800;
759
- readonly modalities: {
760
- readonly input: ["text", "image"];
761
- readonly output: ["text"];
762
- };
763
- readonly tools: {
764
- readonly supported: true;
765
- };
766
- readonly reasoning: {
767
- readonly supported: true;
768
- readonly preserveAcrossToolTurns: true;
769
- };
770
- readonly policy: {
771
- readonly maxTurns: 35;
772
- };
773
- };
774
- readonly "minimax/MiniMax-M2.7": {
775
- readonly id: "minimax/MiniMax-M2.7";
776
- readonly providerId: "minimax";
777
- readonly defaultEndpointId: "minimax.anthropic";
778
- readonly contextWindow: 204800;
779
- readonly modalities: {
780
- readonly input: ["text"];
781
- readonly output: ["text"];
782
- };
783
- readonly tools: {
784
- readonly supported: true;
785
- };
786
- readonly reasoning: {
787
- readonly supported: true;
788
- readonly preserveAcrossToolTurns: true;
789
- };
790
- readonly policy: {
791
- readonly maxTurns: 35;
792
- };
793
- };
794
- readonly "minimax/MiniMax-M2.7-highspeed": {
795
- readonly id: "minimax/MiniMax-M2.7-highspeed";
796
- readonly providerId: "minimax";
797
- readonly defaultEndpointId: "minimax.anthropic";
798
- readonly contextWindow: 204800;
799
- readonly modalities: {
800
- readonly input: ["text"];
801
- readonly output: ["text"];
802
- };
803
- readonly tools: {
804
- readonly supported: true;
805
- };
806
- readonly reasoning: {
807
- readonly supported: true;
808
- readonly preserveAcrossToolTurns: true;
809
- };
810
- readonly policy: {
811
- readonly maxTurns: 35;
812
- };
813
- };
814
- readonly "minimax/MiniMax-M2.5": {
815
- readonly id: "minimax/MiniMax-M2.5";
816
- readonly providerId: "minimax";
817
- readonly defaultEndpointId: "minimax.anthropic";
818
- readonly contextWindow: 204800;
819
- readonly modalities: {
820
- readonly input: ["text"];
821
- readonly output: ["text"];
822
- };
823
- readonly tools: {
824
- readonly supported: true;
825
- };
826
- readonly reasoning: {
827
- readonly supported: true;
828
- readonly preserveAcrossToolTurns: true;
829
- };
830
- readonly policy: {
831
- readonly maxTurns: 25;
832
- };
833
- };
834
- readonly "minimax/MiniMax-M2.5-highspeed": {
835
- readonly id: "minimax/MiniMax-M2.5-highspeed";
836
- readonly providerId: "minimax";
837
- readonly defaultEndpointId: "minimax.anthropic";
838
- readonly contextWindow: 204800;
839
- readonly modalities: {
840
- readonly input: ["text"];
841
- readonly output: ["text"];
842
- };
843
- readonly tools: {
844
- readonly supported: true;
845
- };
846
- readonly reasoning: {
847
- readonly supported: true;
848
- readonly preserveAcrossToolTurns: true;
849
- };
850
- readonly policy: {
851
- readonly maxTurns: 25;
852
- };
853
- };
854
- readonly "minimax/MiniMax-M2.1": {
855
- readonly id: "minimax/MiniMax-M2.1";
856
- readonly providerId: "minimax";
857
- readonly defaultEndpointId: "minimax.anthropic";
858
- readonly contextWindow: 204800;
859
- readonly modalities: {
860
- readonly input: ["text"];
861
- readonly output: ["text"];
862
- };
863
- readonly tools: {
864
- readonly supported: true;
865
- };
866
- readonly reasoning: {
867
- readonly supported: true;
868
- readonly preserveAcrossToolTurns: true;
869
- };
870
- readonly policy: {
871
- readonly maxTurns: 25;
872
- };
873
- };
874
- readonly "minimax/MiniMax-M2.1-highspeed": {
875
- readonly id: "minimax/MiniMax-M2.1-highspeed";
876
- readonly providerId: "minimax";
877
- readonly defaultEndpointId: "minimax.anthropic";
878
- readonly contextWindow: 204800;
879
- readonly modalities: {
880
- readonly input: ["text"];
881
- readonly output: ["text"];
882
- };
883
- readonly tools: {
884
- readonly supported: true;
885
- };
886
- readonly reasoning: {
887
- readonly supported: true;
888
- readonly preserveAcrossToolTurns: true;
889
- };
890
- readonly policy: {
891
- readonly maxTurns: 25;
892
- };
893
- };
894
- readonly "minimax/MiniMax-M2": {
895
- readonly id: "minimax/MiniMax-M2";
896
- readonly providerId: "minimax";
897
- readonly defaultEndpointId: "minimax.anthropic";
898
- readonly contextWindow: 204800;
899
- readonly modalities: {
900
- readonly input: ["text"];
901
- readonly output: ["text"];
902
- };
903
- readonly tools: {
904
- readonly supported: true;
905
- };
906
- readonly reasoning: {
907
- readonly supported: true;
908
- readonly preserveAcrossToolTurns: true;
909
- };
910
- readonly policy: {
911
- readonly maxTurns: 20;
912
- };
913
- };
914
- readonly "minimax/MiniMax-Text-01": {
915
- readonly id: "minimax/MiniMax-Text-01";
916
- readonly providerId: "minimax";
917
- readonly defaultEndpointId: "minimax.anthropic";
918
- readonly contextWindow: 1000000;
919
- readonly modalities: {
920
- readonly input: ["text"];
921
- readonly output: ["text"];
922
- };
923
- readonly tools: {
924
- readonly supported: true;
925
- };
926
- readonly reasoning: {
927
- readonly supported: false;
928
- readonly preserveAcrossToolTurns: false;
929
- };
930
- readonly policy: {
931
- readonly maxTurns: 20;
932
- };
933
- };
934
- readonly "deepseek/deepseek-chat": {
935
- readonly id: "deepseek/deepseek-chat";
936
- readonly providerId: "deepseek";
937
- readonly defaultEndpointId: "deepseek.anthropic";
938
- readonly contextWindow: 64000;
939
- readonly modalities: {
940
- readonly input: ["text"];
941
- readonly output: ["text"];
942
- };
943
- readonly tools: {
944
- readonly supported: true;
945
- };
946
- readonly reasoning: {
947
- readonly supported: false;
948
- readonly preserveAcrossToolTurns: false;
949
- };
950
- readonly policy: {
951
- readonly maxTurns: 25;
952
- };
953
- };
954
- readonly "deepseek/deepseek-reasoner": {
955
- readonly id: "deepseek/deepseek-reasoner";
956
- readonly providerId: "deepseek";
957
- readonly defaultEndpointId: "deepseek.anthropic";
958
- readonly contextWindow: 64000;
959
- readonly modalities: {
960
- readonly input: ["text"];
961
- readonly output: ["text"];
962
- };
963
- readonly tools: {
964
- readonly supported: true;
965
- };
966
- readonly reasoning: {
967
- readonly supported: true;
968
- readonly preserveAcrossToolTurns: true;
969
- };
970
- readonly policy: {
971
- readonly maxTurns: 50;
972
- };
973
- };
974
- readonly "deepseek/deepseek-v4-flash": {
975
- readonly id: "deepseek/deepseek-v4-flash";
976
- readonly providerId: "deepseek";
977
- readonly defaultEndpointId: "deepseek.anthropic";
978
- readonly contextWindow: 1000000;
979
- readonly modalities: {
980
- readonly input: ["text"];
981
- readonly output: ["text"];
982
- };
983
- readonly tools: {
984
- readonly supported: true;
985
- };
986
- readonly reasoning: {
987
- readonly supported: true;
988
- readonly preserveAcrossToolTurns: true;
989
- };
990
- readonly policy: {
991
- readonly maxTurns: 20;
992
- };
993
- };
994
- readonly "deepseek/deepseek-v4-pro": {
995
- readonly id: "deepseek/deepseek-v4-pro";
996
- readonly providerId: "deepseek";
997
- readonly defaultEndpointId: "deepseek.anthropic";
998
- readonly contextWindow: 1000000;
999
- readonly modalities: {
1000
- readonly input: ["text"];
1001
- readonly output: ["text"];
1002
- };
1003
- readonly tools: {
1004
- readonly supported: true;
1005
- };
1006
- readonly reasoning: {
1007
- readonly supported: true;
1008
- readonly preserveAcrossToolTurns: true;
1009
- };
1010
- readonly policy: {
1011
- readonly maxTurns: 35;
1012
- };
1013
- };
1014
- readonly "kimi/moonshot-v1-8k": {
1015
- readonly id: "kimi/moonshot-v1-8k";
1016
- readonly providerId: "kimi";
1017
- readonly defaultEndpointId: "kimi.anthropic";
1018
- readonly contextWindow: 8000;
1019
- readonly modalities: {
1020
- readonly input: ["text"];
1021
- readonly output: ["text"];
1022
- };
1023
- readonly tools: {
1024
- readonly supported: true;
1025
- };
1026
- readonly reasoning: {
1027
- readonly supported: false;
1028
- readonly preserveAcrossToolTurns: false;
1029
- };
1030
- readonly policy: {
1031
- readonly maxTurns: 15;
1032
- };
1033
- };
1034
- readonly "kimi/moonshot-v1-32k": {
1035
- readonly id: "kimi/moonshot-v1-32k";
1036
- readonly providerId: "kimi";
1037
- readonly defaultEndpointId: "kimi.anthropic";
1038
- readonly contextWindow: 32000;
1039
- readonly modalities: {
1040
- readonly input: ["text"];
1041
- readonly output: ["text"];
1042
- };
1043
- readonly tools: {
1044
- readonly supported: true;
1045
- };
1046
- readonly reasoning: {
1047
- readonly supported: false;
1048
- readonly preserveAcrossToolTurns: false;
1049
- };
1050
- readonly policy: {
1051
- readonly maxTurns: 20;
1052
- };
1053
- };
1054
- readonly "kimi/moonshot-v1-128k": {
1055
- readonly id: "kimi/moonshot-v1-128k";
1056
- readonly providerId: "kimi";
1057
- readonly defaultEndpointId: "kimi.anthropic";
1058
- readonly contextWindow: 128000;
1059
- readonly modalities: {
1060
- readonly input: ["text", "image"];
1061
- readonly output: ["text"];
1062
- };
1063
- readonly tools: {
1064
- readonly supported: true;
1065
- };
1066
- readonly reasoning: {
1067
- readonly supported: false;
1068
- readonly preserveAcrossToolTurns: false;
1069
- };
1070
- readonly policy: {
1071
- readonly maxTurns: 30;
1072
- };
1073
- };
1074
- readonly "kimi/kimi-k2.5": {
1075
- readonly id: "kimi/kimi-k2.5";
1076
- readonly providerId: "kimi";
1077
- readonly defaultEndpointId: "kimi.anthropic";
1078
- readonly contextWindow: 256000;
1079
- readonly modalities: {
1080
- readonly input: ["text", "image"];
1081
- readonly output: ["text"];
1082
- };
1083
- readonly tools: {
1084
- readonly supported: true;
1085
- };
1086
- readonly reasoning: {
1087
- readonly supported: true;
1088
- readonly preserveAcrossToolTurns: false;
1089
- };
1090
- readonly policy: {
1091
- readonly maxTurns: 30;
1092
- };
1093
- };
1094
- readonly "kimi/kimi-k2.6": {
1095
- readonly id: "kimi/kimi-k2.6";
1096
- readonly providerId: "kimi";
1097
- readonly defaultEndpointId: "kimi.anthropic";
1098
- readonly modalities: {
1099
- readonly input: ["text"];
1100
- readonly output: ["text"];
1101
- };
1102
- readonly tools: {
1103
- readonly supported: true;
1104
- };
1105
- readonly reasoning: {
1106
- readonly supported: true;
1107
- readonly preserveAcrossToolTurns: false;
1108
- };
1109
- readonly policy: {
1110
- readonly maxTurns: 35;
1111
- };
1112
- };
1113
- readonly "kimi/kimi-k2-thinking": {
1114
- readonly id: "kimi/kimi-k2-thinking";
1115
- readonly providerId: "kimi";
1116
- readonly defaultEndpointId: "kimi.anthropic";
1117
- readonly contextWindow: 256000;
1118
- readonly modalities: {
1119
- readonly input: ["text"];
1120
- readonly output: ["text"];
1121
- };
1122
- readonly tools: {
1123
- readonly supported: true;
1124
- };
1125
- readonly reasoning: {
1126
- readonly supported: true;
1127
- readonly preserveAcrossToolTurns: true;
1128
- };
1129
- readonly policy: {
1130
- readonly maxTurns: 50;
1131
- };
1132
- };
1133
- readonly "kimi/kimi-k2-thinking-turbo": {
1134
- readonly id: "kimi/kimi-k2-thinking-turbo";
1135
- readonly providerId: "kimi";
1136
- readonly defaultEndpointId: "kimi.anthropic";
1137
- readonly contextWindow: 256000;
1138
- readonly modalities: {
1139
- readonly input: ["text"];
1140
- readonly output: ["text"];
1141
- };
1142
- readonly tools: {
1143
- readonly supported: true;
1144
- };
1145
- readonly reasoning: {
1146
- readonly supported: true;
1147
- readonly preserveAcrossToolTurns: true;
1148
- };
1149
- readonly policy: {
1150
- readonly maxTurns: 40;
1151
- };
1152
- };
1153
- readonly "qwen/qwen3.7-max-preview": {
1154
- readonly id: "qwen/qwen3.7-max-preview";
1155
- readonly providerId: "qwen";
1156
- readonly defaultEndpointId: "qwen.anthropic";
1157
- readonly contextWindow: 256000;
1158
- readonly modalities: {
1159
- readonly input: ["text"];
1160
- readonly output: ["text"];
1161
- };
1162
- readonly tools: {
1163
- readonly supported: true;
1164
- };
1165
- readonly reasoning: {
1166
- readonly supported: true;
1167
- readonly preserveAcrossToolTurns: false;
1168
- };
1169
- readonly policy: {
1170
- readonly maxTurns: 45;
1171
- };
1172
- };
1173
- readonly "qwen/qwen3.7-plus-preview": {
1174
- readonly id: "qwen/qwen3.7-plus-preview";
1175
- readonly providerId: "qwen";
1176
- readonly defaultEndpointId: "qwen.anthropic";
1177
- readonly contextWindow: 1000000;
1178
- readonly modalities: {
1179
- readonly input: ["text", "image"];
1180
- readonly output: ["text"];
1181
- };
1182
- readonly tools: {
1183
- readonly supported: true;
1184
- };
1185
- readonly reasoning: {
1186
- readonly supported: true;
1187
- readonly preserveAcrossToolTurns: false;
1188
- };
1189
- readonly policy: {
1190
- readonly maxTurns: 40;
1191
- };
1192
- };
1193
- readonly "qwen/qwen3.6-max-preview": {
1194
- readonly id: "qwen/qwen3.6-max-preview";
1195
- readonly providerId: "qwen";
1196
- readonly defaultEndpointId: "qwen.anthropic";
1197
- readonly contextWindow: 256000;
1198
- readonly modalities: {
1199
- readonly input: ["text"];
1200
- readonly output: ["text"];
1201
- };
1202
- readonly tools: {
1203
- readonly supported: true;
1204
- };
1205
- readonly reasoning: {
1206
- readonly supported: true;
1207
- readonly preserveAcrossToolTurns: false;
1208
- };
1209
- readonly policy: {
1210
- readonly maxTurns: 40;
1211
- };
1212
- };
1213
- readonly "qwen/qwen3.6-plus": {
1214
- readonly id: "qwen/qwen3.6-plus";
1215
- readonly providerId: "qwen";
1216
- readonly defaultEndpointId: "qwen.anthropic";
1217
- readonly contextWindow: 1000000;
1218
- readonly modalities: {
1219
- readonly input: ["text", "image"];
1220
- readonly output: ["text"];
1221
- };
1222
- readonly tools: {
1223
- readonly supported: true;
1224
- };
1225
- readonly reasoning: {
1226
- readonly supported: true;
1227
- readonly preserveAcrossToolTurns: false;
1228
- };
1229
- readonly policy: {
1230
- readonly maxTurns: 35;
1231
- };
1232
- };
1233
- readonly "qwen/qwen3.6-flash": {
1234
- readonly id: "qwen/qwen3.6-flash";
1235
- readonly providerId: "qwen";
1236
- readonly defaultEndpointId: "qwen.anthropic";
1237
- readonly contextWindow: 1000000;
1238
- readonly modalities: {
1239
- readonly input: ["text", "image"];
1240
- readonly output: ["text"];
1241
- };
1242
- readonly tools: {
1243
- readonly supported: true;
1244
- };
1245
- readonly reasoning: {
1246
- readonly supported: true;
1247
- readonly preserveAcrossToolTurns: false;
1248
- };
1249
- readonly policy: {
1250
- readonly maxTurns: 20;
1251
- };
1252
- };
1253
- readonly "qwen/qwen3.6-35b-a3b": {
1254
- readonly id: "qwen/qwen3.6-35b-a3b";
1255
- readonly providerId: "qwen";
1256
- readonly defaultEndpointId: "qwen.anthropic";
1257
- readonly contextWindow: 256000;
1258
- readonly modalities: {
1259
- readonly input: ["text", "image"];
1260
- readonly output: ["text"];
1261
- };
1262
- readonly tools: {
1263
- readonly supported: true;
1264
- };
1265
- readonly reasoning: {
1266
- readonly supported: true;
1267
- readonly preserveAcrossToolTurns: false;
1268
- };
1269
- readonly policy: {
1270
- readonly maxTurns: 25;
1271
- };
1272
- };
1273
- readonly "qwen/qwen3.6-27b": {
1274
- readonly id: "qwen/qwen3.6-27b";
1275
- readonly providerId: "qwen";
1276
- readonly defaultEndpointId: "qwen.anthropic";
1277
- readonly contextWindow: 256000;
1278
- readonly modalities: {
1279
- readonly input: ["text", "image"];
1280
- readonly output: ["text"];
1281
- };
1282
- readonly tools: {
1283
- readonly supported: true;
1284
- };
1285
- readonly reasoning: {
1286
- readonly supported: true;
1287
- readonly preserveAcrossToolTurns: false;
1288
- };
1289
- readonly policy: {
1290
- readonly maxTurns: 25;
1291
- };
1292
- };
1293
- readonly "qwen/qwen3.5-plus": {
1294
- readonly id: "qwen/qwen3.5-plus";
1295
- readonly providerId: "qwen";
1296
- readonly defaultEndpointId: "qwen.anthropic";
1297
- readonly contextWindow: 1000000;
1298
- readonly modalities: {
1299
- readonly input: ["text", "image"];
1300
- readonly output: ["text"];
1301
- };
1302
- readonly tools: {
1303
- readonly supported: true;
1304
- };
1305
- readonly reasoning: {
1306
- readonly supported: true;
1307
- readonly preserveAcrossToolTurns: false;
1308
- };
1309
- readonly policy: {
1310
- readonly maxTurns: 35;
1311
- };
1312
- };
1313
- readonly "qwen/qwen3.5-flash": {
1314
- readonly id: "qwen/qwen3.5-flash";
1315
- readonly providerId: "qwen";
1316
- readonly defaultEndpointId: "qwen.anthropic";
1317
- readonly contextWindow: 1000000;
1318
- readonly modalities: {
1319
- readonly input: ["text", "image"];
1320
- readonly output: ["text"];
1321
- };
1322
- readonly tools: {
1323
- readonly supported: true;
1324
- };
1325
- readonly reasoning: {
1326
- readonly supported: true;
1327
- readonly preserveAcrossToolTurns: false;
1328
- };
1329
- readonly policy: {
1330
- readonly maxTurns: 20;
1331
- };
1332
- };
1333
- readonly "qwen/qwen3.5-397b-a17b": {
1334
- readonly id: "qwen/qwen3.5-397b-a17b";
1335
- readonly providerId: "qwen";
1336
- readonly defaultEndpointId: "qwen.anthropic";
1337
- readonly contextWindow: 256000;
1338
- readonly modalities: {
1339
- readonly input: ["text", "image"];
1340
- readonly output: ["text"];
1341
- };
1342
- readonly tools: {
1343
- readonly supported: true;
1344
- };
1345
- readonly reasoning: {
1346
- readonly supported: true;
1347
- readonly preserveAcrossToolTurns: false;
1348
- };
1349
- readonly policy: {
1350
- readonly maxTurns: 35;
1351
- };
1352
- };
1353
- readonly "qwen/qwen3.5-122b-a10b": {
1354
- readonly id: "qwen/qwen3.5-122b-a10b";
1355
- readonly providerId: "qwen";
1356
- readonly defaultEndpointId: "qwen.anthropic";
1357
- readonly contextWindow: 256000;
1358
- readonly modalities: {
1359
- readonly input: ["text", "image"];
1360
- readonly output: ["text"];
1361
- };
1362
- readonly tools: {
1363
- readonly supported: true;
1364
- };
1365
- readonly reasoning: {
1366
- readonly supported: true;
1367
- readonly preserveAcrossToolTurns: false;
1368
- };
1369
- readonly policy: {
1370
- readonly maxTurns: 25;
1371
- };
1372
- };
1373
- readonly "qwen/qwen3.5-35b-a3b": {
1374
- readonly id: "qwen/qwen3.5-35b-a3b";
1375
- readonly providerId: "qwen";
1376
- readonly defaultEndpointId: "qwen.anthropic";
1377
- readonly contextWindow: 256000;
1378
- readonly modalities: {
1379
- readonly input: ["text", "image"];
1380
- readonly output: ["text"];
1381
- };
1382
- readonly tools: {
1383
- readonly supported: true;
1384
- };
1385
- readonly reasoning: {
1386
- readonly supported: true;
1387
- readonly preserveAcrossToolTurns: false;
1388
- };
1389
- readonly policy: {
1390
- readonly maxTurns: 20;
1391
- };
1392
- };
1393
- readonly "qwen/qwen3.5-27b": {
1394
- readonly id: "qwen/qwen3.5-27b";
1395
- readonly providerId: "qwen";
1396
- readonly defaultEndpointId: "qwen.anthropic";
1397
- readonly contextWindow: 256000;
1398
- readonly modalities: {
1399
- readonly input: ["text", "image"];
1400
- readonly output: ["text"];
1401
- };
1402
- readonly tools: {
1403
- readonly supported: true;
1404
- };
1405
- readonly reasoning: {
1406
- readonly supported: true;
1407
- readonly preserveAcrossToolTurns: false;
1408
- };
1409
- readonly policy: {
1410
- readonly maxTurns: 20;
1411
- };
1412
- };
1413
- readonly "qwen/text-embedding-v4": {
1414
- readonly id: "qwen/text-embedding-v4";
1415
- readonly providerId: "qwen";
1416
- readonly defaultEndpointId: "qwen.dashscope.embeddings";
1417
- readonly contextWindow: 8192;
1418
- readonly modalities: {
1419
- readonly input: ["text"];
1420
- readonly output: ["embedding"];
1421
- };
1422
- readonly tools: {
1423
- readonly supported: false;
1424
- };
1425
- readonly reasoning: {
1426
- readonly supported: false;
1427
- readonly preserveAcrossToolTurns: false;
1428
- };
1429
- };
1430
- readonly "qwen/text-embedding-v3": {
1431
- readonly id: "qwen/text-embedding-v3";
1432
- readonly providerId: "qwen";
1433
- readonly defaultEndpointId: "qwen.dashscope.embeddings";
1434
- readonly contextWindow: 8192;
1435
- readonly modalities: {
1436
- readonly input: ["text"];
1437
- readonly output: ["embedding"];
1438
- };
1439
- readonly tools: {
1440
- readonly supported: false;
1441
- };
1442
- readonly reasoning: {
1443
- readonly supported: false;
1444
- readonly preserveAcrossToolTurns: false;
1445
- };
1446
- };
1447
- readonly "qwen/qwen3-vl-embedding": {
1448
- readonly id: "qwen/qwen3-vl-embedding";
1449
- readonly providerId: "qwen";
1450
- readonly defaultEndpointId: "qwen.dashscope.multimodal-embeddings";
1451
- readonly contextWindow: 32000;
1452
- readonly modalities: {
1453
- readonly input: ["text", "image"];
1454
- readonly output: ["embedding"];
1455
- };
1456
- readonly tools: {
1457
- readonly supported: false;
1458
- };
1459
- readonly reasoning: {
1460
- readonly supported: false;
1461
- readonly preserveAcrossToolTurns: false;
1462
- };
1463
- };
1464
- readonly "qwen/qwen2.5-vl-embedding": {
1465
- readonly id: "qwen/qwen2.5-vl-embedding";
1466
- readonly providerId: "qwen";
1467
- readonly defaultEndpointId: "qwen.dashscope.multimodal-embeddings";
1468
- readonly contextWindow: 32000;
1469
- readonly modalities: {
1470
- readonly input: ["text", "image"];
1471
- readonly output: ["embedding"];
1472
- };
1473
- readonly tools: {
1474
- readonly supported: false;
1475
- };
1476
- readonly reasoning: {
1477
- readonly supported: false;
1478
- readonly preserveAcrossToolTurns: false;
1479
- };
1480
- };
1481
- readonly "gemini/gemini-3-pro-preview": {
1482
- readonly id: "gemini/gemini-3-pro-preview";
1483
- readonly providerId: "gemini";
1484
- readonly defaultEndpointId: "gemini.google";
1485
- readonly contextWindow: 1048576;
1486
- readonly modalities: {
1487
- readonly input: ["text", "image", "audio"];
1488
- readonly output: ["text"];
1489
- };
1490
- readonly tools: {
1491
- readonly supported: true;
1492
- };
1493
- readonly reasoning: {
1494
- readonly supported: true;
1495
- readonly preserveAcrossToolTurns: false;
1496
- };
1497
- readonly policy: {
1498
- readonly maxTurns: 50;
1499
- };
1500
- };
1501
- readonly "gemini/gemini-3-flash-preview": {
1502
- readonly id: "gemini/gemini-3-flash-preview";
1503
- readonly providerId: "gemini";
1504
- readonly defaultEndpointId: "gemini.google";
1505
- readonly contextWindow: 1048576;
1506
- readonly modalities: {
1507
- readonly input: ["text", "image", "audio"];
1508
- readonly output: ["text"];
1509
- };
1510
- readonly tools: {
1511
- readonly supported: true;
1512
- };
1513
- readonly reasoning: {
1514
- readonly supported: true;
1515
- readonly preserveAcrossToolTurns: false;
1516
- };
1517
- readonly policy: {
1518
- readonly maxTurns: 25;
1519
- };
1520
- };
1521
- readonly "gemini/gemini-3.5-flash": {
1522
- readonly id: "gemini/gemini-3.5-flash";
1523
- readonly providerId: "gemini";
1524
- readonly defaultEndpointId: "gemini.google";
1525
- readonly contextWindow: 1048576;
1526
- readonly modalities: {
1527
- readonly input: ["text", "image", "audio"];
1528
- readonly output: ["text"];
1529
- };
1530
- readonly tools: {
1531
- readonly supported: true;
1532
- };
1533
- readonly reasoning: {
1534
- readonly supported: true;
1535
- readonly preserveAcrossToolTurns: false;
1536
- };
1537
- readonly policy: {
1538
- readonly maxTurns: 30;
1539
- };
1540
- };
1541
- readonly "gemini/gemini-2.5-pro": {
1542
- readonly id: "gemini/gemini-2.5-pro";
1543
- readonly providerId: "gemini";
1544
- readonly defaultEndpointId: "gemini.google";
1545
- readonly contextWindow: 1048576;
1546
- readonly modalities: {
1547
- readonly input: ["text", "image", "audio"];
1548
- readonly output: ["text"];
1549
- };
1550
- readonly tools: {
1551
- readonly supported: true;
1552
- };
1553
- readonly reasoning: {
1554
- readonly supported: true;
1555
- readonly preserveAcrossToolTurns: false;
1556
- };
1557
- readonly policy: {
1558
- readonly maxTurns: 35;
1559
- };
1560
- };
1561
- readonly "gemini/gemini-2.5-flash": {
1562
- readonly id: "gemini/gemini-2.5-flash";
1563
- readonly providerId: "gemini";
1564
- readonly defaultEndpointId: "gemini.google";
1565
- readonly contextWindow: 1048576;
1566
- readonly modalities: {
1567
- readonly input: ["text", "image", "audio"];
1568
- readonly output: ["text"];
1569
- };
1570
- readonly tools: {
1571
- readonly supported: true;
1572
- };
1573
- readonly reasoning: {
1574
- readonly supported: true;
1575
- readonly preserveAcrossToolTurns: false;
1576
- };
1577
- readonly policy: {
1578
- readonly maxTurns: 20;
1579
- };
1580
- };
1581
- readonly "gemini/gemini-2.0-flash": {
1582
- readonly id: "gemini/gemini-2.0-flash";
1583
- readonly providerId: "gemini";
1584
- readonly defaultEndpointId: "gemini.google";
1585
- readonly contextWindow: 1048576;
1586
- readonly modalities: {
1587
- readonly input: ["text", "image", "audio"];
1588
- readonly output: ["text"];
1589
- };
1590
- readonly tools: {
1591
- readonly supported: true;
1592
- };
1593
- readonly reasoning: {
1594
- readonly supported: false;
1595
- readonly preserveAcrossToolTurns: false;
1596
- };
1597
- readonly policy: {
1598
- readonly maxTurns: 15;
1599
- };
1600
- };
1601
- readonly "gemini/gemini-2.0-flash-lite": {
1602
- readonly id: "gemini/gemini-2.0-flash-lite";
1603
- readonly providerId: "gemini";
1604
- readonly defaultEndpointId: "gemini.google";
1605
- readonly contextWindow: 1048576;
1606
- readonly modalities: {
1607
- readonly input: ["text", "image", "audio"];
1608
- readonly output: ["text"];
1609
- };
1610
- readonly tools: {
1611
- readonly supported: true;
1612
- };
1613
- readonly reasoning: {
1614
- readonly supported: false;
1615
- readonly preserveAcrossToolTurns: false;
1616
- };
1617
- readonly policy: {
1618
- readonly maxTurns: 10;
1619
- };
1620
- };
1621
- readonly "gemini/gemini-1.5-pro": {
1622
- readonly id: "gemini/gemini-1.5-pro";
1623
- readonly providerId: "gemini";
1624
- readonly defaultEndpointId: "gemini.google";
1625
- readonly contextWindow: 2097152;
1626
- readonly modalities: {
1627
- readonly input: ["text", "image", "audio"];
1628
- readonly output: ["text"];
1629
- };
1630
- readonly tools: {
1631
- readonly supported: true;
1632
- };
1633
- readonly reasoning: {
1634
- readonly supported: false;
1635
- readonly preserveAcrossToolTurns: false;
1636
- };
1637
- readonly policy: {
1638
- readonly maxTurns: 30;
1639
- };
1640
- };
1641
- readonly "gemini/gemini-1.5-flash": {
1642
- readonly id: "gemini/gemini-1.5-flash";
1643
- readonly providerId: "gemini";
1644
- readonly defaultEndpointId: "gemini.google";
1645
- readonly contextWindow: 1048576;
1646
- readonly modalities: {
1647
- readonly input: ["text", "image", "audio"];
1648
- readonly output: ["text"];
1649
- };
1650
- readonly tools: {
1651
- readonly supported: true;
1652
- };
1653
- readonly reasoning: {
1654
- readonly supported: false;
1655
- readonly preserveAcrossToolTurns: false;
1656
- };
1657
- readonly policy: {
1658
- readonly maxTurns: 15;
1659
- };
1660
- };
1661
- readonly "gemini/gemini-embedding-001": {
1662
- readonly id: "gemini/gemini-embedding-001";
1663
- readonly providerId: "gemini";
1664
- readonly defaultEndpointId: "gemini.google.embeddings";
1665
- readonly contextWindow: 2048;
1666
- readonly modalities: {
1667
- readonly input: ["text"];
1668
- readonly output: ["embedding"];
1669
- };
1670
- readonly tools: {
1671
- readonly supported: false;
1672
- };
1673
- readonly reasoning: {
1674
- readonly supported: false;
1675
- readonly preserveAcrossToolTurns: false;
1676
- };
1677
- };
1678
- readonly "gemini/gemini-embedding-2": {
1679
- readonly id: "gemini/gemini-embedding-2";
1680
- readonly providerId: "gemini";
1681
- readonly defaultEndpointId: "gemini.google.embeddings";
1682
- readonly contextWindow: 8192;
1683
- readonly modalities: {
1684
- readonly input: ["text", "image", "audio"];
1685
- readonly output: ["embedding"];
1686
- };
1687
- readonly tools: {
1688
- readonly supported: false;
1689
- };
1690
- readonly reasoning: {
1691
- readonly supported: false;
1692
- readonly preserveAcrossToolTurns: false;
1693
- };
1694
- };
1695
- readonly "glm/glm-5.2": {
1696
- readonly id: "glm/glm-5.2";
1697
- readonly providerId: "glm";
1698
- readonly defaultEndpointId: "glm.anthropic";
1699
- readonly contextWindow: 200000;
1700
- readonly modalities: {
1701
- readonly input: ["text"];
1702
- readonly output: ["text"];
1703
- };
1704
- readonly tools: {
1705
- readonly supported: true;
1706
- };
1707
- readonly reasoning: {
1708
- readonly supported: true;
1709
- readonly preserveAcrossToolTurns: true;
1710
- };
1711
- readonly policy: {
1712
- readonly maxTurns: 50;
1713
- };
1714
- };
1715
- readonly "glm/glm-5.1": {
1716
- readonly id: "glm/glm-5.1";
1717
- readonly providerId: "glm";
1718
- readonly defaultEndpointId: "glm.anthropic";
1719
- readonly contextWindow: 200000;
1720
- readonly modalities: {
1721
- readonly input: ["text"];
1722
- readonly output: ["text"];
1723
- };
1724
- readonly tools: {
1725
- readonly supported: true;
1726
- };
1727
- readonly reasoning: {
1728
- readonly supported: true;
1729
- readonly preserveAcrossToolTurns: true;
1730
- };
1731
- readonly policy: {
1732
- readonly maxTurns: 50;
1733
- };
1734
- };
1735
- readonly "glm/glm-4-plus": {
1736
- readonly id: "glm/glm-4-plus";
1737
- readonly providerId: "glm";
1738
- readonly defaultEndpointId: "glm.anthropic";
1739
- readonly contextWindow: 128000;
1740
- readonly modalities: {
1741
- readonly input: ["text", "image"];
1742
- readonly output: ["text"];
1743
- };
1744
- readonly tools: {
1745
- readonly supported: true;
1746
- };
1747
- readonly reasoning: {
1748
- readonly supported: false;
1749
- readonly preserveAcrossToolTurns: false;
1750
- };
1751
- readonly policy: {
1752
- readonly maxTurns: 35;
1753
- };
1754
- };
1755
- readonly "glm/glm-4-flash": {
1756
- readonly id: "glm/glm-4-flash";
1757
- readonly providerId: "glm";
1758
- readonly defaultEndpointId: "glm.anthropic";
1759
- readonly contextWindow: 128000;
1760
- readonly modalities: {
1761
- readonly input: ["text"];
1762
- readonly output: ["text"];
1763
- };
1764
- readonly tools: {
1765
- readonly supported: true;
1766
- };
1767
- readonly reasoning: {
1768
- readonly supported: false;
1769
- readonly preserveAcrossToolTurns: false;
1770
- };
1771
- readonly policy: {
1772
- readonly maxTurns: 15;
1773
- };
1774
- };
1775
- readonly "glm/glm-4-air": {
1776
- readonly id: "glm/glm-4-air";
1777
- readonly providerId: "glm";
1778
- readonly defaultEndpointId: "glm.anthropic";
1779
- readonly contextWindow: 128000;
1780
- readonly modalities: {
1781
- readonly input: ["text"];
1782
- readonly output: ["text"];
1783
- };
1784
- readonly tools: {
1785
- readonly supported: true;
1786
- };
1787
- readonly reasoning: {
1788
- readonly supported: false;
1789
- readonly preserveAcrossToolTurns: false;
1790
- };
1791
- readonly policy: {
1792
- readonly maxTurns: 20;
1793
- };
1794
- };
1795
- readonly "glm/embedding-3": {
1796
- readonly id: "glm/embedding-3";
1797
- readonly providerId: "glm";
1798
- readonly defaultEndpointId: "glm.openai.embeddings";
1799
- readonly contextWindow: 8000;
1800
- readonly modalities: {
1801
- readonly input: ["text"];
1802
- readonly output: ["embedding"];
1803
- };
1804
- readonly tools: {
1805
- readonly supported: false;
1806
- };
1807
- readonly reasoning: {
1808
- readonly supported: false;
1809
- readonly preserveAcrossToolTurns: false;
1810
- };
1811
- };
1812
- readonly "glm/embedding-2": {
1813
- readonly id: "glm/embedding-2";
1814
- readonly providerId: "glm";
1815
- readonly defaultEndpointId: "glm.openai.embeddings";
1816
- readonly contextWindow: 8000;
1817
- readonly modalities: {
1818
- readonly input: ["text"];
1819
- readonly output: ["embedding"];
1820
- };
1821
- readonly tools: {
1822
- readonly supported: false;
1823
- };
1824
- readonly reasoning: {
1825
- readonly supported: false;
1826
- readonly preserveAcrossToolTurns: false;
1827
- };
1828
- };
1829
- readonly "baai/bge-m3": {
1830
- readonly id: "baai/bge-m3";
1831
- readonly providerId: "baai";
1832
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1833
- readonly contextWindow: 8192;
1834
- readonly modalities: {
1835
- readonly input: ["text"];
1836
- readonly output: ["embedding"];
1837
- };
1838
- readonly tools: {
1839
- readonly supported: false;
1840
- };
1841
- readonly reasoning: {
1842
- readonly supported: false;
1843
- readonly preserveAcrossToolTurns: false;
1844
- };
1845
- };
1846
- readonly "baai/bge-large-en-v1.5": {
1847
- readonly id: "baai/bge-large-en-v1.5";
1848
- readonly providerId: "baai";
1849
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1850
- readonly modalities: {
1851
- readonly input: ["text"];
1852
- readonly output: ["embedding"];
1853
- };
1854
- readonly tools: {
1855
- readonly supported: false;
1856
- };
1857
- readonly reasoning: {
1858
- readonly supported: false;
1859
- readonly preserveAcrossToolTurns: false;
1860
- };
1861
- };
1862
- readonly "baai/bge-base-en-v1.5": {
1863
- readonly id: "baai/bge-base-en-v1.5";
1864
- readonly providerId: "baai";
1865
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1866
- readonly modalities: {
1867
- readonly input: ["text"];
1868
- readonly output: ["embedding"];
1869
- };
1870
- readonly tools: {
1871
- readonly supported: false;
1872
- };
1873
- readonly reasoning: {
1874
- readonly supported: false;
1875
- readonly preserveAcrossToolTurns: false;
1876
- };
1877
- };
1878
- readonly "baai/bge-small-en-v1.5": {
1879
- readonly id: "baai/bge-small-en-v1.5";
1880
- readonly providerId: "baai";
1881
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1882
- readonly modalities: {
1883
- readonly input: ["text"];
1884
- readonly output: ["embedding"];
1885
- };
1886
- readonly tools: {
1887
- readonly supported: false;
1888
- };
1889
- readonly reasoning: {
1890
- readonly supported: false;
1891
- readonly preserveAcrossToolTurns: false;
1892
- };
1893
- };
1894
- readonly "baai/bge-large-zh-v1.5": {
1895
- readonly id: "baai/bge-large-zh-v1.5";
1896
- readonly providerId: "baai";
1897
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1898
- readonly modalities: {
1899
- readonly input: ["text"];
1900
- readonly output: ["embedding"];
1901
- };
1902
- readonly tools: {
1903
- readonly supported: false;
1904
- };
1905
- readonly reasoning: {
1906
- readonly supported: false;
1907
- readonly preserveAcrossToolTurns: false;
1908
- };
1909
- };
1910
- readonly "baai/bge-base-zh-v1.5": {
1911
- readonly id: "baai/bge-base-zh-v1.5";
1912
- readonly providerId: "baai";
1913
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1914
- readonly modalities: {
1915
- readonly input: ["text"];
1916
- readonly output: ["embedding"];
1917
- };
1918
- readonly tools: {
1919
- readonly supported: false;
1920
- };
1921
- readonly reasoning: {
1922
- readonly supported: false;
1923
- readonly preserveAcrossToolTurns: false;
1924
- };
1925
- };
1926
- readonly "baai/bge-small-zh-v1.5": {
1927
- readonly id: "baai/bge-small-zh-v1.5";
1928
- readonly providerId: "baai";
1929
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1930
- readonly modalities: {
1931
- readonly input: ["text"];
1932
- readonly output: ["embedding"];
1933
- };
1934
- readonly tools: {
1935
- readonly supported: false;
1936
- };
1937
- readonly reasoning: {
1938
- readonly supported: false;
1939
- readonly preserveAcrossToolTurns: false;
1940
- };
1941
- };
1942
- readonly "baai/bge-code-v1": {
1943
- readonly id: "baai/bge-code-v1";
1944
- readonly providerId: "baai";
1945
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1946
- readonly modalities: {
1947
- readonly input: ["text"];
1948
- readonly output: ["embedding"];
1949
- };
1950
- readonly tools: {
1951
- readonly supported: false;
1952
- };
1953
- readonly reasoning: {
1954
- readonly supported: false;
1955
- readonly preserveAcrossToolTurns: false;
1956
- };
1957
- };
1958
- readonly "baai/bge-vl-v1.5-zs": {
1959
- readonly id: "baai/bge-vl-v1.5-zs";
1960
- readonly providerId: "baai";
1961
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1962
- readonly modalities: {
1963
- readonly input: ["text", "image"];
1964
- readonly output: ["embedding"];
1965
- };
1966
- readonly tools: {
1967
- readonly supported: false;
1968
- };
1969
- readonly reasoning: {
1970
- readonly supported: false;
1971
- readonly preserveAcrossToolTurns: false;
1972
- };
1973
- };
1974
- readonly "baai/bge-vl-v1.5-mmeb": {
1975
- readonly id: "baai/bge-vl-v1.5-mmeb";
1976
- readonly providerId: "baai";
1977
- readonly defaultEndpointId: "baai.self-hosted.embeddings";
1978
- readonly modalities: {
1979
- readonly input: ["text", "image"];
1980
- readonly output: ["embedding"];
1981
- };
1982
- readonly tools: {
1983
- readonly supported: false;
1984
- };
1985
- readonly reasoning: {
1986
- readonly supported: false;
1987
- readonly preserveAcrossToolTurns: false;
1988
- };
1989
- };
1990
- };
1991
- export type ModelProfileId = keyof typeof modelProfiles;
1992
- export declare function getModelProfile(id: ModelProfileId): ModelProfile;