fix(config): add missing logs_path/docs_path to Settings

This commit is contained in:
2025-12-24 20:35:14 +01:00
parent 3d1126a245
commit 9352f2fca0

View File

@@ -38,6 +38,10 @@ class Settings(BaseSettings):
rag_chunk_size: int = 1000
rag_chunk_overlap: int = 200
rag_collection_prefix: str = "posts"
# File Paths
docs_path: str = "docs"
logs_path: str = "logs"
class Config:
env_file = ".env"