ogx786 commited on
Commit
8591efd
·
verified ·
1 Parent(s): f840826

Update chatbot_new.py

Browse files
Files changed (1) hide show
  1. chatbot_new.py +1 -1
chatbot_new.py CHANGED
@@ -18,7 +18,7 @@ EMBED_MODEL = "./bge-m3"
18
  OLLAMA_URL = "http://localhost:11434/api/chat"
19
  LLM_MODEL = "qwen3.5:4b"
20
  TOP_K = 4
21
- MIN_SCORE = 0.58 # re-validate against the new embeddings, this was tuned for the old ones
22
  HISTORY_TURNS = 3 # number of past user/assistant exchanges kept for classifier context
23
 
24
 
 
18
  OLLAMA_URL = "http://localhost:11434/api/chat"
19
  LLM_MODEL = "qwen3.5:4b"
20
  TOP_K = 4
21
+ MIN_SCORE = 0.58
22
  HISTORY_TURNS = 3 # number of past user/assistant exchanges kept for classifier context
23
 
24