为什么选它
- 可用性以实时服务目录为准。
- 价格仅在实时服务目录验证后展示。
Qwen / Alibaba
qwen3-vl-8b
Qwen3 VL 8B 已纳入当前百因智算 Model API 目录。
参数规模
N/A
上下文
N/A
最大输出
N/A
许可证
Proprietary
接口
/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-8b",
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-8b",
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-8b",
"input": [{
"role": "user",
"content": [
{"type":"input_text","text":"Describe the uploaded image"},
{"type":"input_image","image_url":"https://example.com/sample.png"}
]
}]
}'规格与行为
架构
MoE Transformer
厂商
Qwen / Alibaba
上下文
N/A
最大输出
N/A
适用场景
相关模型
返回模型中心