Skip to content

Commit 8a64306

Browse files
authored
Merge pull request #428 from dcSpark/nico/add_minicmp_as_default
Nico/add minicmp as default
2 parents 6893227 + 38171c6 commit 8a64306

File tree

4 files changed

+69
-7
lines changed

4 files changed

+69
-7
lines changed

apps/shinkai-desktop/src-tauri/src/local_shinkai_node/shinkai_node_options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ impl Default for ShinkaiNodeOptions {
242242
starting_num_qr_devices: Some("0".to_string()),
243243
log_all: Some("1".to_string()),
244244
proxy_identity: Some("@@relayer_pub_01.arb-sep-shinkai".to_string()),
245-
rpc_url: Some("https://public.stackup.sh/api/v1/node/arbitrum-sepolia".to_string()),
245+
rpc_url: Some("https://arbitrum-sepolia.blockpi.network/v1/rpc/public".to_string()),
246246
default_embedding_model: Some("snowflake-arctic-embed:xs".to_string()),
247247
supported_embedding_models: Some("snowflake-arctic-embed:xs".to_string()),
248248
shinkai_tools_backend_binary_path: Some(shinkai_tools_backend_binary_path),

apps/shinkai-desktop/src/components/shinkai-node-manager/ollama-models.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
MetaIcon,
2323
MicrosoftIcon,
2424
MistralIcon,
25+
OpenBMBIcon,
2526
} from '@shinkai_network/shinkai-ui/assets';
2627
import { cn } from '@shinkai_network/shinkai-ui/utils';
2728
import { BookOpenText, Database, Star, StarIcon } from 'lucide-react';
@@ -59,6 +60,7 @@ export const OllamaModels = () => {
5960
Google: <GoogleIcon className="h-6 w-6" />,
6061
Meta: <MetaIcon className="h-6 w-6" />,
6162
Mistral: <MistralIcon className="h-6 w-6" />,
63+
OpenBMB: <OpenBMBIcon className="h-6 w-6" />,
6264
};
6365
}, []);
6466

apps/shinkai-desktop/src/lib/shinkai-node-manager/ollama-models.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,21 @@ export const OLLAMA_MODELS: OllamaModel[] = [
8282
provider: 'Mistral',
8383
},
8484
{
85-
model: 'llava-phi3',
86-
tag: '3.8b-mini-q4_0',
87-
name: 'LLaVA Phi 3',
85+
model: 'minicpm-v',
86+
tag: '8b-2.6-fp16',
87+
name: 'MiniCPM-V 2.6',
8888
description:
89-
'A model that can understand and generate both text and images, useful for tasks that require processing both types of data',
89+
'With only 8B parameters, it surpasses widely used proprietary models like GPT-4o mini, GPT-4V, Gemini 1.5 Pro, and Claude 3.5 Sonnet for single image understanding (OpenCompass).',
9090
contextLength: 4000,
91-
quality: OllamaModelQuality.Medium,
91+
quality: OllamaModelQuality.Good,
9292
speed: OllamaModelSpeed.Average,
9393
capabilities: [
9494
OllamaModelCapability.TextGeneration,
9595
OllamaModelCapability.ImageToText,
9696
],
9797
size: 2.9,
9898
fullName: '',
99-
provider: 'Microsoft',
99+
provider: 'OpenBMB',
100100
},
101101
].map((model) => {
102102
model.fullName = `${model.model}:${model.tag}` as const;

0 commit comments

Comments
 (0)