Skip to content

Commit d9dfb02

Browse files
authored
Add Gemini 3 Pro Preview model configuration (#149)
Added configuration for Gemini 3 Pro Preview model.
1 parent 6fd5844 commit d9dfb02

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/models.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ import { ModelInfo } from "./types";
22

33
// --- Gemini CLI Models Configuration ---
44
export const geminiCliModels: Record<string, ModelInfo> = {
5+
"gemini-3-pro-preview": {
6+
maxTokens: 65536,
7+
contextWindow: 1_048_576,
8+
supportsImages: true,
9+
supportsPromptCache: false,
10+
inputPrice: 0,
11+
outputPrice: 0,
12+
description: "Google's Gemini 3.0 Pro Preview model via OAuth (free tier)",
13+
thinking: true
14+
},
515
"gemini-2.5-pro": {
616
maxTokens: 65536,
717
contextWindow: 1_048_576,

0 commit comments

Comments
 (0)