mirror of
https://github.com/tcsenpai/suggestoor.git
synced 2025-06-03 01:40:16 +00:00
13 lines
466 B
Plaintext
13 lines
466 B
Plaintext
FOLDERS=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
|
|
|
|
# OLLAMA settings
|
|
OLLAMA_HOST=http://localhost:11434
|
|
# NOTE On the model: you should use this model as it's tested
|
|
# or models with higher params than 8b anyway.
|
|
# You can download this model with:
|
|
# ollama pull llama3.1:8b-instruct-q4_K_M
|
|
OLLAMA_MODEL=llama3.1:8b-instruct-q4_K_M
|
|
EMBEDDING_MODEL=nomic-embed-text
|
|
|
|
# Vector search parameters
|
|
SIMILARITY_K=8 # Number of similar chunks to retrieve |