Spaces:
Sleeping
Sleeping
File size: 209 Bytes
fc10d08 | 1 2 3 4 5 6 7 8 9 10 11 | from fastapi import FastAPI
from app.api.router import router
app = FastAPI(title="CriticalThinking API")
app.include_router(router)
@app.get("/health")
async def health():
return {"status": "healthy"}
|