fix: correct embedding model name from l2 to v2

This commit is contained in:
2026-02-16 11:32:06 -06:00
parent d407a4bd9d
commit 398e1ce334

View File

@@ -17,7 +17,7 @@ from ai.parser import client
# Configuration
EPUBS_DIRECTORY = os.getenv("KNOWLEDGE_EMBEDDINGS_DIR", "./bot/data")
TOP_K_CHUNKS = 5
EMBEDDING_MODEL = "sentence-transformers/all-minilm-l12-l2"
EMBEDDING_MODEL = "sentence-transformers/all-minilm-l12-v2"
CHAT_MODEL = "deepseek/deepseek-v3.2"
EMBEDDING_EXTENSION = ".embeddings.json"