diff --git a/app/config.py b/app/config.py index 8972604..70eaf93 100644 --- a/app/config.py +++ b/app/config.py @@ -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"