fischer-agentkit/src/agentkit/server/routes/health.py

11 lines
192 B
Python

"""Health check route"""
from fastapi import APIRouter
router = APIRouter(tags=["health"])
@router.get("/health")
async def health_check():
return {"status": "ok", "version": "2.0.0"}