Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
VietCat
/
FBChatBot
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
FBChatBot
/
app
/
health.py
VietCat
init project using Cursor
dbb6988
21 days 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"
}