Skip to content

Commit d91d0b8

Browse files
authored
Merge pull request elizaOS#3953 from AIFlowML/fix-plugin-local-ai
fix: plugin-local-ai
2 parents 619a63f + 9163d6c commit d91d0b8

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

packages/plugin-local-ai/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,12 @@ class LocalAIManager {
184184
// Set paths for models
185185
this.modelPath = path.join(
186186
this.modelsDir,
187-
"DeepSeek-R1-Distill-Qwen-1.5B-Q8_0.gguf",
187+
"DeepHermes-3-Llama-3-3B-Preview-q4.gguf",
188188
);
189189

190190
this.mediumModelPath = path.join(
191191
this.modelsDir,
192-
"DeepSeek-R1-Distill-Qwen-7B-Q5_K_M.gguf",
192+
"DeepHermes-3-Llama-3-8B-q4.gguf",
193193
);
194194

195195
// Set up cache directory

packages/plugin-local-ai/src/types.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -109,24 +109,24 @@ export interface ModelSpecs {
109109
*/
110110
export const MODEL_SPECS: ModelSpecs = {
111111
small: {
112-
name: "DeepSeek-R1-Distill-Qwen-1.5B-Q8_0.gguf",
113-
repo: "unsloth/DeepSeek-R1-Distill-Qwen-1.5B-GGUF",
114-
size: "1.5B",
115-
quantization: "Q8_0",
112+
name: "DeepHermes-3-Llama-3-3B-Preview-q4.gguf",
113+
repo: "NousResearch/DeepHermes-3-Llama-3-3B-Preview-GGUF",
114+
size: "3B",
115+
quantization: "Q4_0",
116116
contextSize: 8192,
117117
tokenizer: {
118-
name: "deepseek-ai/deepseek-llm-7b-base",
118+
name: "NousResearch/DeepHermes-3-Llama-3-3B-Preview",
119119
type: "llama",
120120
},
121121
},
122122
medium: {
123-
name: "DeepSeek-R1-Distill-Qwen-7B-Q8_0.gguf",
124-
repo: "bartowski/DeepSeek-R1-Distill-Qwen-7B-GGUF",
125-
size: "7B",
126-
quantization: "Q8_0",
123+
name: "DeepHermes-3-Llama-3-8B-q4.gguf",
124+
repo: "NousResearch/DeepHermes-3-Llama-3-8B-Preview-GGUF",
125+
size: "8B",
126+
quantization: "Q4_0",
127127
contextSize: 8192,
128128
tokenizer: {
129-
name: "deepseek-ai/deepseek-llm-7b-base",
129+
name: "NousResearch/DeepHermes-3-Llama-3-8B-Preview",
130130
type: "llama",
131131
},
132132
},

0 commit comments

Comments
 (0)