Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TradaAI
/
Chatopus
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Chatopus
/
app
/
health.py
VietCat
init project using Cursor
dbb6988
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
131 Bytes
from
fastapi
import
APIRouter
router = APIRouter()
@router.get(
"/healthz"
)
async
def
health_check
():
return
{
"status"
:
"ok"
}