File tree 2 files changed +12
-12
lines changed
packages/plugin-local-ai/src
2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -184,12 +184,12 @@ class LocalAIManager {
184
184
// Set paths for models
185
185
this . modelPath = path . join (
186
186
this . modelsDir ,
187
- "DeepSeek-R1-Distill-Qwen-1.5B-Q8_0 .gguf" ,
187
+ "DeepHermes-3-Llama-3-3B-Preview-q4 .gguf" ,
188
188
) ;
189
189
190
190
this . mediumModelPath = path . join (
191
191
this . modelsDir ,
192
- "DeepSeek-R1-Distill-Qwen-7B-Q5_K_M .gguf" ,
192
+ "DeepHermes-3-Llama-3-8B-q4 .gguf" ,
193
193
) ;
194
194
195
195
// Set up cache directory
Original file line number Diff line number Diff line change @@ -109,24 +109,24 @@ export interface ModelSpecs {
109
109
*/
110
110
export const MODEL_SPECS : ModelSpecs = {
111
111
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 " ,
116
116
contextSize : 8192 ,
117
117
tokenizer : {
118
- name : "deepseek-ai/deepseek-llm-7b-base " ,
118
+ name : "NousResearch/DeepHermes-3-Llama-3-3B-Preview " ,
119
119
type : "llama" ,
120
120
} ,
121
121
} ,
122
122
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 " ,
127
127
contextSize : 8192 ,
128
128
tokenizer : {
129
- name : "deepseek-ai/deepseek-llm-7b-base " ,
129
+ name : "NousResearch/DeepHermes-3-Llama-3-8B-Preview " ,
130
130
type : "llama" ,
131
131
} ,
132
132
} ,
You can’t perform that action at this time.
0 commit comments