Check API health and model status
curl https://gsstec-open.hf.space/health
Send chat messages to the AI model
curl -X POST https://gsstec-open.hf.space/chat \
-H "Content-Type: application/json" \
-d '{
"messages": [
{"role": "user", "content": "Hello!"}
]
}'