Updating RAG SIMILARITY_THRESHOLD to 0.05

This commit is contained in:
Cole Medin 2025-09-20 13:57:13 -05:00
parent b1085a53df
commit e9c08d2fe9

View File

@ -14,7 +14,7 @@ from ...config.logfire_config import get_logger, safe_span
logger = get_logger(__name__) logger = get_logger(__name__)
# Fixed similarity threshold for vector results # Fixed similarity threshold for vector results
SIMILARITY_THRESHOLD = 0.15 SIMILARITY_THRESHOLD = 0.05
class BaseSearchStrategy: class BaseSearchStrategy: