Skip to content

Commit

Permalink
🐛 fix(ollama): fix gemma model id (lobehub#1377)
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Feb 24, 2024
1 parent ec76917 commit 3da50ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/modelProviders/ollama.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ const Ollama: ModelProviderCard = {
{
displayName: 'Gemma 7B',
functionCall: false,
id: 'gemma:7b',
id: 'gemma',
tokens: 4000,
vision: false,
},
{
displayName: 'Gemma 2B',
functionCall: false,
id: 'gemma',
id: 'gemma:2b',
tokens: 4000,
vision: false,
},
Expand Down

0 comments on commit 3da50ff

Please sign in to comment.