@hebo-ai/gateway 0.10.7 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/README.md +97 -84
  2. package/dist/config.js +21 -4
  3. package/dist/endpoints/chat-completions/handler.js +9 -5
  4. package/dist/endpoints/conversations/handler.js +3 -3
  5. package/dist/endpoints/embeddings/handler.js +2 -2
  6. package/dist/endpoints/messages/converters.js +17 -21
  7. package/dist/endpoints/messages/handler.js +5 -5
  8. package/dist/endpoints/responses/handler.js +9 -5
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.js +1 -0
  11. package/dist/models/alibaba/index.d.ts +2 -0
  12. package/dist/models/alibaba/index.js +2 -0
  13. package/dist/models/alibaba/middleware.d.ts +2 -0
  14. package/dist/models/alibaba/middleware.js +31 -0
  15. package/dist/models/alibaba/presets.d.ts +900 -0
  16. package/dist/models/alibaba/presets.js +252 -0
  17. package/dist/models/amazon/presets.d.ts +31 -31
  18. package/dist/models/anthropic/presets.d.ts +68 -68
  19. package/dist/models/cohere/presets.d.ts +38 -38
  20. package/dist/models/deepseek/index.d.ts +2 -0
  21. package/dist/models/deepseek/index.js +2 -0
  22. package/dist/models/deepseek/middleware.d.ts +2 -0
  23. package/dist/models/deepseek/middleware.js +25 -0
  24. package/dist/models/deepseek/presets.d.ts +51 -0
  25. package/dist/models/deepseek/presets.js +33 -0
  26. package/dist/models/google/presets.d.ts +94 -94
  27. package/dist/models/google/presets.js +3 -1
  28. package/dist/models/meta/presets.d.ts +84 -84
  29. package/dist/models/meta/presets.js +11 -12
  30. package/dist/models/minimax/index.d.ts +2 -0
  31. package/dist/models/minimax/index.js +2 -0
  32. package/dist/models/minimax/middleware.d.ts +2 -0
  33. package/dist/models/minimax/middleware.js +43 -0
  34. package/dist/models/minimax/presets.d.ts +99 -0
  35. package/dist/models/minimax/presets.js +47 -0
  36. package/dist/models/moonshot/index.d.ts +2 -0
  37. package/dist/models/moonshot/index.js +2 -0
  38. package/dist/models/moonshot/middleware.d.ts +2 -0
  39. package/dist/models/moonshot/middleware.js +32 -0
  40. package/dist/models/moonshot/presets.d.ts +104 -0
  41. package/dist/models/moonshot/presets.js +36 -0
  42. package/dist/models/openai/presets.d.ts +128 -128
  43. package/dist/models/openai/presets.js +1 -1
  44. package/dist/models/types.d.ts +1 -1
  45. package/dist/models/types.js +39 -0
  46. package/dist/models/voyage/presets.d.ts +46 -46
  47. package/dist/models/xai/index.d.ts +2 -0
  48. package/dist/models/xai/index.js +2 -0
  49. package/dist/models/xai/middleware.d.ts +2 -0
  50. package/dist/models/xai/middleware.js +37 -0
  51. package/dist/models/xai/presets.d.ts +210 -0
  52. package/dist/models/xai/presets.js +55 -0
  53. package/dist/models/zai/index.d.ts +2 -0
  54. package/dist/models/zai/index.js +2 -0
  55. package/dist/models/zai/middleware.d.ts +2 -0
  56. package/dist/models/zai/middleware.js +25 -0
  57. package/dist/models/zai/presets.d.ts +141 -0
  58. package/dist/models/zai/presets.js +41 -0
  59. package/dist/providers/alibaba/canonical.d.ts +3 -0
  60. package/dist/providers/alibaba/canonical.js +13 -0
  61. package/dist/providers/alibaba/index.d.ts +1 -0
  62. package/dist/providers/alibaba/index.js +1 -0
  63. package/dist/providers/bedrock/canonical.js +3 -0
  64. package/dist/providers/chutes/canonical.d.ts +3 -0
  65. package/dist/providers/chutes/canonical.js +14 -0
  66. package/dist/providers/chutes/index.d.ts +1 -0
  67. package/dist/providers/chutes/index.js +1 -0
  68. package/dist/providers/deepinfra/canonical.d.ts +3 -0
  69. package/dist/providers/deepinfra/canonical.js +40 -0
  70. package/dist/providers/deepinfra/index.d.ts +1 -0
  71. package/dist/providers/deepinfra/index.js +1 -0
  72. package/dist/providers/deepseek/canonical.d.ts +3 -0
  73. package/dist/providers/deepseek/canonical.js +9 -0
  74. package/dist/providers/deepseek/index.d.ts +1 -0
  75. package/dist/providers/deepseek/index.js +1 -0
  76. package/dist/providers/fireworks/canonical.d.ts +3 -0
  77. package/dist/providers/fireworks/canonical.js +27 -0
  78. package/dist/providers/fireworks/index.d.ts +2 -0
  79. package/dist/providers/fireworks/index.js +2 -0
  80. package/dist/providers/fireworks/middleware.d.ts +2 -0
  81. package/dist/providers/fireworks/middleware.js +35 -0
  82. package/dist/providers/groq/canonical.js +1 -1
  83. package/dist/providers/minimax/canonical.d.ts +3 -0
  84. package/dist/providers/minimax/canonical.js +9 -0
  85. package/dist/providers/minimax/index.d.ts +1 -0
  86. package/dist/providers/minimax/index.js +1 -0
  87. package/dist/providers/moonshot/canonical.d.ts +3 -0
  88. package/dist/providers/moonshot/canonical.js +6 -0
  89. package/dist/providers/moonshot/index.d.ts +1 -0
  90. package/dist/providers/moonshot/index.js +1 -0
  91. package/dist/providers/togetherai/canonical.d.ts +3 -0
  92. package/dist/providers/togetherai/canonical.js +24 -0
  93. package/dist/providers/togetherai/index.d.ts +1 -0
  94. package/dist/providers/togetherai/index.js +1 -0
  95. package/dist/providers/types.d.ts +1 -1
  96. package/dist/providers/types.js +10 -0
  97. package/dist/providers/vertex/canonical.js +5 -1
  98. package/dist/providers/xai/canonical.d.ts +3 -0
  99. package/dist/providers/xai/canonical.js +12 -0
  100. package/dist/providers/xai/index.d.ts +1 -0
  101. package/dist/providers/xai/index.js +1 -0
  102. package/dist/providers/zai/canonical.d.ts +3 -0
  103. package/dist/providers/zai/canonical.js +10 -0
  104. package/dist/providers/zai/index.d.ts +1 -0
  105. package/dist/providers/zai/index.js +1 -0
  106. package/dist/types.d.ts +30 -16
  107. package/dist/utils/index.d.ts +8 -0
  108. package/dist/utils/index.js +8 -0
  109. package/dist/utils/request.d.ts +2 -1
  110. package/dist/utils/request.js +35 -7
  111. package/package.json +133 -9
@@ -0,0 +1,252 @@
1
+ import { presetFor } from "../../utils/preset";
2
+ const QWEN3_BASE = {
3
+ modalities: {
4
+ input: ["text", "file"],
5
+ output: ["text"],
6
+ },
7
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
8
+ context: 131072,
9
+ providers: ["alibaba", "azure", "bedrock", "vertex", "deepinfra", "togetherai", "fireworks"],
10
+ };
11
+ const QWEN3_VL_BASE = {
12
+ modalities: {
13
+ input: ["text", "image", "video", "file"],
14
+ output: ["text"],
15
+ },
16
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
17
+ context: 262144,
18
+ providers: [
19
+ "alibaba",
20
+ "azure",
21
+ "bedrock",
22
+ ],
23
+ };
24
+ export const qwen3_235b = presetFor()("alibaba/qwen3-235b", {
25
+ ...QWEN3_BASE,
26
+ name: "Qwen3 235B",
27
+ created: "2025-04-29",
28
+ knowledge: "2025-04",
29
+ });
30
+ export const qwen3_32b = presetFor()("alibaba/qwen3-32b", {
31
+ ...QWEN3_BASE,
32
+ name: "Qwen3 32B",
33
+ providers: ["alibaba", "azure", "groq", "bedrock", "vertex", "chutes", "deepinfra", "togetherai", "fireworks"],
34
+ created: "2025-04-29",
35
+ knowledge: "2025-04",
36
+ });
37
+ export const qwen35Plus = presetFor()("alibaba/qwen3.5-plus", {
38
+ modalities: {
39
+ input: ["text", "image", "video", "file"],
40
+ output: ["text"],
41
+ },
42
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
43
+ providers: ["alibaba"],
44
+ name: "Qwen3.5 Plus",
45
+ context: 1048576,
46
+ created: "2026-02-16",
47
+ knowledge: "2025-04",
48
+ });
49
+ export const qwen35Flash = presetFor()("alibaba/qwen3.5-flash", {
50
+ modalities: {
51
+ input: ["text", "image", "video", "file"],
52
+ output: ["text"],
53
+ },
54
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
55
+ providers: ["alibaba"],
56
+ name: "Qwen3.5 Flash",
57
+ context: 1048576,
58
+ created: "2026-02-16",
59
+ knowledge: "2025-04",
60
+ });
61
+ export const qwen35_397b = presetFor()("alibaba/qwen3.5-397b", {
62
+ modalities: {
63
+ input: ["text", "image", "video", "file"],
64
+ output: ["text"],
65
+ },
66
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
67
+ providers: ["alibaba", "chutes", "deepinfra", "togetherai", "fireworks"],
68
+ name: "Qwen3.5 397B",
69
+ context: 262144,
70
+ created: "2026-02-16",
71
+ knowledge: "2025-04",
72
+ });
73
+ export const qwen35_122b = presetFor()("alibaba/qwen3.5-122b", {
74
+ modalities: {
75
+ input: ["text", "image", "video", "file"],
76
+ output: ["text"],
77
+ },
78
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
79
+ providers: ["alibaba", "azure", "deepinfra"],
80
+ name: "Qwen3.5 122B",
81
+ context: 262144,
82
+ created: "2026-02-16",
83
+ knowledge: "2025-04",
84
+ });
85
+ export const qwen35_35b = presetFor()("alibaba/qwen3.5-35b", {
86
+ modalities: {
87
+ input: ["text", "image", "video", "file"],
88
+ output: ["text"],
89
+ },
90
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
91
+ providers: ["alibaba", "azure", "deepinfra", "fireworks"],
92
+ name: "Qwen3.5 35B",
93
+ context: 262144,
94
+ created: "2026-02-16",
95
+ knowledge: "2025-04",
96
+ });
97
+ export const qwen35_27b = presetFor()("alibaba/qwen3.5-27b", {
98
+ modalities: {
99
+ input: ["text", "image", "video", "file"],
100
+ output: ["text"],
101
+ },
102
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
103
+ providers: ["alibaba", "azure", "deepinfra", "fireworks"],
104
+ name: "Qwen3.5 27B",
105
+ context: 262144,
106
+ created: "2026-02-16",
107
+ knowledge: "2025-04",
108
+ });
109
+ export const qwen35_9b = presetFor()("alibaba/qwen3.5-9b", {
110
+ modalities: {
111
+ input: ["text", "image", "video", "file"],
112
+ output: ["text"],
113
+ },
114
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
115
+ providers: ["alibaba", "azure", "deepinfra", "togetherai", "fireworks"],
116
+ name: "Qwen3.5 9B",
117
+ context: 262144,
118
+ created: "2026-02-16",
119
+ knowledge: "2025-04",
120
+ });
121
+ export const qwen35_4b = presetFor()("alibaba/qwen3.5-4b", {
122
+ modalities: {
123
+ input: ["text", "image", "video", "file"],
124
+ output: ["text"],
125
+ },
126
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
127
+ providers: ["alibaba", "azure", "deepinfra"],
128
+ name: "Qwen3.5 4B",
129
+ context: 262144,
130
+ created: "2026-02-16",
131
+ knowledge: "2025-04",
132
+ });
133
+ export const qwen35_2b = presetFor()("alibaba/qwen3.5-2b", {
134
+ modalities: {
135
+ input: ["text", "image", "video", "file"],
136
+ output: ["text"],
137
+ },
138
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
139
+ providers: ["alibaba", "azure", "deepinfra"],
140
+ name: "Qwen3.5 2B",
141
+ context: 262144,
142
+ created: "2026-02-16",
143
+ knowledge: "2025-04",
144
+ });
145
+ export const qwen35_08b = presetFor()("alibaba/qwen3.5-0.8b", {
146
+ modalities: {
147
+ input: ["text", "image", "video", "file"],
148
+ output: ["text"],
149
+ },
150
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
151
+ providers: ["alibaba", "azure", "deepinfra"],
152
+ name: "Qwen3.5 0.8B",
153
+ context: 262144,
154
+ created: "2026-02-16",
155
+ knowledge: "2025-04",
156
+ });
157
+ export const qwen36Plus = presetFor()("alibaba/qwen3.6-plus", {
158
+ modalities: {
159
+ input: ["text", "image", "video", "file"],
160
+ output: ["text"],
161
+ },
162
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
163
+ providers: ["alibaba"],
164
+ name: "Qwen3.6 Plus",
165
+ context: 1048576,
166
+ created: "2026-04-02",
167
+ knowledge: "2025-04",
168
+ });
169
+ export const qwen36Flash = presetFor()("alibaba/qwen3.6-flash", {
170
+ modalities: {
171
+ input: ["text", "image", "video", "file"],
172
+ output: ["text"],
173
+ },
174
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
175
+ providers: ["alibaba", "azure", "deepinfra"],
176
+ name: "Qwen3.6 Flash",
177
+ context: 262144,
178
+ created: "2026-04-02",
179
+ knowledge: "2025-04",
180
+ });
181
+ export const qwen36MaxPreview = presetFor()("alibaba/qwen3.6-max-preview", {
182
+ modalities: {
183
+ input: ["text", "image", "video", "file"],
184
+ output: ["text"],
185
+ },
186
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
187
+ providers: ["alibaba"],
188
+ name: "Qwen3.6 Max Preview",
189
+ context: 1048576,
190
+ created: "2026-04-21",
191
+ knowledge: "2025-04",
192
+ });
193
+ export const qwen3CoderNext = presetFor()("alibaba/qwen3-coder-next", {
194
+ modalities: {
195
+ input: ["text", "file"],
196
+ output: ["text"],
197
+ },
198
+ capabilities: ["attachments", "reasoning", "tool_call", "structured_output", "temperature"],
199
+ providers: ["alibaba", "azure"],
200
+ name: "Qwen3 Coder Next",
201
+ context: 131072,
202
+ created: "2026-03-15",
203
+ knowledge: "2025-04",
204
+ });
205
+ export const qwen3Vl235b = presetFor()("alibaba/qwen3-vl-235b", {
206
+ ...QWEN3_VL_BASE,
207
+ name: "Qwen3 VL 235B",
208
+ created: "2025-09-23",
209
+ knowledge: "2025-04",
210
+ });
211
+ const QWEN3_EMBEDDING_BASE = {
212
+ modalities: {
213
+ input: ["text"],
214
+ output: ["embedding"],
215
+ },
216
+ context: 32768,
217
+ providers: ["alibaba", "azure", "deepinfra"],
218
+ };
219
+ export const qwen3Embedding06b = presetFor()("alibaba/qwen3-embedding-0.6b", {
220
+ ...QWEN3_EMBEDDING_BASE,
221
+ name: "Qwen3 Embedding 0.6B",
222
+ created: "2025-06-05",
223
+ });
224
+ export const qwen3Embedding4b = presetFor()("alibaba/qwen3-embedding-4b", {
225
+ ...QWEN3_EMBEDDING_BASE,
226
+ providers: ["alibaba", "deepinfra"],
227
+ name: "Qwen3 Embedding 4B",
228
+ created: "2025-06-05",
229
+ });
230
+ export const qwen3Embedding8b = presetFor()("alibaba/qwen3-embedding-8b", {
231
+ ...QWEN3_EMBEDDING_BASE,
232
+ name: "Qwen3 Embedding 8B",
233
+ created: "2025-06-05",
234
+ });
235
+ const qwenAtomic = {
236
+ v3: [qwen3_235b, qwen3_32b],
237
+ "v3.5": [qwen35Plus, qwen35Flash, qwen35_397b, qwen35_122b, qwen35_35b, qwen35_27b, qwen35_9b, qwen35_4b, qwen35_2b, qwen35_08b],
238
+ "v3.6": [qwen36Plus, qwen36Flash, qwen36MaxPreview],
239
+ coder: [qwen3CoderNext],
240
+ vl: [qwen3Vl235b],
241
+ embedding: [qwen3Embedding06b, qwen3Embedding4b, qwen3Embedding8b],
242
+ };
243
+ const qwenGroups = {
244
+ "v3.x": [...qwenAtomic["v3"], ...qwenAtomic["v3.5"], ...qwenAtomic["v3.6"]],
245
+ embeddings: [...qwenAtomic["embedding"]],
246
+ };
247
+ export const qwen = {
248
+ ...qwenAtomic,
249
+ ...qwenGroups,
250
+ latest: [...qwenAtomic["v3.6"]],
251
+ all: Object.values(qwenAtomic).flat(),
252
+ };
@@ -1,5 +1,5 @@
1
1
  import type { CatalogModel } from "../types";
2
- export declare const novaMicro: import("../../utils/preset").Preset<"amazon/nova-micro", CatalogModel, {
2
+ export declare const novaMicro: import("../../utils").Preset<"amazon/nova-micro", CatalogModel, {
3
3
  name: string;
4
4
  created: string;
5
5
  knowledge: string;
@@ -11,7 +11,7 @@ export declare const novaMicro: import("../../utils/preset").Preset<"amazon/nova
11
11
  capabilities: readonly ["tool_call", "temperature"];
12
12
  providers: readonly ["bedrock"];
13
13
  }>;
14
- export declare const novaLite: import("../../utils/preset").Preset<"amazon/nova-lite", CatalogModel, {
14
+ export declare const novaLite: import("../../utils").Preset<"amazon/nova-lite", CatalogModel, {
15
15
  name: string;
16
16
  created: string;
17
17
  knowledge: string;
@@ -23,7 +23,7 @@ export declare const novaLite: import("../../utils/preset").Preset<"amazon/nova-
23
23
  capabilities: readonly ["attachments", "tool_call", "temperature"];
24
24
  providers: readonly ["bedrock"];
25
25
  }>;
26
- export declare const novaPro: import("../../utils/preset").Preset<"amazon/nova-pro", CatalogModel, {
26
+ export declare const novaPro: import("../../utils").Preset<"amazon/nova-pro", CatalogModel, {
27
27
  name: string;
28
28
  created: string;
29
29
  knowledge: string;
@@ -35,7 +35,7 @@ export declare const novaPro: import("../../utils/preset").Preset<"amazon/nova-p
35
35
  capabilities: readonly ["attachments", "tool_call", "temperature"];
36
36
  providers: readonly ["bedrock"];
37
37
  }>;
38
- export declare const novaPremier: import("../../utils/preset").Preset<"amazon/nova-premier", CatalogModel, {
38
+ export declare const novaPremier: import("../../utils").Preset<"amazon/nova-premier", CatalogModel, {
39
39
  name: string;
40
40
  created: string;
41
41
  knowledge: string;
@@ -47,7 +47,7 @@ export declare const novaPremier: import("../../utils/preset").Preset<"amazon/no
47
47
  capabilities: readonly ["attachments", "tool_call", "temperature"];
48
48
  providers: readonly ["bedrock"];
49
49
  }>;
50
- export declare const nova2Lite: import("../../utils/preset").Preset<"amazon/nova-2-lite", CatalogModel, {
50
+ export declare const nova2Lite: import("../../utils").Preset<"amazon/nova-2-lite", CatalogModel, {
51
51
  name: string;
52
52
  created: string;
53
53
  knowledge: string;
@@ -59,7 +59,7 @@ export declare const nova2Lite: import("../../utils/preset").Preset<"amazon/nova
59
59
  capabilities: readonly ["tool_call", "temperature"];
60
60
  providers: readonly ["bedrock"];
61
61
  }>;
62
- export declare const nova2MultimodalEmbeddings: import("../../utils/preset").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
62
+ export declare const nova2MultimodalEmbeddings: import("../../utils").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
63
63
  name: string;
64
64
  created: string;
65
65
  context: number;
@@ -70,7 +70,7 @@ export declare const nova2MultimodalEmbeddings: import("../../utils/preset").Pre
70
70
  providers: readonly ["bedrock"];
71
71
  }>;
72
72
  export declare const nova: {
73
- readonly latest: readonly [import("../../utils/preset").Preset<"amazon/nova-micro", CatalogModel, {
73
+ readonly latest: readonly [import("../../utils").Preset<"amazon/nova-micro", CatalogModel, {
74
74
  name: string;
75
75
  created: string;
76
76
  knowledge: string;
@@ -81,7 +81,7 @@ export declare const nova: {
81
81
  };
82
82
  capabilities: readonly ["tool_call", "temperature"];
83
83
  providers: readonly ["bedrock"];
84
- }>, import("../../utils/preset").Preset<"amazon/nova-lite", CatalogModel, {
84
+ }>, import("../../utils").Preset<"amazon/nova-lite", CatalogModel, {
85
85
  name: string;
86
86
  created: string;
87
87
  knowledge: string;
@@ -92,7 +92,7 @@ export declare const nova: {
92
92
  };
93
93
  capabilities: readonly ["attachments", "tool_call", "temperature"];
94
94
  providers: readonly ["bedrock"];
95
- }>, import("../../utils/preset").Preset<"amazon/nova-pro", CatalogModel, {
95
+ }>, import("../../utils").Preset<"amazon/nova-pro", CatalogModel, {
96
96
  name: string;
97
97
  created: string;
98
98
  knowledge: string;
@@ -103,7 +103,7 @@ export declare const nova: {
103
103
  };
104
104
  capabilities: readonly ["attachments", "tool_call", "temperature"];
105
105
  providers: readonly ["bedrock"];
106
- }>, import("../../utils/preset").Preset<"amazon/nova-premier", CatalogModel, {
106
+ }>, import("../../utils").Preset<"amazon/nova-premier", CatalogModel, {
107
107
  name: string;
108
108
  created: string;
109
109
  knowledge: string;
@@ -114,7 +114,7 @@ export declare const nova: {
114
114
  };
115
115
  capabilities: readonly ["attachments", "tool_call", "temperature"];
116
116
  providers: readonly ["bedrock"];
117
- }>, import("../../utils/preset").Preset<"amazon/nova-2-lite", CatalogModel, {
117
+ }>, import("../../utils").Preset<"amazon/nova-2-lite", CatalogModel, {
118
118
  name: string;
119
119
  created: string;
120
120
  knowledge: string;
@@ -125,7 +125,7 @@ export declare const nova: {
125
125
  };
126
126
  capabilities: readonly ["tool_call", "temperature"];
127
127
  providers: readonly ["bedrock"];
128
- }>, import("../../utils/preset").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
128
+ }>, import("../../utils").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
129
129
  name: string;
130
130
  created: string;
131
131
  context: number;
@@ -135,7 +135,7 @@ export declare const nova: {
135
135
  };
136
136
  providers: readonly ["bedrock"];
137
137
  }>];
138
- readonly embeddings: readonly [import("../../utils/preset").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
138
+ readonly embeddings: readonly [import("../../utils").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
139
139
  name: string;
140
140
  created: string;
141
141
  context: number;
@@ -145,7 +145,7 @@ export declare const nova: {
145
145
  };
146
146
  providers: readonly ["bedrock"];
147
147
  }>];
148
- readonly all: (import("../../utils/preset").Preset<"amazon/nova-micro", CatalogModel, {
148
+ readonly all: (import("../../utils").Preset<"amazon/nova-micro", CatalogModel, {
149
149
  name: string;
150
150
  created: string;
151
151
  knowledge: string;
@@ -156,7 +156,7 @@ export declare const nova: {
156
156
  };
157
157
  capabilities: readonly ["tool_call", "temperature"];
158
158
  providers: readonly ["bedrock"];
159
- }> | import("../../utils/preset").Preset<"amazon/nova-lite", CatalogModel, {
159
+ }> | import("../../utils").Preset<"amazon/nova-lite", CatalogModel, {
160
160
  name: string;
161
161
  created: string;
162
162
  knowledge: string;
@@ -167,7 +167,7 @@ export declare const nova: {
167
167
  };
168
168
  capabilities: readonly ["attachments", "tool_call", "temperature"];
169
169
  providers: readonly ["bedrock"];
170
- }> | import("../../utils/preset").Preset<"amazon/nova-pro", CatalogModel, {
170
+ }> | import("../../utils").Preset<"amazon/nova-pro", CatalogModel, {
171
171
  name: string;
172
172
  created: string;
173
173
  knowledge: string;
@@ -178,7 +178,7 @@ export declare const nova: {
178
178
  };
179
179
  capabilities: readonly ["attachments", "tool_call", "temperature"];
180
180
  providers: readonly ["bedrock"];
181
- }> | import("../../utils/preset").Preset<"amazon/nova-premier", CatalogModel, {
181
+ }> | import("../../utils").Preset<"amazon/nova-premier", CatalogModel, {
182
182
  name: string;
183
183
  created: string;
184
184
  knowledge: string;
@@ -189,7 +189,7 @@ export declare const nova: {
189
189
  };
190
190
  capabilities: readonly ["attachments", "tool_call", "temperature"];
191
191
  providers: readonly ["bedrock"];
192
- }> | import("../../utils/preset").Preset<"amazon/nova-2-lite", CatalogModel, {
192
+ }> | import("../../utils").Preset<"amazon/nova-2-lite", CatalogModel, {
193
193
  name: string;
194
194
  created: string;
195
195
  knowledge: string;
@@ -200,7 +200,7 @@ export declare const nova: {
200
200
  };
201
201
  capabilities: readonly ["tool_call", "temperature"];
202
202
  providers: readonly ["bedrock"];
203
- }> | import("../../utils/preset").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
203
+ }> | import("../../utils").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
204
204
  name: string;
205
205
  created: string;
206
206
  context: number;
@@ -210,7 +210,7 @@ export declare const nova: {
210
210
  };
211
211
  providers: readonly ["bedrock"];
212
212
  }>)[];
213
- readonly "v1.x": readonly [import("../../utils/preset").Preset<"amazon/nova-micro", CatalogModel, {
213
+ readonly "v1.x": readonly [import("../../utils").Preset<"amazon/nova-micro", CatalogModel, {
214
214
  name: string;
215
215
  created: string;
216
216
  knowledge: string;
@@ -221,7 +221,7 @@ export declare const nova: {
221
221
  };
222
222
  capabilities: readonly ["tool_call", "temperature"];
223
223
  providers: readonly ["bedrock"];
224
- }>, import("../../utils/preset").Preset<"amazon/nova-lite", CatalogModel, {
224
+ }>, import("../../utils").Preset<"amazon/nova-lite", CatalogModel, {
225
225
  name: string;
226
226
  created: string;
227
227
  knowledge: string;
@@ -232,7 +232,7 @@ export declare const nova: {
232
232
  };
233
233
  capabilities: readonly ["attachments", "tool_call", "temperature"];
234
234
  providers: readonly ["bedrock"];
235
- }>, import("../../utils/preset").Preset<"amazon/nova-pro", CatalogModel, {
235
+ }>, import("../../utils").Preset<"amazon/nova-pro", CatalogModel, {
236
236
  name: string;
237
237
  created: string;
238
238
  knowledge: string;
@@ -243,7 +243,7 @@ export declare const nova: {
243
243
  };
244
244
  capabilities: readonly ["attachments", "tool_call", "temperature"];
245
245
  providers: readonly ["bedrock"];
246
- }>, import("../../utils/preset").Preset<"amazon/nova-premier", CatalogModel, {
246
+ }>, import("../../utils").Preset<"amazon/nova-premier", CatalogModel, {
247
247
  name: string;
248
248
  created: string;
249
249
  knowledge: string;
@@ -255,7 +255,7 @@ export declare const nova: {
255
255
  capabilities: readonly ["attachments", "tool_call", "temperature"];
256
256
  providers: readonly ["bedrock"];
257
257
  }>];
258
- readonly "v2.x": readonly [import("../../utils/preset").Preset<"amazon/nova-2-lite", CatalogModel, {
258
+ readonly "v2.x": readonly [import("../../utils").Preset<"amazon/nova-2-lite", CatalogModel, {
259
259
  name: string;
260
260
  created: string;
261
261
  knowledge: string;
@@ -266,7 +266,7 @@ export declare const nova: {
266
266
  };
267
267
  capabilities: readonly ["tool_call", "temperature"];
268
268
  providers: readonly ["bedrock"];
269
- }>, import("../../utils/preset").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
269
+ }>, import("../../utils").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
270
270
  name: string;
271
271
  created: string;
272
272
  context: number;
@@ -276,7 +276,7 @@ export declare const nova: {
276
276
  };
277
277
  providers: readonly ["bedrock"];
278
278
  }>];
279
- readonly v1: readonly [import("../../utils/preset").Preset<"amazon/nova-micro", CatalogModel, {
279
+ readonly v1: readonly [import("../../utils").Preset<"amazon/nova-micro", CatalogModel, {
280
280
  name: string;
281
281
  created: string;
282
282
  knowledge: string;
@@ -287,7 +287,7 @@ export declare const nova: {
287
287
  };
288
288
  capabilities: readonly ["tool_call", "temperature"];
289
289
  providers: readonly ["bedrock"];
290
- }>, import("../../utils/preset").Preset<"amazon/nova-lite", CatalogModel, {
290
+ }>, import("../../utils").Preset<"amazon/nova-lite", CatalogModel, {
291
291
  name: string;
292
292
  created: string;
293
293
  knowledge: string;
@@ -298,7 +298,7 @@ export declare const nova: {
298
298
  };
299
299
  capabilities: readonly ["attachments", "tool_call", "temperature"];
300
300
  providers: readonly ["bedrock"];
301
- }>, import("../../utils/preset").Preset<"amazon/nova-pro", CatalogModel, {
301
+ }>, import("../../utils").Preset<"amazon/nova-pro", CatalogModel, {
302
302
  name: string;
303
303
  created: string;
304
304
  knowledge: string;
@@ -309,7 +309,7 @@ export declare const nova: {
309
309
  };
310
310
  capabilities: readonly ["attachments", "tool_call", "temperature"];
311
311
  providers: readonly ["bedrock"];
312
- }>, import("../../utils/preset").Preset<"amazon/nova-premier", CatalogModel, {
312
+ }>, import("../../utils").Preset<"amazon/nova-premier", CatalogModel, {
313
313
  name: string;
314
314
  created: string;
315
315
  knowledge: string;
@@ -321,7 +321,7 @@ export declare const nova: {
321
321
  capabilities: readonly ["attachments", "tool_call", "temperature"];
322
322
  providers: readonly ["bedrock"];
323
323
  }>];
324
- readonly v2: readonly [import("../../utils/preset").Preset<"amazon/nova-2-lite", CatalogModel, {
324
+ readonly v2: readonly [import("../../utils").Preset<"amazon/nova-2-lite", CatalogModel, {
325
325
  name: string;
326
326
  created: string;
327
327
  knowledge: string;
@@ -332,7 +332,7 @@ export declare const nova: {
332
332
  };
333
333
  capabilities: readonly ["tool_call", "temperature"];
334
334
  providers: readonly ["bedrock"];
335
- }>, import("../../utils/preset").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
335
+ }>, import("../../utils").Preset<"amazon/nova-2-multimodal-embeddings", CatalogModel, {
336
336
  name: string;
337
337
  created: string;
338
338
  context: number;