aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.tsx2
-rw-r--r--src/ollama.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main.tsx b/src/main.tsx
index a544760..c9ecfb8 100644
--- a/src/main.tsx
+++ b/src/main.tsx
@@ -27,7 +27,7 @@ let settings: SettingSchemaDesc[] = [
type: "string",
title: "LLM Model",
description: "Set your desired model to use ollama",
- default: "mistral:instruct"
+ default: "llama3.1:8b"
},
{
key: "shortcut",
diff --git a/src/ollama.tsx b/src/ollama.tsx
index fb1c7fa..ecc7565 100644
--- a/src/ollama.tsx
+++ b/src/ollama.tsx
@@ -134,7 +134,7 @@ async function promptLLM(prompt: string) {
}
export async function defineWord(word: string) {
- askAI(`What's the defintion of ${word}?`, "")
+ askAI(`What's the definition of ${word}?`, "")
}
type ContextType = 'block' | 'page'