from fastapi import FastAPI from app.api.routes import router app = FastAPI( title="AI Video Renderer Engine", description="Template-based video rendering API for AI Agents.", version="0.1.0", ) app.include_router(router) @app.get("/health") def health(): return {"status": "ok"}