使用以下 curl 命令调用 API:
curl --location "${host}/v1/chat/completions" \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer sk-e9c0b7e58ab45f3533dfd27318cc0eee" \
--data '{
"stream": true,
"model": "grok-3",
"messages": [{"role": "user", "content": "你好呀!"}]
}'