Qwen3-VL
Use Alibaba's Qwen3-VL vision-language model through our Serverless Cloud API
Code sample
3
Run the model
import os
import supervision as sv
from inference_sdk import InferenceHTTPClient
image = sv.load_image_from_url("https://media.roboflow.com/quickstart/dog.jpeg")
client = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key=os.environ["ROBOFLOW_API_KEY"],
)
result = client.infer_lmm(
image,
model_id="qwen3vl-2b-instruct",
prompt="Describe this image briefly.",
max_new_tokens=128,
)
print(result["response"])A man in a white t-shirt and red shorts is carrying a beagle dog on his shoulders. The dog is wearing a black harness and is looking forward. The man is walking on a paved path in a residential area with apartment buildings in the background. There is a small garden with green grass and white flowers to the left.
Inference speed
Alias
Latency, 128 tokens (ms)
Tokens/sec
Last updated
Was this helpful?