curl --location --request POST 'https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions' \
--header 'Authorization: Bearer {{DASHSCOPE_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen-long",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{
"role": "system",
"content": "{\"content\": \"百炼X1 搭载6.7英寸1440 x 3200像素超清屏幕...\n\", \"file_type\": \"docx\", \"filename\": \"百炼系列手机产品介绍\", \"title\": \"百炼手机产品介绍\"}"
},
{"role": "user", "content": "文章讲了什么?"}
],
"stream": true,
"stream_options": {
"include_usage": true
}
}'