Skip to content

Commit 652f63f

Browse files
committed
feat: Add Gemini 3 Pro Preview to Vertex
1 parent 5851c04 commit 652f63f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

packages/types/src/providers/vertex.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,30 @@ export type VertexModelId = keyof typeof vertexModels
66
export const vertexDefaultModelId: VertexModelId = "claude-sonnet-4-5@20250929"
77

88
export const vertexModels = {
9+
"gemini-3-pro-preview": {
10+
maxTokens: 65_536,
11+
contextWindow: 1_048_576,
12+
supportsImages: true,
13+
supportsPromptCache: true,
14+
supportsReasoningEffort: ["low", "high"],
15+
reasoningEffort: "low",
16+
supportsTemperature: true,
17+
defaultTemperature: 1,
18+
inputPrice: 4.0,
19+
outputPrice: 18.0,
20+
tiers: [
21+
{
22+
contextWindow: 200_000,
23+
inputPrice: 2.0,
24+
outputPrice: 12.0,
25+
},
26+
{
27+
contextWindow: Infinity,
28+
inputPrice: 4.0,
29+
outputPrice: 18.0,
30+
},
31+
],
32+
},
933
"gemini-2.5-flash-preview-05-20:thinking": {
1034
maxTokens: 65_535,
1135
contextWindow: 1_048_576,

0 commit comments

Comments
 (0)