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):