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:
Arko006
/
toxipredict-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
73a5bc0
toxipredict-api
/
routes
/
health.py
Arko006
Upload routes/health.py with huggingface_hub
f6bd6dd
verified
about 1 month ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
179 Bytes
from
fastapi
import
APIRouter
router = APIRouter()
@router.get(
"/api/health"
)
async
def
health
():
return
{
"status"
:
"ok"
,
"service"
:
"ToxiPredict API"
,
"version"
:
"1.0.0"
}