Skip to content

Commit

Permalink
💄 style: Add MiniCPM-V 8B model entries to Ollama model providers (lo…
Browse files Browse the repository at this point in the history
…behub#3984)

* feat(modelProviders): Add MiniCPM 8B to Ollama model providers

This commit adds two new entries for MiniCPM 8B to the Ollama model providers. These models have excellent OCR recognition and multimodal understanding capabilities, supporting a wide range of applications.

- Added MiniCPM 8B model entry with ID 'minicpm-v:8b' and 128,000 tokens
- Added another MiniCPM 8B model entry with ID 'minicpm-v' and 128,000 tokens

* feat(modelProviders): Update MiniCPM-V display name and description
  • Loading branch information
cr-zhichen authored Sep 15, 2024
1 parent c79c17c commit f9c26de
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/config/modelProviders/ollama.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,22 @@ const Ollama: ModelProviderCard = {
tokens: 4096,
vision: true,
},
{
description: 'MiniCPM-V 是 OpenBMB 推出的新一代多模态大模型,具备卓越的 OCR 识别和多模态理解能力,支持广泛的应用场景。',
displayName: 'MiniCPM-V 8B',
enabled: true,
id: 'minicpm-v:8b',
tokens: 128_000,
vision:true,
},
{
description: 'MiniCPM-V 是 OpenBMB 推出的新一代多模态大模型,具备卓越的 OCR 识别和多模态理解能力,支持广泛的应用场景。',
displayName: 'MiniCPM-V 8B',
enabled: true,
id: 'minicpm-v',
tokens: 128_000,
vision:true,
},
],
defaultShowBrowserRequest: true,
description:
Expand Down

0 comments on commit f9c26de

Please sign in to comment.