All models

Alibaba

Qwen3-VL Embedding 2B

About

Qwen3-VL Embedding 2B is a 2B open-weight model from Alibaba. Multimodal embedding model for text, image, and video inputs. It accepts text, images, and video. Context window is 8K. License is Apache-2.0. Released January 7, 2026.

  • Parameters

    2B

    Published parameter count.

  • Context window

    8K

    Tokens of context on a request.

  • License

    Apache-2.0

    License on the weights.

Pricing

Token rates are US dollars per 1M tokens. Image rates are per 1K images. Audio rates are per 1M audio seconds.

RatePrice
Input / 1M$0.013
Cached input / 1M$0.013
Output / 1M$0

Compare

Qwen3-VL Embedding 2B is the only embedding model in the catalog. The other rows take similar inputs and do a different job.

ModelWhat it doesPriceParametersContext
Qwen3-VL Embedding 2BMultimodal embedding model for text, image, and video inputs.$0.013 / 1M input2B8K
PP-OCRv6PaddleOCR PP-OCRv6 medium text detection and recognition; scene OCR JSONL on image chat; text returns plain text; document_url fan-out via text.$0.01 / 1M input20M
Qwen3.8 27BReasoning VLM (image + video + text)$0.35 / 1M input27B256K
Gemini 3.5 Flash LiteFastest and cheapest Gemini tier. Multimodal chat; emits no reasoning tokens.$0.30 / 1M input1M

Benchmarks

Published scores for Qwen3-VL Embedding 2B, from the Qwen3-VL-Embedding model card.

Evals
ReadingExample
QualitativeClear structure, grounded in the input
QuantitativeMMEB image: 75.
Cost and performanceLower listed rate, mid-pack latency

Methods

Methods this model serves. Payload shapes are in the docs.

MethodReturns
embedAn embedding vector

Estimate cost

Estimate. An hour of video is 15 frames a minute at 256 tokens a frame, plus the audio in that request, and 500 output tokens a minute.

$4.49

Quick start

Call this model on the OpenAI-compatible gateway. The model id is already filled in.

from openai import OpenAI

client = OpenAI(
    base_url="https://gateway.vlm.run/v1/openai",
    api_key="<VLMRUN_API_KEY>",
)

response = client.embeddings.create(
    model="qwen/qwen3-vl-embedding-2b",
    input="a blue parrot",
)

print(response.data[0].embedding)

Get an API key. Ship vision today.