aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-07-29 14:26:20 +0200
committerFuwn <[email protected]>2025-07-29 14:26:20 +0200
commit93c48911d109c6ea3d9b08d05694f07ebf1e038c (patch)
tree676927ecdf6c6c2347366221c77180bb8b076f16
parentrefactor(umapyai): Move NLP functions to module (diff)
downloadumapyai-93c48911d109c6ea3d9b08d05694f07ebf1e038c.tar.xz
umapyai-93c48911d109c6ea3d9b08d05694f07ebf1e038c.zip
feat(umapyai): Swap default model
-rw-r--r--src/umapyai/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/umapyai/constants.py b/src/umapyai/constants.py
index 9add8ce..207ef8b 100644
--- a/src/umapyai/constants.py
+++ b/src/umapyai/constants.py
@@ -3,6 +3,6 @@ CHROMA_DIRECTORY = "./chromadb"
CHROMA_COLLECTION = "uma_guides"
CHUNK_SIZE = 350 # words
EMBEDDING_MODEL = "all-MiniLM-L6-v2"
-OLLAMA_MODEL = "llama3.2"
+OLLAMA_MODEL = "qwen3:14b"
TOP_K = 4
OLLAMA_URL = "http://localhost:11434"