Qwen

Qwen / Alibaba

qwen3-vl-8b

Qwen3 VL 8B

Qwen3 VL 8B 已纳入当前百因智算 Model API 目录。

模型详情可用MoE Transformer

参数规模

N/A

上下文

N/A

最大输出

N/A

许可证

Proprietary

接口

/v1/responses 多模态

接入状态

可用

为什么选它

  • 可用性以实时服务目录为准。
  • 价格仅在实时服务目录验证后展示。

价格与对比

该模型当前未公布公开价格,可联系团队确认接入与报价。
层级公开价缓存说明
在线调用联系获取报价联系获取报价当前公开价格
批处理联系获取报价联系获取报价批处理价格开放后会同步显示

快速开始

兼容常见接入方式,切换基础地址后即可开始测试。

Python
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)
JavaScript
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
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

适用场景

qwen
available

相关模型

返回模型中心
Qwen3 VL 8B | 百因智算