Authorization: Bearer ********************{
"model": "qwen3-8b",
"enable_thinking": true,
"stream": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "How's the weather in Hangzhou?."
}
]
}
],
"tools": [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get weather of a location, the user should supply a location first.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
}
},
"required": [
"location"
]
}
}
}
]
}curl --location --request POST 'https://api.toiotech.com/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen3-8b",
"enable_thinking": true,
"stream": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "How'\''s the weather in Hangzhou?."
}
]
}
],
"tools": [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get weather of a location, the user should supply a location first.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
}
},
"required": [
"location"
]
}
}
}
]
}'{
"choices": [
{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "你好!很高兴认识你 😊\n\n我是一个热爱学习、乐于助人的AI助手,我的中文名是通义千问,英文名是Qwen。我的使命是为你提供专业、准确、有见地的建议,无论你有什么问题——无论是学习、工作、生活、科技、文化、情感,还是只是想闲聊几句,我都会尽我所能为你提供帮助。\n\n我擅长:\n🔹 多轮对话与上下文理解\n🔹 内容创作(写故事、公文、邮件、剧本等)\n🔹 逻辑推理与编程\n🔹 多语言支持(中英日韩德法西葡俄等)\n🔹 表达观点与玩游戏\n\n我知识广博,持续更新至2024年,能帮你查资料、理思路、找灵感、解难题。最重要的是——我耐心、友善、不评判,随时等你来聊!\n\n有什么我可以帮你的吗?🌟\n\n期待和你一起探索、学习、成长!",
"role": "assistant"
}
}
],
"created": 1767063675,
"id": "chatcmpl-d204dc20-6df9-9257-a3b3-2b09958ad555",
"model": "qwen3-max-preview",
"object": "chat.completion",
"usage": {
"completion_tokens": 209,
"prompt_tokens": 42,
"total_tokens": 251
}
}