fix: QUALITY_THRESHOLD 0.5→0.3, prompt scoring más generoso
Build & Deploy ResearchOwl / build-and-push (push) Successful in 5s

This commit is contained in:
ChemaVX
2026-05-04 10:35:08 +00:00
parent 0d8aee63be
commit e5b77ad72d
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ class Settings(BaseSettings):
# Processing
chunk_size: int = Field(800, env="CHUNK_SIZE") # tokens per chunk
chunk_overlap: int = Field(100, env="CHUNK_OVERLAP")
quality_threshold: float = Field(0.5, env="QUALITY_THRESHOLD") # 0-1, chunks below discarded
quality_threshold: float = Field(0.3, env="QUALITY_THRESHOLD") # 0-1, chunks below discarded
# App
log_level: str = Field("INFO", env="LOG_LEVEL")