From 52931caf3c795a1548e58b43fa43578ef2e0a1e4 Mon Sep 17 00:00:00 2001 From: itqop Date: Sat, 19 Jul 2025 17:25:13 +0300 Subject: [PATCH] Fix typo --- src/app/routers/ingest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/routers/ingest.py b/src/app/routers/ingest.py index af1ff68..589691d 100644 --- a/src/app/routers/ingest.py +++ b/src/app/routers/ingest.py @@ -26,8 +26,8 @@ def verify_admin_token(authorization: Optional[str] = Header(None)): @router.post("/ingest") async def trigger_ingest(recreate: bool = False, _: bool = Depends(verify_admin_token)): try: - data_dir = "articles_konsol_pro" - platform_file = "data/platform_overview.md" + data_dir = "/app/data" + platform_file = "/app/data/platform_overview.md" persist_dir = settings.chroma_persist_dir if not os.path.exists(data_dir):