curl --location '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "qwen3.8-flash",
"messages": [
{
"role": "user",
"content": "你是谁"
}
],
"stream": false,
"enable_thinking": true
}'