from fastapi import FastAPI from app.api.routes.chunking import router as chunking_router from app.core.config import get_settings settings = get_settings() app = FastAPI(title=settings.app_name) @app.get("/healthz") def healthcheck() -> dict[str, str]: return {"status": "ok"} app.include_router(chunking_router)