Skip to content

Commit

Permalink
feat: add Gemini 2.0 Flash model (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-on authored Dec 13, 2024
1 parent 9ec22fc commit acee612
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ export const CHAT_MODEL_OPTIONS: ModelOption[] = [
model: 'gemini-1.5-pro',
},
},
{
id: 'gemini/gemini-2.0-flash',
name: 'gemini-2.0-flash',
model: {
provider: 'gemini',
model: 'gemini-2.0-flash-exp',
},
},
{
id: 'groq/llama-3.1-70b-versatile',
name: 'llama-3.1-70b (Groq)',
Expand Down Expand Up @@ -91,6 +99,14 @@ export const APPLY_MODEL_OPTIONS: ModelOption[] = [
model: 'gemini-1.5-flash',
},
},
{
id: 'gemini/gemini-2.0-flash',
name: 'gemini-2.0-flash',
model: {
provider: 'gemini',
model: 'gemini-2.0-flash-exp',
},
},
{
id: 'groq/llama-3.1-8b-instant',
name: 'llama-3.1-8b (Groq)',
Expand Down

0 comments on commit acee612

Please sign in to comment.