AlibabaPaidOperational
Qwen2 Vl 72b Instruct
API model name: qwen2-vl-72b-instruct
Qwen2 Vl 72b Instruct is Alibaba's image generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Resolutions: 1:1, 16:9, 9:16
Qualities: standard
Specifications
- Provider
- Alibaba
- Type
- image generation model
What is Qwen2 Vl 72b Instruct used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
Happyhorse 1.0 I2vAlibaba · $1.82 / 1MHappyhorse 1.0 R2vAlibaba · $1.82 / 1MHappyhorse 1.0 T2vAlibaba · $1.82 / 1MHappyhorse 1.0 Video EditAlibaba · $1.82 / 1MQvq MaxAlibaba · $2.29 / 1MQvq Max LatestAlibaba · $0.77 / 1MQwen Coder PlusAlibaba · $0.55 / 1MQwen Coder PlusAlibaba · $0.55 / 1MQwen Coder Plus LatestAlibaba · $0.55 / 1MQwen Coder TurboAlibaba · $0.31 / 1MQwen Coder TurboAlibaba · $0.31 / 1MQwen Coder Turbo LatestAlibaba · $0.31 / 1M
Qwen2 Vl 72b Instruct — frequently asked questions
- How much does Qwen2 Vl 72b Instruct cost?
- Qwen2 Vl 72b Instruct is billed per generation rather than per token. See the pricing page for the current rate.
- What can Qwen2 Vl 72b Instruct do?
- Qwen2 Vl 72b Instruct is Alibaba's image generation model, accessible through the Api.Airforce API.
- Is Qwen2 Vl 72b Instruct free to use?
- Qwen2 Vl 72b Instruct is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Qwen2 Vl 72b Instruct via the API?
- Qwen2 Vl 72b Instruct is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID qwen2-vl-72b-instruct with your Api.Airforce API key.
- Who makes Qwen2 Vl 72b Instruct?
- Qwen2 Vl 72b Instruct is Alibaba's image generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Qwen2 Vl 72b Instruct via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass qwen2-vl-72b-instruct as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen2-vl-72b-instruct",
"prompt": "a red panda coding"
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
img = client.images.generate(model="qwen2-vl-72b-instruct", prompt="a red panda coding")
print(img.data[0].url)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const img = await client.images.generate({ model: "qwen2-vl-72b-instruct", prompt: "a red panda coding" });
console.log(img.data[0].url);