DeepSeek uses an OpenAI-compatible chat shape at the HALO/deepseek/v1 base URL.
#Make a request
curl https://api.agihalo.com/deepseek/v1/chat/completions \
-H "Authorization: Bearer $HALO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Hello from HALO"}]
}'#Models
deepseek-chatfor chat workloads.deepseek-reasonerfor reasoning workloads.
#Compatibility
Use an OpenAI-compatible client and change its base URL tohttps://api.agihalo.com/deepseek/v1. The HALO client key is sent as a bearer token.