@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
@@ -1,5 +1,5 @@
1
1
  import type { CatalogModel } from "../types";
2
- export declare const claudeHaiku45: import("../../utils/preset").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
2
+ export declare const claudeHaiku45: import("../../utils").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
3
3
  name: string;
4
4
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
5
5
  created: string;
@@ -11,7 +11,7 @@ export declare const claudeHaiku45: import("../../utils/preset").Preset<"anthrop
11
11
  context: number;
12
12
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
13
13
  }>;
14
- export declare const claudeHaiku35: import("../../utils/preset").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
14
+ export declare const claudeHaiku35: import("../../utils").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
15
15
  name: string;
16
16
  created: string;
17
17
  knowledge: string;
@@ -23,7 +23,7 @@ export declare const claudeHaiku35: import("../../utils/preset").Preset<"anthrop
23
23
  context: number;
24
24
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
25
25
  }>;
26
- export declare const claudeHaiku3: import("../../utils/preset").Preset<"anthropic/claude-haiku-3", CatalogModel, {
26
+ export declare const claudeHaiku3: import("../../utils").Preset<"anthropic/claude-haiku-3", CatalogModel, {
27
27
  name: string;
28
28
  created: string;
29
29
  knowledge: string;
@@ -35,7 +35,7 @@ export declare const claudeHaiku3: import("../../utils/preset").Preset<"anthropi
35
35
  context: number;
36
36
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
37
37
  }>;
38
- export declare const claudeSonnet45: import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
38
+ export declare const claudeSonnet45: import("../../utils").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
39
39
  name: string;
40
40
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
41
41
  created: string;
@@ -47,7 +47,7 @@ export declare const claudeSonnet45: import("../../utils/preset").Preset<"anthro
47
47
  context: number;
48
48
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
49
49
  }>;
50
- export declare const claudeSonnet46: import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
50
+ export declare const claudeSonnet46: import("../../utils").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
51
51
  name: string;
52
52
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
53
53
  created: string;
@@ -59,7 +59,7 @@ export declare const claudeSonnet46: import("../../utils/preset").Preset<"anthro
59
59
  context: number;
60
60
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
61
61
  }>;
62
- export declare const claudeSonnet4: import("../../utils/preset").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
62
+ export declare const claudeSonnet4: import("../../utils").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
63
63
  name: string;
64
64
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
65
65
  created: string;
@@ -71,7 +71,7 @@ export declare const claudeSonnet4: import("../../utils/preset").Preset<"anthrop
71
71
  context: number;
72
72
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
73
73
  }>;
74
- export declare const claudeSonnet37: import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
74
+ export declare const claudeSonnet37: import("../../utils").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
75
75
  name: string;
76
76
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
77
77
  created: string;
@@ -83,7 +83,7 @@ export declare const claudeSonnet37: import("../../utils/preset").Preset<"anthro
83
83
  context: number;
84
84
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
85
85
  }>;
86
- export declare const claudeSonnet35: import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
86
+ export declare const claudeSonnet35: import("../../utils").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
87
87
  name: string;
88
88
  created: string;
89
89
  knowledge: string;
@@ -95,7 +95,7 @@ export declare const claudeSonnet35: import("../../utils/preset").Preset<"anthro
95
95
  context: number;
96
96
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
97
97
  }>;
98
- export declare const claudeOpus45: import("../../utils/preset").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
98
+ export declare const claudeOpus45: import("../../utils").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
99
99
  name: string;
100
100
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
101
101
  created: string;
@@ -107,7 +107,7 @@ export declare const claudeOpus45: import("../../utils/preset").Preset<"anthropi
107
107
  context: number;
108
108
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
109
109
  }>;
110
- export declare const claudeOpus47: import("../../utils/preset").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
110
+ export declare const claudeOpus47: import("../../utils").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
111
111
  name: string;
112
112
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
113
113
  context: number;
@@ -119,7 +119,7 @@ export declare const claudeOpus47: import("../../utils/preset").Preset<"anthropi
119
119
  };
120
120
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
121
121
  }>;
122
- export declare const claudeOpus46: import("../../utils/preset").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
122
+ export declare const claudeOpus46: import("../../utils").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
123
123
  name: string;
124
124
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
125
125
  created: string;
@@ -131,7 +131,7 @@ export declare const claudeOpus46: import("../../utils/preset").Preset<"anthropi
131
131
  context: number;
132
132
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
133
133
  }>;
134
- export declare const claudeOpus41: import("../../utils/preset").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
134
+ export declare const claudeOpus41: import("../../utils").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
135
135
  name: string;
136
136
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
137
137
  created: string;
@@ -143,7 +143,7 @@ export declare const claudeOpus41: import("../../utils/preset").Preset<"anthropi
143
143
  context: number;
144
144
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
145
145
  }>;
146
- export declare const claudeOpus4: import("../../utils/preset").Preset<"anthropic/claude-opus-4", CatalogModel, {
146
+ export declare const claudeOpus4: import("../../utils").Preset<"anthropic/claude-opus-4", CatalogModel, {
147
147
  name: string;
148
148
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
149
149
  created: string;
@@ -156,7 +156,7 @@ export declare const claudeOpus4: import("../../utils/preset").Preset<"anthropic
156
156
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
157
157
  }>;
158
158
  export declare const claude: {
159
- readonly latest: readonly [import("../../utils/preset").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
159
+ readonly latest: readonly [import("../../utils").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
160
160
  name: string;
161
161
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
162
162
  context: number;
@@ -167,7 +167,7 @@ export declare const claude: {
167
167
  output: readonly ["text"];
168
168
  };
169
169
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
170
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
170
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
171
171
  name: string;
172
172
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
173
173
  created: string;
@@ -178,7 +178,7 @@ export declare const claude: {
178
178
  };
179
179
  context: number;
180
180
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
181
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
181
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
182
182
  name: string;
183
183
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
184
184
  created: string;
@@ -190,7 +190,7 @@ export declare const claude: {
190
190
  context: number;
191
191
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
192
192
  }>];
193
- readonly all: (import("../../utils/preset").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
193
+ readonly all: (import("../../utils").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
194
194
  name: string;
195
195
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
196
196
  created: string;
@@ -201,7 +201,7 @@ export declare const claude: {
201
201
  };
202
202
  context: number;
203
203
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
204
- }> | import("../../utils/preset").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
204
+ }> | import("../../utils").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
205
205
  name: string;
206
206
  created: string;
207
207
  knowledge: string;
@@ -212,7 +212,7 @@ export declare const claude: {
212
212
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
213
213
  context: number;
214
214
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
215
- }> | import("../../utils/preset").Preset<"anthropic/claude-haiku-3", CatalogModel, {
215
+ }> | import("../../utils").Preset<"anthropic/claude-haiku-3", CatalogModel, {
216
216
  name: string;
217
217
  created: string;
218
218
  knowledge: string;
@@ -223,7 +223,7 @@ export declare const claude: {
223
223
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
224
224
  context: number;
225
225
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
226
- }> | import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
226
+ }> | import("../../utils").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
227
227
  name: string;
228
228
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
229
229
  created: string;
@@ -234,7 +234,7 @@ export declare const claude: {
234
234
  };
235
235
  context: number;
236
236
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
237
- }> | import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
237
+ }> | import("../../utils").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
238
238
  name: string;
239
239
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
240
240
  created: string;
@@ -245,7 +245,7 @@ export declare const claude: {
245
245
  };
246
246
  context: number;
247
247
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
248
- }> | import("../../utils/preset").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
248
+ }> | import("../../utils").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
249
249
  name: string;
250
250
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
251
251
  created: string;
@@ -256,7 +256,7 @@ export declare const claude: {
256
256
  };
257
257
  context: number;
258
258
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
259
- }> | import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
259
+ }> | import("../../utils").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
260
260
  name: string;
261
261
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
262
262
  created: string;
@@ -267,7 +267,7 @@ export declare const claude: {
267
267
  };
268
268
  context: number;
269
269
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
270
- }> | import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
270
+ }> | import("../../utils").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
271
271
  name: string;
272
272
  created: string;
273
273
  knowledge: string;
@@ -278,7 +278,7 @@ export declare const claude: {
278
278
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
279
279
  context: number;
280
280
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
281
- }> | import("../../utils/preset").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
281
+ }> | import("../../utils").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
282
282
  name: string;
283
283
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
284
284
  created: string;
@@ -289,7 +289,7 @@ export declare const claude: {
289
289
  };
290
290
  context: number;
291
291
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
292
- }> | import("../../utils/preset").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
292
+ }> | import("../../utils").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
293
293
  name: string;
294
294
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
295
295
  context: number;
@@ -300,7 +300,7 @@ export declare const claude: {
300
300
  output: readonly ["text"];
301
301
  };
302
302
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
303
- }> | import("../../utils/preset").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
303
+ }> | import("../../utils").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
304
304
  name: string;
305
305
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
306
306
  created: string;
@@ -311,7 +311,7 @@ export declare const claude: {
311
311
  };
312
312
  context: number;
313
313
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
314
- }> | import("../../utils/preset").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
314
+ }> | import("../../utils").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
315
315
  name: string;
316
316
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
317
317
  created: string;
@@ -322,7 +322,7 @@ export declare const claude: {
322
322
  };
323
323
  context: number;
324
324
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
325
- }> | import("../../utils/preset").Preset<"anthropic/claude-opus-4", CatalogModel, {
325
+ }> | import("../../utils").Preset<"anthropic/claude-opus-4", CatalogModel, {
326
326
  name: string;
327
327
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
328
328
  created: string;
@@ -334,7 +334,7 @@ export declare const claude: {
334
334
  context: number;
335
335
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
336
336
  }>)[];
337
- readonly "v4.x": readonly [import("../../utils/preset").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
337
+ readonly "v4.x": readonly [import("../../utils").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
338
338
  name: string;
339
339
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
340
340
  context: number;
@@ -345,7 +345,7 @@ export declare const claude: {
345
345
  output: readonly ["text"];
346
346
  };
347
347
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
348
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
348
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
349
349
  name: string;
350
350
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
351
351
  created: string;
@@ -356,7 +356,7 @@ export declare const claude: {
356
356
  };
357
357
  context: number;
358
358
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
359
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
359
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
360
360
  name: string;
361
361
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
362
362
  created: string;
@@ -367,7 +367,7 @@ export declare const claude: {
367
367
  };
368
368
  context: number;
369
369
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
370
- }>, import("../../utils/preset").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
370
+ }>, import("../../utils").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
371
371
  name: string;
372
372
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
373
373
  created: string;
@@ -378,7 +378,7 @@ export declare const claude: {
378
378
  };
379
379
  context: number;
380
380
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
381
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
381
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
382
382
  name: string;
383
383
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
384
384
  created: string;
@@ -389,7 +389,7 @@ export declare const claude: {
389
389
  };
390
390
  context: number;
391
391
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
392
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
392
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
393
393
  name: string;
394
394
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
395
395
  created: string;
@@ -400,7 +400,7 @@ export declare const claude: {
400
400
  };
401
401
  context: number;
402
402
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
403
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
403
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
404
404
  name: string;
405
405
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
406
406
  created: string;
@@ -411,7 +411,7 @@ export declare const claude: {
411
411
  };
412
412
  context: number;
413
413
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
414
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
414
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
415
415
  name: string;
416
416
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
417
417
  created: string;
@@ -422,7 +422,7 @@ export declare const claude: {
422
422
  };
423
423
  context: number;
424
424
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
425
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4", CatalogModel, {
425
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4", CatalogModel, {
426
426
  name: string;
427
427
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
428
428
  created: string;
@@ -434,7 +434,7 @@ export declare const claude: {
434
434
  context: number;
435
435
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
436
436
  }>];
437
- readonly "v3.x": readonly [import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
437
+ readonly "v3.x": readonly [import("../../utils").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
438
438
  name: string;
439
439
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
440
440
  created: string;
@@ -445,7 +445,7 @@ export declare const claude: {
445
445
  };
446
446
  context: number;
447
447
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
448
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
448
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
449
449
  name: string;
450
450
  created: string;
451
451
  knowledge: string;
@@ -456,7 +456,7 @@ export declare const claude: {
456
456
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
457
457
  context: number;
458
458
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
459
- }>, import("../../utils/preset").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
459
+ }>, import("../../utils").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
460
460
  name: string;
461
461
  created: string;
462
462
  knowledge: string;
@@ -467,7 +467,7 @@ export declare const claude: {
467
467
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
468
468
  context: number;
469
469
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
470
- }>, import("../../utils/preset").Preset<"anthropic/claude-haiku-3", CatalogModel, {
470
+ }>, import("../../utils").Preset<"anthropic/claude-haiku-3", CatalogModel, {
471
471
  name: string;
472
472
  created: string;
473
473
  knowledge: string;
@@ -479,7 +479,7 @@ export declare const claude: {
479
479
  context: number;
480
480
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
481
481
  }>];
482
- readonly "v4.7": readonly [import("../../utils/preset").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
482
+ readonly "v4.7": readonly [import("../../utils").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
483
483
  name: string;
484
484
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
485
485
  context: number;
@@ -491,7 +491,7 @@ export declare const claude: {
491
491
  };
492
492
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
493
493
  }>];
494
- readonly "v4.6": readonly [import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
494
+ readonly "v4.6": readonly [import("../../utils").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
495
495
  name: string;
496
496
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
497
497
  created: string;
@@ -502,7 +502,7 @@ export declare const claude: {
502
502
  };
503
503
  context: number;
504
504
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
505
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
505
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
506
506
  name: string;
507
507
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
508
508
  created: string;
@@ -514,7 +514,7 @@ export declare const claude: {
514
514
  context: number;
515
515
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
516
516
  }>];
517
- readonly "v4.5": readonly [import("../../utils/preset").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
517
+ readonly "v4.5": readonly [import("../../utils").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
518
518
  name: string;
519
519
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
520
520
  created: string;
@@ -525,7 +525,7 @@ export declare const claude: {
525
525
  };
526
526
  context: number;
527
527
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
528
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
528
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
529
529
  name: string;
530
530
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
531
531
  created: string;
@@ -536,7 +536,7 @@ export declare const claude: {
536
536
  };
537
537
  context: number;
538
538
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
539
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
539
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
540
540
  name: string;
541
541
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
542
542
  created: string;
@@ -548,7 +548,7 @@ export declare const claude: {
548
548
  context: number;
549
549
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
550
550
  }>];
551
- readonly "v4.1": readonly [import("../../utils/preset").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
551
+ readonly "v4.1": readonly [import("../../utils").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
552
552
  name: string;
553
553
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
554
554
  created: string;
@@ -560,7 +560,7 @@ export declare const claude: {
560
560
  context: number;
561
561
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
562
562
  }>];
563
- readonly v4: readonly [import("../../utils/preset").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
563
+ readonly v4: readonly [import("../../utils").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
564
564
  name: string;
565
565
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
566
566
  created: string;
@@ -571,7 +571,7 @@ export declare const claude: {
571
571
  };
572
572
  context: number;
573
573
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
574
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4", CatalogModel, {
574
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4", CatalogModel, {
575
575
  name: string;
576
576
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
577
577
  created: string;
@@ -583,7 +583,7 @@ export declare const claude: {
583
583
  context: number;
584
584
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
585
585
  }>];
586
- readonly "v3.7": readonly [import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
586
+ readonly "v3.7": readonly [import("../../utils").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
587
587
  name: string;
588
588
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
589
589
  created: string;
@@ -595,7 +595,7 @@ export declare const claude: {
595
595
  context: number;
596
596
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
597
597
  }>];
598
- readonly "v3.5": readonly [import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
598
+ readonly "v3.5": readonly [import("../../utils").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
599
599
  name: string;
600
600
  created: string;
601
601
  knowledge: string;
@@ -606,7 +606,7 @@ export declare const claude: {
606
606
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
607
607
  context: number;
608
608
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
609
- }>, import("../../utils/preset").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
609
+ }>, import("../../utils").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
610
610
  name: string;
611
611
  created: string;
612
612
  knowledge: string;
@@ -618,7 +618,7 @@ export declare const claude: {
618
618
  context: number;
619
619
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
620
620
  }>];
621
- readonly v3: readonly [import("../../utils/preset").Preset<"anthropic/claude-haiku-3", CatalogModel, {
621
+ readonly v3: readonly [import("../../utils").Preset<"anthropic/claude-haiku-3", CatalogModel, {
622
622
  name: string;
623
623
  created: string;
624
624
  knowledge: string;
@@ -630,7 +630,7 @@ export declare const claude: {
630
630
  context: number;
631
631
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
632
632
  }>];
633
- readonly haiku: readonly [import("../../utils/preset").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
633
+ readonly haiku: readonly [import("../../utils").Preset<"anthropic/claude-haiku-4.5", CatalogModel, {
634
634
  name: string;
635
635
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
636
636
  created: string;
@@ -641,7 +641,7 @@ export declare const claude: {
641
641
  };
642
642
  context: number;
643
643
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
644
- }>, import("../../utils/preset").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
644
+ }>, import("../../utils").Preset<"anthropic/claude-haiku-3.5", CatalogModel, {
645
645
  name: string;
646
646
  created: string;
647
647
  knowledge: string;
@@ -652,7 +652,7 @@ export declare const claude: {
652
652
  capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
653
653
  context: number;
654
654
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
655
- }>, import("../../utils/preset").Preset<"anthropic/claude-haiku-3", CatalogModel, {
655
+ }>, import("../../utils").Preset<"anthropic/claude-haiku-3", CatalogModel, {
656
656
  name: string;
657
657
  created: string;
658
658
  knowledge: string;
@@ -664,7 +664,7 @@ export declare const claude: {
664
664
  context: number;
665
665
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
666
666
  }>];
667
- readonly sonnet: readonly [import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
667
+ readonly sonnet: readonly [import("../../utils").Preset<"anthropic/claude-sonnet-4.6", CatalogModel, {
668
668
  name: string;
669
669
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
670
670
  created: string;
@@ -675,7 +675,7 @@ export declare const claude: {
675
675
  };
676
676
  context: number;
677
677
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
678
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
678
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4.5", CatalogModel, {
679
679
  name: string;
680
680
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
681
681
  created: string;
@@ -686,7 +686,7 @@ export declare const claude: {
686
686
  };
687
687
  context: number;
688
688
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
689
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
689
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-4", CatalogModel, {
690
690
  name: string;
691
691
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
692
692
  created: string;
@@ -697,7 +697,7 @@ export declare const claude: {
697
697
  };
698
698
  context: number;
699
699
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
700
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
700
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-3.7", CatalogModel, {
701
701
  name: string;
702
702
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
703
703
  created: string;
@@ -708,7 +708,7 @@ export declare const claude: {
708
708
  };
709
709
  context: number;
710
710
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
711
- }>, import("../../utils/preset").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
711
+ }>, import("../../utils").Preset<"anthropic/claude-sonnet-3.5", CatalogModel, {
712
712
  name: string;
713
713
  created: string;
714
714
  knowledge: string;
@@ -720,7 +720,7 @@ export declare const claude: {
720
720
  context: number;
721
721
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
722
722
  }>];
723
- readonly opus: readonly [import("../../utils/preset").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
723
+ readonly opus: readonly [import("../../utils").Preset<"anthropic/claude-opus-4.7", CatalogModel, {
724
724
  name: string;
725
725
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
726
726
  context: number;
@@ -731,7 +731,7 @@ export declare const claude: {
731
731
  output: readonly ["text"];
732
732
  };
733
733
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
734
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
734
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.6", CatalogModel, {
735
735
  name: string;
736
736
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
737
737
  created: string;
@@ -742,7 +742,7 @@ export declare const claude: {
742
742
  };
743
743
  context: number;
744
744
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
745
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
745
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.5", CatalogModel, {
746
746
  name: string;
747
747
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
748
748
  created: string;
@@ -753,7 +753,7 @@ export declare const claude: {
753
753
  };
754
754
  context: number;
755
755
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
756
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
756
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4.1", CatalogModel, {
757
757
  name: string;
758
758
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
759
759
  created: string;
@@ -764,7 +764,7 @@ export declare const claude: {
764
764
  };
765
765
  context: number;
766
766
  providers: readonly ["anthropic", "bedrock", "vertex", "azure"];
767
- }>, import("../../utils/preset").Preset<"anthropic/claude-opus-4", CatalogModel, {
767
+ }>, import("../../utils").Preset<"anthropic/claude-opus-4", CatalogModel, {
768
768
  name: string;
769
769
  capabilities: ("reasoning" | "temperature" | "attachments" | "tool_call" | "structured_output")[];
770
770
  created: string;