@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.
- package/README.md +97 -84
- package/dist/config.js +21 -4
- package/dist/endpoints/chat-completions/handler.js +9 -5
- package/dist/endpoints/conversations/handler.js +3 -3
- package/dist/endpoints/embeddings/handler.js +2 -2
- package/dist/endpoints/messages/converters.js +17 -21
- package/dist/endpoints/messages/handler.js +5 -5
- package/dist/endpoints/responses/handler.js +9 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/models/alibaba/index.d.ts +2 -0
- package/dist/models/alibaba/index.js +2 -0
- package/dist/models/alibaba/middleware.d.ts +2 -0
- package/dist/models/alibaba/middleware.js +31 -0
- package/dist/models/alibaba/presets.d.ts +900 -0
- package/dist/models/alibaba/presets.js +252 -0
- package/dist/models/amazon/presets.d.ts +31 -31
- package/dist/models/anthropic/presets.d.ts +68 -68
- package/dist/models/cohere/presets.d.ts +38 -38
- package/dist/models/deepseek/index.d.ts +2 -0
- package/dist/models/deepseek/index.js +2 -0
- package/dist/models/deepseek/middleware.d.ts +2 -0
- package/dist/models/deepseek/middleware.js +25 -0
- package/dist/models/deepseek/presets.d.ts +51 -0
- package/dist/models/deepseek/presets.js +33 -0
- package/dist/models/google/presets.d.ts +94 -94
- package/dist/models/google/presets.js +3 -1
- package/dist/models/meta/presets.d.ts +84 -84
- package/dist/models/meta/presets.js +11 -12
- package/dist/models/minimax/index.d.ts +2 -0
- package/dist/models/minimax/index.js +2 -0
- package/dist/models/minimax/middleware.d.ts +2 -0
- package/dist/models/minimax/middleware.js +43 -0
- package/dist/models/minimax/presets.d.ts +99 -0
- package/dist/models/minimax/presets.js +47 -0
- package/dist/models/moonshot/index.d.ts +2 -0
- package/dist/models/moonshot/index.js +2 -0
- package/dist/models/moonshot/middleware.d.ts +2 -0
- package/dist/models/moonshot/middleware.js +32 -0
- package/dist/models/moonshot/presets.d.ts +104 -0
- package/dist/models/moonshot/presets.js +36 -0
- package/dist/models/openai/presets.d.ts +128 -128
- package/dist/models/openai/presets.js +1 -1
- package/dist/models/types.d.ts +1 -1
- package/dist/models/types.js +39 -0
- package/dist/models/voyage/presets.d.ts +46 -46
- package/dist/models/xai/index.d.ts +2 -0
- package/dist/models/xai/index.js +2 -0
- package/dist/models/xai/middleware.d.ts +2 -0
- package/dist/models/xai/middleware.js +37 -0
- package/dist/models/xai/presets.d.ts +210 -0
- package/dist/models/xai/presets.js +55 -0
- package/dist/models/zai/index.d.ts +2 -0
- package/dist/models/zai/index.js +2 -0
- package/dist/models/zai/middleware.d.ts +2 -0
- package/dist/models/zai/middleware.js +25 -0
- package/dist/models/zai/presets.d.ts +141 -0
- package/dist/models/zai/presets.js +41 -0
- package/dist/providers/alibaba/canonical.d.ts +3 -0
- package/dist/providers/alibaba/canonical.js +13 -0
- package/dist/providers/alibaba/index.d.ts +1 -0
- package/dist/providers/alibaba/index.js +1 -0
- package/dist/providers/bedrock/canonical.js +3 -0
- package/dist/providers/chutes/canonical.d.ts +3 -0
- package/dist/providers/chutes/canonical.js +14 -0
- package/dist/providers/chutes/index.d.ts +1 -0
- package/dist/providers/chutes/index.js +1 -0
- package/dist/providers/deepinfra/canonical.d.ts +3 -0
- package/dist/providers/deepinfra/canonical.js +40 -0
- package/dist/providers/deepinfra/index.d.ts +1 -0
- package/dist/providers/deepinfra/index.js +1 -0
- package/dist/providers/deepseek/canonical.d.ts +3 -0
- package/dist/providers/deepseek/canonical.js +9 -0
- package/dist/providers/deepseek/index.d.ts +1 -0
- package/dist/providers/deepseek/index.js +1 -0
- package/dist/providers/fireworks/canonical.d.ts +3 -0
- package/dist/providers/fireworks/canonical.js +27 -0
- package/dist/providers/fireworks/index.d.ts +2 -0
- package/dist/providers/fireworks/index.js +2 -0
- package/dist/providers/fireworks/middleware.d.ts +2 -0
- package/dist/providers/fireworks/middleware.js +35 -0
- package/dist/providers/groq/canonical.js +1 -1
- package/dist/providers/minimax/canonical.d.ts +3 -0
- package/dist/providers/minimax/canonical.js +9 -0
- package/dist/providers/minimax/index.d.ts +1 -0
- package/dist/providers/minimax/index.js +1 -0
- package/dist/providers/moonshot/canonical.d.ts +3 -0
- package/dist/providers/moonshot/canonical.js +6 -0
- package/dist/providers/moonshot/index.d.ts +1 -0
- package/dist/providers/moonshot/index.js +1 -0
- package/dist/providers/togetherai/canonical.d.ts +3 -0
- package/dist/providers/togetherai/canonical.js +24 -0
- package/dist/providers/togetherai/index.d.ts +1 -0
- package/dist/providers/togetherai/index.js +1 -0
- package/dist/providers/types.d.ts +1 -1
- package/dist/providers/types.js +10 -0
- package/dist/providers/vertex/canonical.js +5 -1
- package/dist/providers/xai/canonical.d.ts +3 -0
- package/dist/providers/xai/canonical.js +12 -0
- package/dist/providers/xai/index.d.ts +1 -0
- package/dist/providers/xai/index.js +1 -0
- package/dist/providers/zai/canonical.d.ts +3 -0
- package/dist/providers/zai/canonical.js +10 -0
- package/dist/providers/zai/index.d.ts +1 -0
- package/dist/providers/zai/index.js +1 -0
- package/dist/types.d.ts +30 -16
- package/dist/utils/index.d.ts +8 -0
- package/dist/utils/index.js +8 -0
- package/dist/utils/request.d.ts +2 -1
- package/dist/utils/request.js +35 -7
- package/package.json +133 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { CatalogModel } from "../types";
|
|
2
|
-
export declare const geminiEmbedding001: import("../../utils
|
|
2
|
+
export declare const geminiEmbedding001: import("../../utils").Preset<"google/embedding-001", CatalogModel, {
|
|
3
3
|
name: string;
|
|
4
4
|
created: string;
|
|
5
5
|
context: number;
|
|
@@ -9,7 +9,7 @@ export declare const geminiEmbedding001: import("../../utils/preset").Preset<"go
|
|
|
9
9
|
};
|
|
10
10
|
providers: readonly ["vertex"];
|
|
11
11
|
}>;
|
|
12
|
-
export declare const geminiEmbedding2Preview: import("../../utils
|
|
12
|
+
export declare const geminiEmbedding2Preview: import("../../utils").Preset<"google/gemini-embedding-2-preview", CatalogModel, {
|
|
13
13
|
name: string;
|
|
14
14
|
created: string;
|
|
15
15
|
context: number;
|
|
@@ -19,7 +19,7 @@ export declare const geminiEmbedding2Preview: import("../../utils/preset").Prese
|
|
|
19
19
|
};
|
|
20
20
|
providers: readonly ["vertex"];
|
|
21
21
|
}>;
|
|
22
|
-
export declare const gemini3FlashPreview: import("../../utils
|
|
22
|
+
export declare const gemini3FlashPreview: import("../../utils").Preset<"google/gemini-3-flash-preview", CatalogModel, {
|
|
23
23
|
name: string;
|
|
24
24
|
created: string;
|
|
25
25
|
knowledge: string;
|
|
@@ -31,7 +31,7 @@ export declare const gemini3FlashPreview: import("../../utils/preset").Preset<"g
|
|
|
31
31
|
context: number;
|
|
32
32
|
providers: readonly ["vertex"];
|
|
33
33
|
}>;
|
|
34
|
-
export declare const gemini31FlashLitePreview: import("../../utils
|
|
34
|
+
export declare const gemini31FlashLitePreview: import("../../utils").Preset<"google/gemini-3.1-flash-lite-preview", CatalogModel, {
|
|
35
35
|
name: string;
|
|
36
36
|
created: string;
|
|
37
37
|
knowledge: string;
|
|
@@ -43,7 +43,7 @@ export declare const gemini31FlashLitePreview: import("../../utils/preset").Pres
|
|
|
43
43
|
context: number;
|
|
44
44
|
providers: readonly ["vertex"];
|
|
45
45
|
}>;
|
|
46
|
-
export declare const gemini31ProPreview: import("../../utils
|
|
46
|
+
export declare const gemini31ProPreview: import("../../utils").Preset<"google/gemini-3.1-pro-preview", CatalogModel, {
|
|
47
47
|
name: string;
|
|
48
48
|
created: string;
|
|
49
49
|
knowledge: string;
|
|
@@ -55,7 +55,7 @@ export declare const gemini31ProPreview: import("../../utils/preset").Preset<"go
|
|
|
55
55
|
context: number;
|
|
56
56
|
providers: readonly ["vertex"];
|
|
57
57
|
}>;
|
|
58
|
-
export declare const gemini25FlashLite: import("../../utils
|
|
58
|
+
export declare const gemini25FlashLite: import("../../utils").Preset<"google/gemini-2.5-flash-lite", CatalogModel, {
|
|
59
59
|
name: string;
|
|
60
60
|
created: string;
|
|
61
61
|
knowledge: string;
|
|
@@ -67,7 +67,7 @@ export declare const gemini25FlashLite: import("../../utils/preset").Preset<"goo
|
|
|
67
67
|
context: number;
|
|
68
68
|
providers: readonly ["vertex"];
|
|
69
69
|
}>;
|
|
70
|
-
export declare const gemini25Flash: import("../../utils
|
|
70
|
+
export declare const gemini25Flash: import("../../utils").Preset<"google/gemini-2.5-flash", CatalogModel, {
|
|
71
71
|
name: string;
|
|
72
72
|
created: string;
|
|
73
73
|
knowledge: string;
|
|
@@ -79,7 +79,7 @@ export declare const gemini25Flash: import("../../utils/preset").Preset<"google/
|
|
|
79
79
|
context: number;
|
|
80
80
|
providers: readonly ["vertex"];
|
|
81
81
|
}>;
|
|
82
|
-
export declare const gemini25Pro: import("../../utils
|
|
82
|
+
export declare const gemini25Pro: import("../../utils").Preset<"google/gemini-2.5-pro", CatalogModel, {
|
|
83
83
|
name: string;
|
|
84
84
|
created: string;
|
|
85
85
|
knowledge: string;
|
|
@@ -91,7 +91,7 @@ export declare const gemini25Pro: import("../../utils/preset").Preset<"google/ge
|
|
|
91
91
|
context: number;
|
|
92
92
|
providers: readonly ["vertex"];
|
|
93
93
|
}>;
|
|
94
|
-
export declare const gemma31b: import("../../utils
|
|
94
|
+
export declare const gemma31b: import("../../utils").Preset<"google/gemma-3-1b", CatalogModel, {
|
|
95
95
|
name: string;
|
|
96
96
|
created: string;
|
|
97
97
|
modalities: {
|
|
@@ -103,7 +103,7 @@ export declare const gemma31b: import("../../utils/preset").Preset<"google/gemma
|
|
|
103
103
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
104
104
|
knowledge: string;
|
|
105
105
|
}>;
|
|
106
|
-
export declare const gemma34b: import("../../utils
|
|
106
|
+
export declare const gemma34b: import("../../utils").Preset<"google/gemma-3-4b", CatalogModel, {
|
|
107
107
|
name: string;
|
|
108
108
|
created: string;
|
|
109
109
|
modalities: {
|
|
@@ -113,9 +113,9 @@ export declare const gemma34b: import("../../utils/preset").Preset<"google/gemma
|
|
|
113
113
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
114
114
|
context: number;
|
|
115
115
|
knowledge: string;
|
|
116
|
-
providers: readonly ["vertex", "bedrock"];
|
|
116
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
117
117
|
}>;
|
|
118
|
-
export declare const gemma312b: import("../../utils
|
|
118
|
+
export declare const gemma312b: import("../../utils").Preset<"google/gemma-3-12b", CatalogModel, {
|
|
119
119
|
name: string;
|
|
120
120
|
created: string;
|
|
121
121
|
modalities: {
|
|
@@ -125,9 +125,9 @@ export declare const gemma312b: import("../../utils/preset").Preset<"google/gemm
|
|
|
125
125
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
126
126
|
context: number;
|
|
127
127
|
knowledge: string;
|
|
128
|
-
providers: readonly ["vertex", "bedrock"];
|
|
128
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
129
129
|
}>;
|
|
130
|
-
export declare const gemma327b: import("../../utils
|
|
130
|
+
export declare const gemma327b: import("../../utils").Preset<"google/gemma-3-27b", CatalogModel, {
|
|
131
131
|
name: string;
|
|
132
132
|
created: string;
|
|
133
133
|
modalities: {
|
|
@@ -137,9 +137,9 @@ export declare const gemma327b: import("../../utils/preset").Preset<"google/gemm
|
|
|
137
137
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
138
138
|
context: number;
|
|
139
139
|
knowledge: string;
|
|
140
|
-
providers: readonly ["vertex", "bedrock"];
|
|
140
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
141
141
|
}>;
|
|
142
|
-
export declare const gemma4E2b: import("../../utils
|
|
142
|
+
export declare const gemma4E2b: import("../../utils").Preset<"google/gemma-4-e2b", CatalogModel, {
|
|
143
143
|
name: string;
|
|
144
144
|
created: string;
|
|
145
145
|
modalities: {
|
|
@@ -151,7 +151,7 @@ export declare const gemma4E2b: import("../../utils/preset").Preset<"google/gemm
|
|
|
151
151
|
knowledge: string;
|
|
152
152
|
providers: readonly ["vertex"];
|
|
153
153
|
}>;
|
|
154
|
-
export declare const gemma4E4b: import("../../utils
|
|
154
|
+
export declare const gemma4E4b: import("../../utils").Preset<"google/gemma-4-e4b", CatalogModel, {
|
|
155
155
|
name: string;
|
|
156
156
|
created: string;
|
|
157
157
|
modalities: {
|
|
@@ -163,32 +163,32 @@ export declare const gemma4E4b: import("../../utils/preset").Preset<"google/gemm
|
|
|
163
163
|
knowledge: string;
|
|
164
164
|
providers: readonly ["vertex"];
|
|
165
165
|
}>;
|
|
166
|
-
export declare const gemma426bA4b: import("../../utils
|
|
166
|
+
export declare const gemma426bA4b: import("../../utils").Preset<"google/gemma-4-26b-a4b", CatalogModel, {
|
|
167
167
|
name: string;
|
|
168
168
|
created: string;
|
|
169
169
|
context: number;
|
|
170
|
+
providers: readonly ["vertex", "deepinfra"];
|
|
170
171
|
modalities: {
|
|
171
172
|
input: readonly ["text", "image"];
|
|
172
173
|
output: readonly ["text"];
|
|
173
174
|
};
|
|
174
175
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
175
176
|
knowledge: string;
|
|
176
|
-
providers: readonly ["vertex"];
|
|
177
177
|
}>;
|
|
178
|
-
export declare const gemma431b: import("../../utils
|
|
178
|
+
export declare const gemma431b: import("../../utils").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
179
179
|
name: string;
|
|
180
180
|
created: string;
|
|
181
181
|
context: number;
|
|
182
|
+
providers: readonly ["vertex", "deepinfra", "togetherai"];
|
|
182
183
|
modalities: {
|
|
183
184
|
input: readonly ["text", "image"];
|
|
184
185
|
output: readonly ["text"];
|
|
185
186
|
};
|
|
186
187
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
187
188
|
knowledge: string;
|
|
188
|
-
providers: readonly ["vertex"];
|
|
189
189
|
}>;
|
|
190
190
|
export declare const gemma: {
|
|
191
|
-
readonly latest: readonly [import("../../utils
|
|
191
|
+
readonly latest: readonly [import("../../utils").Preset<"google/gemma-4-e2b", CatalogModel, {
|
|
192
192
|
name: string;
|
|
193
193
|
created: string;
|
|
194
194
|
modalities: {
|
|
@@ -199,7 +199,7 @@ export declare const gemma: {
|
|
|
199
199
|
context: number;
|
|
200
200
|
knowledge: string;
|
|
201
201
|
providers: readonly ["vertex"];
|
|
202
|
-
}>, import("../../utils
|
|
202
|
+
}>, import("../../utils").Preset<"google/gemma-4-e4b", CatalogModel, {
|
|
203
203
|
name: string;
|
|
204
204
|
created: string;
|
|
205
205
|
modalities: {
|
|
@@ -210,30 +210,30 @@ export declare const gemma: {
|
|
|
210
210
|
context: number;
|
|
211
211
|
knowledge: string;
|
|
212
212
|
providers: readonly ["vertex"];
|
|
213
|
-
}>, import("../../utils
|
|
213
|
+
}>, import("../../utils").Preset<"google/gemma-4-26b-a4b", CatalogModel, {
|
|
214
214
|
name: string;
|
|
215
215
|
created: string;
|
|
216
216
|
context: number;
|
|
217
|
+
providers: readonly ["vertex", "deepinfra"];
|
|
217
218
|
modalities: {
|
|
218
219
|
input: readonly ["text", "image"];
|
|
219
220
|
output: readonly ["text"];
|
|
220
221
|
};
|
|
221
222
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
222
223
|
knowledge: string;
|
|
223
|
-
|
|
224
|
-
}>, import("../../utils/preset").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
224
|
+
}>, import("../../utils").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
225
225
|
name: string;
|
|
226
226
|
created: string;
|
|
227
227
|
context: number;
|
|
228
|
+
providers: readonly ["vertex", "deepinfra", "togetherai"];
|
|
228
229
|
modalities: {
|
|
229
230
|
input: readonly ["text", "image"];
|
|
230
231
|
output: readonly ["text"];
|
|
231
232
|
};
|
|
232
233
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
233
234
|
knowledge: string;
|
|
234
|
-
providers: readonly ["vertex"];
|
|
235
235
|
}>];
|
|
236
|
-
readonly all: (import("../../utils
|
|
236
|
+
readonly all: (import("../../utils").Preset<"google/gemma-3-1b", CatalogModel, {
|
|
237
237
|
name: string;
|
|
238
238
|
created: string;
|
|
239
239
|
modalities: {
|
|
@@ -244,7 +244,7 @@ export declare const gemma: {
|
|
|
244
244
|
providers: readonly ["vertex"];
|
|
245
245
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
246
246
|
knowledge: string;
|
|
247
|
-
}> | import("../../utils
|
|
247
|
+
}> | import("../../utils").Preset<"google/gemma-3-4b", CatalogModel, {
|
|
248
248
|
name: string;
|
|
249
249
|
created: string;
|
|
250
250
|
modalities: {
|
|
@@ -254,8 +254,8 @@ export declare const gemma: {
|
|
|
254
254
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
255
255
|
context: number;
|
|
256
256
|
knowledge: string;
|
|
257
|
-
providers: readonly ["vertex", "bedrock"];
|
|
258
|
-
}> | import("../../utils
|
|
257
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
258
|
+
}> | import("../../utils").Preset<"google/gemma-3-12b", CatalogModel, {
|
|
259
259
|
name: string;
|
|
260
260
|
created: string;
|
|
261
261
|
modalities: {
|
|
@@ -265,8 +265,8 @@ export declare const gemma: {
|
|
|
265
265
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
266
266
|
context: number;
|
|
267
267
|
knowledge: string;
|
|
268
|
-
providers: readonly ["vertex", "bedrock"];
|
|
269
|
-
}> | import("../../utils
|
|
268
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
269
|
+
}> | import("../../utils").Preset<"google/gemma-3-27b", CatalogModel, {
|
|
270
270
|
name: string;
|
|
271
271
|
created: string;
|
|
272
272
|
modalities: {
|
|
@@ -276,8 +276,8 @@ export declare const gemma: {
|
|
|
276
276
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
277
277
|
context: number;
|
|
278
278
|
knowledge: string;
|
|
279
|
-
providers: readonly ["vertex", "bedrock"];
|
|
280
|
-
}> | import("../../utils
|
|
279
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
280
|
+
}> | import("../../utils").Preset<"google/gemma-4-e2b", CatalogModel, {
|
|
281
281
|
name: string;
|
|
282
282
|
created: string;
|
|
283
283
|
modalities: {
|
|
@@ -288,7 +288,7 @@ export declare const gemma: {
|
|
|
288
288
|
context: number;
|
|
289
289
|
knowledge: string;
|
|
290
290
|
providers: readonly ["vertex"];
|
|
291
|
-
}> | import("../../utils
|
|
291
|
+
}> | import("../../utils").Preset<"google/gemma-4-e4b", CatalogModel, {
|
|
292
292
|
name: string;
|
|
293
293
|
created: string;
|
|
294
294
|
modalities: {
|
|
@@ -299,30 +299,30 @@ export declare const gemma: {
|
|
|
299
299
|
context: number;
|
|
300
300
|
knowledge: string;
|
|
301
301
|
providers: readonly ["vertex"];
|
|
302
|
-
}> | import("../../utils
|
|
302
|
+
}> | import("../../utils").Preset<"google/gemma-4-26b-a4b", CatalogModel, {
|
|
303
303
|
name: string;
|
|
304
304
|
created: string;
|
|
305
305
|
context: number;
|
|
306
|
+
providers: readonly ["vertex", "deepinfra"];
|
|
306
307
|
modalities: {
|
|
307
308
|
input: readonly ["text", "image"];
|
|
308
309
|
output: readonly ["text"];
|
|
309
310
|
};
|
|
310
311
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
311
312
|
knowledge: string;
|
|
312
|
-
|
|
313
|
-
}> | import("../../utils/preset").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
313
|
+
}> | import("../../utils").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
314
314
|
name: string;
|
|
315
315
|
created: string;
|
|
316
316
|
context: number;
|
|
317
|
+
providers: readonly ["vertex", "deepinfra", "togetherai"];
|
|
317
318
|
modalities: {
|
|
318
319
|
input: readonly ["text", "image"];
|
|
319
320
|
output: readonly ["text"];
|
|
320
321
|
};
|
|
321
322
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
322
323
|
knowledge: string;
|
|
323
|
-
providers: readonly ["vertex"];
|
|
324
324
|
}>)[];
|
|
325
|
-
readonly "v3.x": readonly [import("../../utils
|
|
325
|
+
readonly "v3.x": readonly [import("../../utils").Preset<"google/gemma-3-1b", CatalogModel, {
|
|
326
326
|
name: string;
|
|
327
327
|
created: string;
|
|
328
328
|
modalities: {
|
|
@@ -333,7 +333,7 @@ export declare const gemma: {
|
|
|
333
333
|
providers: readonly ["vertex"];
|
|
334
334
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
335
335
|
knowledge: string;
|
|
336
|
-
}>, import("../../utils
|
|
336
|
+
}>, import("../../utils").Preset<"google/gemma-3-4b", CatalogModel, {
|
|
337
337
|
name: string;
|
|
338
338
|
created: string;
|
|
339
339
|
modalities: {
|
|
@@ -343,8 +343,8 @@ export declare const gemma: {
|
|
|
343
343
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
344
344
|
context: number;
|
|
345
345
|
knowledge: string;
|
|
346
|
-
providers: readonly ["vertex", "bedrock"];
|
|
347
|
-
}>, import("../../utils
|
|
346
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
347
|
+
}>, import("../../utils").Preset<"google/gemma-3-12b", CatalogModel, {
|
|
348
348
|
name: string;
|
|
349
349
|
created: string;
|
|
350
350
|
modalities: {
|
|
@@ -354,8 +354,8 @@ export declare const gemma: {
|
|
|
354
354
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
355
355
|
context: number;
|
|
356
356
|
knowledge: string;
|
|
357
|
-
providers: readonly ["vertex", "bedrock"];
|
|
358
|
-
}>, import("../../utils
|
|
357
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
358
|
+
}>, import("../../utils").Preset<"google/gemma-3-27b", CatalogModel, {
|
|
359
359
|
name: string;
|
|
360
360
|
created: string;
|
|
361
361
|
modalities: {
|
|
@@ -365,9 +365,9 @@ export declare const gemma: {
|
|
|
365
365
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
366
366
|
context: number;
|
|
367
367
|
knowledge: string;
|
|
368
|
-
providers: readonly ["vertex", "bedrock"];
|
|
368
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
369
369
|
}>];
|
|
370
|
-
readonly "v4.x": readonly [import("../../utils
|
|
370
|
+
readonly "v4.x": readonly [import("../../utils").Preset<"google/gemma-4-e2b", CatalogModel, {
|
|
371
371
|
name: string;
|
|
372
372
|
created: string;
|
|
373
373
|
modalities: {
|
|
@@ -378,7 +378,7 @@ export declare const gemma: {
|
|
|
378
378
|
context: number;
|
|
379
379
|
knowledge: string;
|
|
380
380
|
providers: readonly ["vertex"];
|
|
381
|
-
}>, import("../../utils
|
|
381
|
+
}>, import("../../utils").Preset<"google/gemma-4-e4b", CatalogModel, {
|
|
382
382
|
name: string;
|
|
383
383
|
created: string;
|
|
384
384
|
modalities: {
|
|
@@ -389,30 +389,30 @@ export declare const gemma: {
|
|
|
389
389
|
context: number;
|
|
390
390
|
knowledge: string;
|
|
391
391
|
providers: readonly ["vertex"];
|
|
392
|
-
}>, import("../../utils
|
|
392
|
+
}>, import("../../utils").Preset<"google/gemma-4-26b-a4b", CatalogModel, {
|
|
393
393
|
name: string;
|
|
394
394
|
created: string;
|
|
395
395
|
context: number;
|
|
396
|
+
providers: readonly ["vertex", "deepinfra"];
|
|
396
397
|
modalities: {
|
|
397
398
|
input: readonly ["text", "image"];
|
|
398
399
|
output: readonly ["text"];
|
|
399
400
|
};
|
|
400
401
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
401
402
|
knowledge: string;
|
|
402
|
-
|
|
403
|
-
}>, import("../../utils/preset").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
403
|
+
}>, import("../../utils").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
404
404
|
name: string;
|
|
405
405
|
created: string;
|
|
406
406
|
context: number;
|
|
407
|
+
providers: readonly ["vertex", "deepinfra", "togetherai"];
|
|
407
408
|
modalities: {
|
|
408
409
|
input: readonly ["text", "image"];
|
|
409
410
|
output: readonly ["text"];
|
|
410
411
|
};
|
|
411
412
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
412
413
|
knowledge: string;
|
|
413
|
-
providers: readonly ["vertex"];
|
|
414
414
|
}>];
|
|
415
|
-
readonly v3: readonly [import("../../utils
|
|
415
|
+
readonly v3: readonly [import("../../utils").Preset<"google/gemma-3-1b", CatalogModel, {
|
|
416
416
|
name: string;
|
|
417
417
|
created: string;
|
|
418
418
|
modalities: {
|
|
@@ -423,7 +423,7 @@ export declare const gemma: {
|
|
|
423
423
|
providers: readonly ["vertex"];
|
|
424
424
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
425
425
|
knowledge: string;
|
|
426
|
-
}>, import("../../utils
|
|
426
|
+
}>, import("../../utils").Preset<"google/gemma-3-4b", CatalogModel, {
|
|
427
427
|
name: string;
|
|
428
428
|
created: string;
|
|
429
429
|
modalities: {
|
|
@@ -433,8 +433,8 @@ export declare const gemma: {
|
|
|
433
433
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
434
434
|
context: number;
|
|
435
435
|
knowledge: string;
|
|
436
|
-
providers: readonly ["vertex", "bedrock"];
|
|
437
|
-
}>, import("../../utils
|
|
436
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
437
|
+
}>, import("../../utils").Preset<"google/gemma-3-12b", CatalogModel, {
|
|
438
438
|
name: string;
|
|
439
439
|
created: string;
|
|
440
440
|
modalities: {
|
|
@@ -444,8 +444,8 @@ export declare const gemma: {
|
|
|
444
444
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
445
445
|
context: number;
|
|
446
446
|
knowledge: string;
|
|
447
|
-
providers: readonly ["vertex", "bedrock"];
|
|
448
|
-
}>, import("../../utils
|
|
447
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
448
|
+
}>, import("../../utils").Preset<"google/gemma-3-27b", CatalogModel, {
|
|
449
449
|
name: string;
|
|
450
450
|
created: string;
|
|
451
451
|
modalities: {
|
|
@@ -455,9 +455,9 @@ export declare const gemma: {
|
|
|
455
455
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
456
456
|
context: number;
|
|
457
457
|
knowledge: string;
|
|
458
|
-
providers: readonly ["vertex", "bedrock"];
|
|
458
|
+
providers: readonly ["vertex", "bedrock", "deepinfra"];
|
|
459
459
|
}>];
|
|
460
|
-
readonly v4: readonly [import("../../utils
|
|
460
|
+
readonly v4: readonly [import("../../utils").Preset<"google/gemma-4-e2b", CatalogModel, {
|
|
461
461
|
name: string;
|
|
462
462
|
created: string;
|
|
463
463
|
modalities: {
|
|
@@ -468,7 +468,7 @@ export declare const gemma: {
|
|
|
468
468
|
context: number;
|
|
469
469
|
knowledge: string;
|
|
470
470
|
providers: readonly ["vertex"];
|
|
471
|
-
}>, import("../../utils
|
|
471
|
+
}>, import("../../utils").Preset<"google/gemma-4-e4b", CatalogModel, {
|
|
472
472
|
name: string;
|
|
473
473
|
created: string;
|
|
474
474
|
modalities: {
|
|
@@ -479,32 +479,32 @@ export declare const gemma: {
|
|
|
479
479
|
context: number;
|
|
480
480
|
knowledge: string;
|
|
481
481
|
providers: readonly ["vertex"];
|
|
482
|
-
}>, import("../../utils
|
|
482
|
+
}>, import("../../utils").Preset<"google/gemma-4-26b-a4b", CatalogModel, {
|
|
483
483
|
name: string;
|
|
484
484
|
created: string;
|
|
485
485
|
context: number;
|
|
486
|
+
providers: readonly ["vertex", "deepinfra"];
|
|
486
487
|
modalities: {
|
|
487
488
|
input: readonly ["text", "image"];
|
|
488
489
|
output: readonly ["text"];
|
|
489
490
|
};
|
|
490
491
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
491
492
|
knowledge: string;
|
|
492
|
-
|
|
493
|
-
}>, import("../../utils/preset").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
493
|
+
}>, import("../../utils").Preset<"google/gemma-4-31b", CatalogModel, {
|
|
494
494
|
name: string;
|
|
495
495
|
created: string;
|
|
496
496
|
context: number;
|
|
497
|
+
providers: readonly ["vertex", "deepinfra", "togetherai"];
|
|
497
498
|
modalities: {
|
|
498
499
|
input: readonly ["text", "image"];
|
|
499
500
|
output: readonly ["text"];
|
|
500
501
|
};
|
|
501
502
|
capabilities: readonly ["tool_call", "structured_output", "temperature"];
|
|
502
503
|
knowledge: string;
|
|
503
|
-
providers: readonly ["vertex"];
|
|
504
504
|
}>];
|
|
505
505
|
};
|
|
506
506
|
export declare const gemini: {
|
|
507
|
-
readonly latest: readonly [import("../../utils
|
|
507
|
+
readonly latest: readonly [import("../../utils").Preset<"google/gemini-2.5-flash-lite", CatalogModel, {
|
|
508
508
|
name: string;
|
|
509
509
|
created: string;
|
|
510
510
|
knowledge: string;
|
|
@@ -515,7 +515,7 @@ export declare const gemini: {
|
|
|
515
515
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
516
516
|
context: number;
|
|
517
517
|
providers: readonly ["vertex"];
|
|
518
|
-
}>, import("../../utils
|
|
518
|
+
}>, import("../../utils").Preset<"google/gemini-2.5-flash", CatalogModel, {
|
|
519
519
|
name: string;
|
|
520
520
|
created: string;
|
|
521
521
|
knowledge: string;
|
|
@@ -526,7 +526,7 @@ export declare const gemini: {
|
|
|
526
526
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
527
527
|
context: number;
|
|
528
528
|
providers: readonly ["vertex"];
|
|
529
|
-
}>, import("../../utils
|
|
529
|
+
}>, import("../../utils").Preset<"google/gemini-2.5-pro", CatalogModel, {
|
|
530
530
|
name: string;
|
|
531
531
|
created: string;
|
|
532
532
|
knowledge: string;
|
|
@@ -538,7 +538,7 @@ export declare const gemini: {
|
|
|
538
538
|
context: number;
|
|
539
539
|
providers: readonly ["vertex"];
|
|
540
540
|
}>];
|
|
541
|
-
readonly preview: readonly [import("../../utils
|
|
541
|
+
readonly preview: readonly [import("../../utils").Preset<"google/gemini-3-flash-preview", CatalogModel, {
|
|
542
542
|
name: string;
|
|
543
543
|
created: string;
|
|
544
544
|
knowledge: string;
|
|
@@ -549,7 +549,7 @@ export declare const gemini: {
|
|
|
549
549
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
550
550
|
context: number;
|
|
551
551
|
providers: readonly ["vertex"];
|
|
552
|
-
}>, import("../../utils
|
|
552
|
+
}>, import("../../utils").Preset<"google/gemini-3.1-flash-lite-preview", CatalogModel, {
|
|
553
553
|
name: string;
|
|
554
554
|
created: string;
|
|
555
555
|
knowledge: string;
|
|
@@ -560,7 +560,7 @@ export declare const gemini: {
|
|
|
560
560
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
561
561
|
context: number;
|
|
562
562
|
providers: readonly ["vertex"];
|
|
563
|
-
}>, import("../../utils
|
|
563
|
+
}>, import("../../utils").Preset<"google/gemini-3.1-pro-preview", CatalogModel, {
|
|
564
564
|
name: string;
|
|
565
565
|
created: string;
|
|
566
566
|
knowledge: string;
|
|
@@ -572,7 +572,7 @@ export declare const gemini: {
|
|
|
572
572
|
context: number;
|
|
573
573
|
providers: readonly ["vertex"];
|
|
574
574
|
}>];
|
|
575
|
-
readonly embeddings: readonly [import("../../utils
|
|
575
|
+
readonly embeddings: readonly [import("../../utils").Preset<"google/embedding-001", CatalogModel, {
|
|
576
576
|
name: string;
|
|
577
577
|
created: string;
|
|
578
578
|
context: number;
|
|
@@ -581,7 +581,7 @@ export declare const gemini: {
|
|
|
581
581
|
output: readonly ["embedding"];
|
|
582
582
|
};
|
|
583
583
|
providers: readonly ["vertex"];
|
|
584
|
-
}>, import("../../utils
|
|
584
|
+
}>, import("../../utils").Preset<"google/gemini-embedding-2-preview", CatalogModel, {
|
|
585
585
|
name: string;
|
|
586
586
|
created: string;
|
|
587
587
|
context: number;
|
|
@@ -591,7 +591,7 @@ export declare const gemini: {
|
|
|
591
591
|
};
|
|
592
592
|
providers: readonly ["vertex"];
|
|
593
593
|
}>];
|
|
594
|
-
readonly all: (import("../../utils
|
|
594
|
+
readonly all: (import("../../utils").Preset<"google/embedding-001", CatalogModel, {
|
|
595
595
|
name: string;
|
|
596
596
|
created: string;
|
|
597
597
|
context: number;
|
|
@@ -600,7 +600,7 @@ export declare const gemini: {
|
|
|
600
600
|
output: readonly ["embedding"];
|
|
601
601
|
};
|
|
602
602
|
providers: readonly ["vertex"];
|
|
603
|
-
}> | import("../../utils
|
|
603
|
+
}> | import("../../utils").Preset<"google/gemini-embedding-2-preview", CatalogModel, {
|
|
604
604
|
name: string;
|
|
605
605
|
created: string;
|
|
606
606
|
context: number;
|
|
@@ -609,7 +609,7 @@ export declare const gemini: {
|
|
|
609
609
|
output: readonly ["embedding"];
|
|
610
610
|
};
|
|
611
611
|
providers: readonly ["vertex"];
|
|
612
|
-
}> | import("../../utils
|
|
612
|
+
}> | import("../../utils").Preset<"google/gemini-3-flash-preview", CatalogModel, {
|
|
613
613
|
name: string;
|
|
614
614
|
created: string;
|
|
615
615
|
knowledge: string;
|
|
@@ -620,7 +620,7 @@ export declare const gemini: {
|
|
|
620
620
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
621
621
|
context: number;
|
|
622
622
|
providers: readonly ["vertex"];
|
|
623
|
-
}> | import("../../utils
|
|
623
|
+
}> | import("../../utils").Preset<"google/gemini-3.1-flash-lite-preview", CatalogModel, {
|
|
624
624
|
name: string;
|
|
625
625
|
created: string;
|
|
626
626
|
knowledge: string;
|
|
@@ -631,7 +631,7 @@ export declare const gemini: {
|
|
|
631
631
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
632
632
|
context: number;
|
|
633
633
|
providers: readonly ["vertex"];
|
|
634
|
-
}> | import("../../utils
|
|
634
|
+
}> | import("../../utils").Preset<"google/gemini-3.1-pro-preview", CatalogModel, {
|
|
635
635
|
name: string;
|
|
636
636
|
created: string;
|
|
637
637
|
knowledge: string;
|
|
@@ -642,7 +642,7 @@ export declare const gemini: {
|
|
|
642
642
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
643
643
|
context: number;
|
|
644
644
|
providers: readonly ["vertex"];
|
|
645
|
-
}> | import("../../utils
|
|
645
|
+
}> | import("../../utils").Preset<"google/gemini-2.5-flash-lite", CatalogModel, {
|
|
646
646
|
name: string;
|
|
647
647
|
created: string;
|
|
648
648
|
knowledge: string;
|
|
@@ -653,7 +653,7 @@ export declare const gemini: {
|
|
|
653
653
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
654
654
|
context: number;
|
|
655
655
|
providers: readonly ["vertex"];
|
|
656
|
-
}> | import("../../utils
|
|
656
|
+
}> | import("../../utils").Preset<"google/gemini-2.5-flash", CatalogModel, {
|
|
657
657
|
name: string;
|
|
658
658
|
created: string;
|
|
659
659
|
knowledge: string;
|
|
@@ -664,7 +664,7 @@ export declare const gemini: {
|
|
|
664
664
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
665
665
|
context: number;
|
|
666
666
|
providers: readonly ["vertex"];
|
|
667
|
-
}> | import("../../utils
|
|
667
|
+
}> | import("../../utils").Preset<"google/gemini-2.5-pro", CatalogModel, {
|
|
668
668
|
name: string;
|
|
669
669
|
created: string;
|
|
670
670
|
knowledge: string;
|
|
@@ -676,7 +676,7 @@ export declare const gemini: {
|
|
|
676
676
|
context: number;
|
|
677
677
|
providers: readonly ["vertex"];
|
|
678
678
|
}>)[];
|
|
679
|
-
readonly "v2.x": readonly [import("../../utils
|
|
679
|
+
readonly "v2.x": readonly [import("../../utils").Preset<"google/gemini-2.5-flash-lite", CatalogModel, {
|
|
680
680
|
name: string;
|
|
681
681
|
created: string;
|
|
682
682
|
knowledge: string;
|
|
@@ -687,7 +687,7 @@ export declare const gemini: {
|
|
|
687
687
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
688
688
|
context: number;
|
|
689
689
|
providers: readonly ["vertex"];
|
|
690
|
-
}>, import("../../utils
|
|
690
|
+
}>, import("../../utils").Preset<"google/gemini-2.5-flash", CatalogModel, {
|
|
691
691
|
name: string;
|
|
692
692
|
created: string;
|
|
693
693
|
knowledge: string;
|
|
@@ -698,7 +698,7 @@ export declare const gemini: {
|
|
|
698
698
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
699
699
|
context: number;
|
|
700
700
|
providers: readonly ["vertex"];
|
|
701
|
-
}>, import("../../utils
|
|
701
|
+
}>, import("../../utils").Preset<"google/gemini-2.5-pro", CatalogModel, {
|
|
702
702
|
name: string;
|
|
703
703
|
created: string;
|
|
704
704
|
knowledge: string;
|
|
@@ -710,7 +710,7 @@ export declare const gemini: {
|
|
|
710
710
|
context: number;
|
|
711
711
|
providers: readonly ["vertex"];
|
|
712
712
|
}>];
|
|
713
|
-
readonly "v3.x": readonly [import("../../utils
|
|
713
|
+
readonly "v3.x": readonly [import("../../utils").Preset<"google/gemini-3-flash-preview", CatalogModel, {
|
|
714
714
|
name: string;
|
|
715
715
|
created: string;
|
|
716
716
|
knowledge: string;
|
|
@@ -721,7 +721,7 @@ export declare const gemini: {
|
|
|
721
721
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
722
722
|
context: number;
|
|
723
723
|
providers: readonly ["vertex"];
|
|
724
|
-
}>, import("../../utils
|
|
724
|
+
}>, import("../../utils").Preset<"google/gemini-3.1-flash-lite-preview", CatalogModel, {
|
|
725
725
|
name: string;
|
|
726
726
|
created: string;
|
|
727
727
|
knowledge: string;
|
|
@@ -732,7 +732,7 @@ export declare const gemini: {
|
|
|
732
732
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
733
733
|
context: number;
|
|
734
734
|
providers: readonly ["vertex"];
|
|
735
|
-
}>, import("../../utils
|
|
735
|
+
}>, import("../../utils").Preset<"google/gemini-3.1-pro-preview", CatalogModel, {
|
|
736
736
|
name: string;
|
|
737
737
|
created: string;
|
|
738
738
|
knowledge: string;
|
|
@@ -744,7 +744,7 @@ export declare const gemini: {
|
|
|
744
744
|
context: number;
|
|
745
745
|
providers: readonly ["vertex"];
|
|
746
746
|
}>];
|
|
747
|
-
readonly "v2.5": readonly [import("../../utils
|
|
747
|
+
readonly "v2.5": readonly [import("../../utils").Preset<"google/gemini-2.5-flash-lite", CatalogModel, {
|
|
748
748
|
name: string;
|
|
749
749
|
created: string;
|
|
750
750
|
knowledge: string;
|
|
@@ -755,7 +755,7 @@ export declare const gemini: {
|
|
|
755
755
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
756
756
|
context: number;
|
|
757
757
|
providers: readonly ["vertex"];
|
|
758
|
-
}>, import("../../utils
|
|
758
|
+
}>, import("../../utils").Preset<"google/gemini-2.5-flash", CatalogModel, {
|
|
759
759
|
name: string;
|
|
760
760
|
created: string;
|
|
761
761
|
knowledge: string;
|
|
@@ -766,7 +766,7 @@ export declare const gemini: {
|
|
|
766
766
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
767
767
|
context: number;
|
|
768
768
|
providers: readonly ["vertex"];
|
|
769
|
-
}>, import("../../utils
|
|
769
|
+
}>, import("../../utils").Preset<"google/gemini-2.5-pro", CatalogModel, {
|
|
770
770
|
name: string;
|
|
771
771
|
created: string;
|
|
772
772
|
knowledge: string;
|
|
@@ -778,7 +778,7 @@ export declare const gemini: {
|
|
|
778
778
|
context: number;
|
|
779
779
|
providers: readonly ["vertex"];
|
|
780
780
|
}>];
|
|
781
|
-
readonly "v3-preview": readonly [import("../../utils
|
|
781
|
+
readonly "v3-preview": readonly [import("../../utils").Preset<"google/gemini-3-flash-preview", CatalogModel, {
|
|
782
782
|
name: string;
|
|
783
783
|
created: string;
|
|
784
784
|
knowledge: string;
|
|
@@ -789,7 +789,7 @@ export declare const gemini: {
|
|
|
789
789
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
790
790
|
context: number;
|
|
791
791
|
providers: readonly ["vertex"];
|
|
792
|
-
}>, import("../../utils
|
|
792
|
+
}>, import("../../utils").Preset<"google/gemini-3.1-flash-lite-preview", CatalogModel, {
|
|
793
793
|
name: string;
|
|
794
794
|
created: string;
|
|
795
795
|
knowledge: string;
|
|
@@ -800,7 +800,7 @@ export declare const gemini: {
|
|
|
800
800
|
capabilities: readonly ["attachments", "reasoning", "tool_call", "structured_output", "temperature"];
|
|
801
801
|
context: number;
|
|
802
802
|
providers: readonly ["vertex"];
|
|
803
|
-
}>, import("../../utils
|
|
803
|
+
}>, import("../../utils").Preset<"google/gemini-3.1-pro-preview", CatalogModel, {
|
|
804
804
|
name: string;
|
|
805
805
|
created: string;
|
|
806
806
|
knowledge: string;
|