File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
packages/types/src/providers Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,30 @@ export type VertexModelId = keyof typeof vertexModels
66export const vertexDefaultModelId : VertexModelId = "claude-sonnet-4-5@20250929"
77
88export 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 ,
You can’t perform that action at this time.
0 commit comments