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