feat: alerta de coste — aviso si sesión supera COST_ALERT_THRESHOLD
Build & Deploy ResearchOwl / build-and-push (push) Successful in 5s

This commit is contained in:
ChemaVX
2026-05-06 07:23:11 +00:00
parent 82e614e285
commit 279475a175
2 changed files with 18 additions and 0 deletions
+3
View File
@@ -33,6 +33,9 @@ class Settings(BaseSettings):
chunk_overlap: int = Field(100, env="CHUNK_OVERLAP")
quality_threshold: float = Field(0.3, env="QUALITY_THRESHOLD") # 0-1, chunks below discarded
# Alerts
cost_alert_threshold: float = Field(0.15, env="COST_ALERT_THRESHOLD")
# App
log_level: str = Field("INFO", env="LOG_LEVEL")