feat: initial release - Hunzi agent framework v0.1.0

This commit is contained in:
2026-07-15 16:37:00 +08:00
parent 13d44a0844
commit 87b2029b80
+9
View File
@@ -0,0 +1,9 @@
"""健康检查"""
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def health():
return {"status": "ok", "version": "0.1.0", "name": "Hunzi"}