Merge pull request #306 from cbcoutinho/rag-evaluation

feat: RAG evaluation framework with performance improvements
This commit is contained in:
Chris Coutinho
2025-11-16 11:17:41 +01:00
committed by GitHub
27 changed files with 3044 additions and 301 deletions
@@ -39,7 +39,12 @@ class HealthCheckFilter(logging.Filter):
message = record.getMessage()
return not any(
endpoint in message
for endpoint in ["/health/live", "/health/ready", "/metrics"]
for endpoint in [
"/health/live",
"/health/ready",
"/metrics",
"/app/vector-sync/status",
]
)