We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fd5844 commit d9dfb02Copy full SHA for d9dfb02
src/models.ts
@@ -2,6 +2,16 @@ import { ModelInfo } from "./types";
2
3
// --- Gemini CLI Models Configuration ---
4
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
+ },
15
"gemini-2.5-pro": {
16
maxTokens: 65536,
17
contextWindow: 1_048_576,
0 commit comments