Back to Models

Qwen3-VL-32B-Instruct

qwen/qwen3-vl-32b-instruct
Qwen Chat

Description

Qwen3-VL-32B-Instruct by Qwen. This model supports chat capabilities. Variant: Instruct.

Specifications

Context Length:
262144
Variant:
Instruct
Parameters:
32B

Pricing

Input Cost:
$0.1000/100K tokens
Output Cost:
$0.3000/100K tokens

Usage Example

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.yourproxy.com/v1",
  apiKey: process.env.PROXY_KEY,
});

const completion = await client.chat.completions.create({
  model: "qwen/qwen3-vl-32b-instruct",
  messages: [{ role: "user", content: "Hello!" }],
});