For the complete documentation index, see llms.txt. This page is also available as Markdown.

Qwen3.5

Use Alibaba's Qwen3.5-VL vision-language model through Workflows, Dedicated Deployments, or self-hosted Inference

Qwen3.5 is Alibaba's vision-language model family. It accepts an image and a text prompt and returns a text response. Two pretrained checkpoints are available:

Alias
Parameters

qwen3_5-0.8b

0.8B

qwen3_5-2b

2B

Accuracy

Headline vision-language benchmarks (non-thinking mode) from the official model cards (0.8B, 2B):

Benchmark

qwen3_5-0.8b

qwen3_5-2b

MMMU

47.4

64.2

MathVista (mini)

58.6

73.9

MMBench (EN v1.1)

68.0

81.3

Inference speed

Latency measured with Roboflow Inference on 1x NVIDIA L4, batch size 1, generating exactly 128 tokens with greedy decoding from a fixed prompt. Latency scales with output length, so use tokens/sec to estimate other lengths.

Alias
Latency, 128 tokens (ms)
Tokens/sec

qwen3_5-0.8b

3307

39

qwen3_5-2b

3688

35

Using Qwen 3.5 VL via Workflows

Qwen 3.5 VL is available as a preconfigured Workflow on the "Open-Source Models" tab of the Models page. Select "Qwen VL", choose a model variant and prompt, then click "Test API" to fork the Workflow into your Workspace and start running inference.

The Workflow uses the unified qwen_vlm@v1 block, which supports multiple Qwen VL generations:

Model
Parameters

Qwen 3.5 VL 0.8B

0.8B

Qwen 3.5 VL 2B

2B

Qwen 3 VL 2B

2B

Qwen 2.5 VL 7B

7B

Using Qwen 3.5 VL via Inference SDK

Direct Inference SDK calls to Qwen3.5 require a Dedicated Deployment or self-hosted Inference. For hosted access, use the Workflow path described above.

1

Get your API Key

Create a Roboflow account, find your key on the Roboflow API settings page and make it available to your shell:

2

Install the dependencies

Install the Inference SDK:

3

Run the model

Set api_url to your Dedicated Deployment URL or a local Inference server.

The code above prints the model response to the terminal:

Set api_url to match your deployment target:

You can train your own Qwen3.5 checkpoint on Roboflow and call it by its per-model {workspace}/{model-slug} ID (see Versions, Trainings, and Models).

Use with Inference (self-hosted)

Qwen3.5 can also be loaded directly with the inference package instead of being called over HTTP.

1

Install the package

Use inference-gpu[transformers] on a GPU machine.

2

Run the model

Qwen3.5 also supports a "thinking" mode, in which the model generates reasoning tokens before answering.

Execution modes in Workflows

When used in a Workflow, Qwen3.5 runs in one of two modes:

  • Local execution: the model runs on your Inference server (GPU recommended).

  • Remote execution: the model is invoked over HTTP on a remote Inference server.

Last updated

Was this helpful?