阿里云
Qwen3-VL-Flash
阿里通义千问 3.0 轻量高速视觉语言模型,低延迟高性价比
模型类型视觉语言模型 (VLM)
多模态文本 + 图像
特色能力低延迟、多轮图文对话
定价与规格
💰 定价
输入¥0.15 / M tokens
输出¥1.5 / M tokens
⚙️ 规格
模型类型视觉语言模型 (VLM)
多模态文本 + 图像
特色能力低延迟、多轮图文对话
适用场景实时交互、轻量视觉理解
API 调用示例
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="qwen3-vl-flash",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "qwen3-vl-flash",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'