Skip to content

Commit a29008f

Browse files
committed
Adds o3 Pro model and latest Gemini 2.5 Pro preview
1 parent 4b79649 commit a29008f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/plus/ai/geminiProvider.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ const models: GeminiModel[] = [
1919
provider: provider,
2020
hidden: true,
2121
},
22+
{
23+
id: 'gemini-2.5-pro-preview-06-05',
24+
name: 'Gemini 2.5 Pro (Preview)',
25+
maxTokens: { input: 1048576, output: 65536 },
26+
provider: provider,
27+
},
2228
{
2329
id: 'gemini-2.5-pro-preview-03-25',
2430
name: 'Gemini 2.5 Pro (Preview)',

src/plus/ai/models/model.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ export const openAIModels = <T extends OpenAIProviders>(provider: AIProviderDesc
111111
temperature: null,
112112
hidden: true,
113113
},
114+
{
115+
id: 'o3-pro',
116+
name: 'o3 Pro',
117+
maxTokens: { input: 200000, output: 100000 },
118+
provider: provider,
119+
temperature: null,
120+
},
114121
{
115122
id: 'o3',
116123
name: 'o3',

0 commit comments

Comments
 (0)