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