Skip to content

Commit 3935a45

Browse files
committed
✨ Add new model 'Gemini 2.5 Pro Exp' and update existing models to mark them as not new, enhancing the model configuration in the application.
1 parent 2a57ef4 commit 3935a45

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

apps/app/config/models.tsx

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,24 @@ export const models: TModelItem[] = [
220220
inputTokenPrice: 0.000025, // $0.25 per 1M tokens
221221
outputTokenPrice: 0.0001, // $1 per 1M tokens
222222
},
223+
{
224+
name: 'Gemini 2.5 Pro Exp',
225+
key: 'gemini-2.5-pro-exp-03-25',
226+
isNew: true,
227+
tokens: 2097152,
228+
description: 'Best for complex tasks',
229+
vision: true,
230+
maxOutputTokens: 8192,
231+
plugins: allPlugins,
232+
icon: 'gemini',
233+
provider: 'gemini',
234+
inputTokenPrice: 0.0, // $0.0 per 1M tokens
235+
outputTokenPrice: 0.0, // $0.0 per 1M tokens
236+
},
223237
{
224238
name: 'Gemini Flash 2.0',
225239
key: 'gemini-2.0-flash',
226-
isNew: true,
240+
isNew: false,
227241
tokens: 1048576,
228242
description: 'Best for complex tasks',
229243
vision: true,
@@ -237,7 +251,7 @@ export const models: TModelItem[] = [
237251
{
238252
name: 'Gemini Flash 2.0 Lite Preview',
239253
key: 'gemini-2.0-flash-lite-preview-02-05',
240-
isNew: true,
254+
isNew: false,
241255
tokens: 1048576,
242256
description: 'Best for complex tasks',
243257
vision: true,
@@ -251,7 +265,7 @@ export const models: TModelItem[] = [
251265
{
252266
name: 'Gemini Pro 2.0',
253267
key: 'gemini-2.0-pro-exp-02-05',
254-
isNew: true,
268+
isNew: false,
255269
tokens: 2097152,
256270
description: 'Best for complex tasks',
257271
vision: true,
@@ -265,7 +279,7 @@ export const models: TModelItem[] = [
265279
{
266280
name: 'Gemini Flash 2.0 Exp',
267281
key: 'gemini-2.0-flash-exp',
268-
isNew: true,
282+
isNew: false,
269283
tokens: 1048576,
270284
description: 'Best for complex tasks',
271285
vision: true,
@@ -279,7 +293,7 @@ export const models: TModelItem[] = [
279293
{
280294
name: 'Gemini Flash 2.0 Thinking Experimental 01-21',
281295
key: 'gemini-2.0-flash-thinking-exp-01-21',
282-
isNew: true,
296+
isNew: false,
283297
tokens: 1048576,
284298
description: 'Best for complex tasks',
285299
vision: true,

0 commit comments

Comments
 (0)