Alibaba Cloud logo
Alibaba Cloud

Qwen3-VL-Plus

Alibaba Qwen 3.0 vision-language model for strong multimodal understanding

Category Text Model ID qwen3-vl-plus
Model TypeVision-Language Model (VLM)
MultimodalText + Image
Key FeaturesVisual understanding, VQA, multimodal reasoning

ๅฎšไปทไธŽ่ง„ๆ ผ

๐Ÿ’ฐ ๅฎšไปท

่พ“ๅ…ฅ$1 / M tokens
่พ“ๅ‡บ$10 / M tokens

โš™๏ธ ่ง„ๆ ผ

Model TypeVision-Language Model (VLM)
MultimodalText + Image
Key FeaturesVisual understanding, VQA, multimodal reasoning
Best forDocument understanding, chart interpretation, multimodal assistants

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-plus",
    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-plus",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'