Spaces:
Sleeping
Sleeping
| 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) | |
| def health(): | |
| return {"status": "ok"} | |