Skip to content

Commit

Permalink
Localupdatellm (#118)
Browse files Browse the repository at this point in the history
* llmupdatenumber600

* updatellm700
  • Loading branch information
CtrlAiDel authored Jan 23, 2025
1 parent 2ddb424 commit 4496de6
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions plugins/Ollama/ollamaPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,28 @@ export class OllamaPlugin {
alias: "phi4",
description:
"Phi-4: 14B parameter, cutting-edge open model from Microsoft."
}
},
{
id: 46,
name: "deepseek-r1:1.5b",
alias: "r1:1.5b",
description: "DeepSeek's first-generation reasoning model, r1:1.5b, offering comparable performance to OpenAI-o1."
},
{
id: 47,
name: "deepseek-r1:8b",
alias: "r1:8b",
description: "DeepSeek's first-generation reasoning model, r1:8b, offering comparable performance to OpenAI-o1."
},
{
id: 48,
name: "deepseek-r1:14b",
alias: "r1:14b",
description: "DeepSeek's first-generation reasoning model, r1:14b, offering comparable performance to OpenAI-o1."
}
];

static DefaultModel = OllamaPlugin.Models.find((m) => m.alias === "phi4");
static DefaultModel = OllamaPlugin.Models.find((m) => m.alias === "r1:8b");

/**
* Will check if the prefix contains a model name or id.
Expand Down

0 comments on commit 4496de6

Please sign in to comment.