diff options
| author | Fuwn <[email protected]> | 2025-07-29 14:26:20 +0200 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-07-29 14:26:20 +0200 |
| commit | 93c48911d109c6ea3d9b08d05694f07ebf1e038c (patch) | |
| tree | 676927ecdf6c6c2347366221c77180bb8b076f16 | |
| parent | refactor(umapyai): Move NLP functions to module (diff) | |
| download | umapyai-93c48911d109c6ea3d9b08d05694f07ebf1e038c.tar.xz umapyai-93c48911d109c6ea3d9b08d05694f07ebf1e038c.zip | |
feat(umapyai): Swap default model
| -rw-r--r-- | src/umapyai/constants.py | 2 |
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" |