这里是光环自己的接口说明页面。
https://apihalo.cn/v1POST https://apihalo.cn/v1/chat/completionsGET https://apihalo.cn/v1/models
curl https://apihalo.cn/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
curl https://apihalo.cn/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-5.4",
"messages": [
{"role": "user", "content": "你好"}
]
}'
/v1 下。