Back to modelsBuy Plan
Alibaba
通义 Qwen3.7 Plus
系列,在强大文本能力的基础上全面升级了视觉-语言能力,同时保持了在编码、工具使用和生产力工作流方面的完整智能体能力。其核心特色为多模态交互混合智能体能力,能够感知真实世界场景、读取屏幕并操作 GUI、基于视觉参考生成代码、端到端导航移动应用。
Quick Stats
Context
1000K
Max Output
66K
Provider
Alibaba
Specs
1
Modalities
in textin imageout text
Specs & List Price (per 1M tokens)
Quality
Input $0.298507Output $1.19403
Recommended Plan
通义 Qwen3.7 Plus Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
qwen/qwen3.7-pluscURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen/qwen3.7-plus",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="qwen/qwen3.7-plus",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.