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