File size: 301 Bytes
9459cd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"}