Skip to content

Commit

Permalink
💄 style: Added Gemma2 instead of outdated Gemma (lobehub#3231)
Browse files Browse the repository at this point in the history
* 💄 config (Ollama): Added Gemma2 instead of outdated Gemma

* 💄 config (Ollama): Retaining old Gemma
  • Loading branch information
MapleEve authored Jul 19, 2024
1 parent 4531e24 commit 03173b7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/config/modelProviders/ollama.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,18 @@ const Ollama: ModelProviderCard = {
tokens: 131_072, // https://huggingface.co/CohereForAI/c4ai-command-r-plus/blob/main/config.json
},
{
displayName: 'Gemma 7B',
displayName: 'Gemma2 9B',
enabled: true,
id: 'gemma2',
tokens: 8192, // https://huggingface.co/blog/zh/gemma2
},
{
displayName: 'Gemma2 27B',
id: 'gemma2:27b',
tokens: 8192,
},
{
displayName: 'Gemma 7B',
id: 'gemma',
tokens: 8192, // https://huggingface.co/google/gemma-7b-it/discussions/73#65e9678c0cda621164a95bad
},
Expand Down

0 comments on commit 03173b7

Please sign in to comment.