From 9352f2fca04c4443ebbb9f07d2ea1f0b0fae5e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kr=C3=BCmel=20Branko?= Date: Wed, 24 Dec 2025 20:35:14 +0100 Subject: [PATCH] fix(config): add missing logs_path/docs_path to Settings --- app/config.py | 4 ++++ 1 file changed, 4 insertions(+) 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"