{
"model": "qwen3.8-27b",
"messages": [
{
"role": "user",
"content": "你好,请简单介绍你自己"
}
],
"temperature": 0.7,
"stream": false
}curl --location 'https://www.gztcnetwork.com/api/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data '{
"model": "qwen3.8-27b",
"messages": [
{
"role": "user",
"content": "你好,请简单介绍你自己"
}
],
"temperature": 0.7,
"stream": false
}'{
"id": "chatcmpl-xxxx1234",
"object": "chat.completion",
"created": 1758000000,
"model": "qwen3.8-27b",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "你好,我是通义千问3.8-27B大模型,我可以帮你完成问答、文案创作、逻辑推理等任务。"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 12,
"completion_tokens": 34,
"total_tokens": 46
}
}