为什么选它
- 仅在工作区审核通过或引导交付后开通。
- 价格仅在实时服务目录验证后展示。
Qwen / Alibaba
qwen3-vl-32b
Qwen3 VL 32B 可通过审核开通或引导交付接入。
参数规模
32B vision
上下文
262K
最大输出
N/A
许可证
Apache-2.0
接口
/v1/responses 多模态
接入状态
审核开通
为什么选它
价格与对比
from openai import OpenAI
client = OpenAI(
base_url="https://api.batchin.tech/v1",
api_key="BATCHIN_API_KEY"
)
resp = client.responses.create(
model="qwen3-vl-32b",
input=[{
"role": "user",
"content": [
{"type": "input_text", "text": "Describe the uploaded image"},
{"type": "input_image", "image_url": "https://example.com/sample.png"}
]
}]
)
print(resp.output_text)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.batchin.tech/v1",
apiKey: process.env.BATCHIN_API_KEY,
});
const resp = await client.responses.create({
model: "qwen3-vl-32b",
input: [{
role: "user",
content: [
{ type: "input_text", text: "Describe the uploaded image" },
{ type: "input_image", image_url: "https://example.com/sample.png" }
],
}],
});
console.log(resp.output_text);curl https://api.batchin.tech/v1/responses \ -H "Authorization: Bearer ***" \ -H "Content-Type: application/json" \ -d '{
"model": "qwen3-vl-32b",
"input": [{
"role": "user",
"content": [
{"type":"input_text","text":"Describe the uploaded image"},
{"type":"input_image","image_url":"https://example.com/sample.png"}
]
}]
}'规格与行为
架构
多模态 Transformer
厂商
Qwen / Alibaba
上下文
262K
最大输出
N/A
适用场景
相关模型
返回模型中心