Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
VietCat
/
FBChatBot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7f14d4e
FBChatBot
/
app
/
health.py
VietCat
init project using Cursor
dbb6988
about 1 year ago
Raw
Download with hf CLI
Copy download link
History
Blame
131 Bytes
from
fastapi
import
APIRouter
router = APIRouter()
@router.get(
"/healthz"
)
async
def
health_check
():
return
{
"status"
:
"ok"
}