RedPill
qwen logo

Qwen: Qwen2.5 VL 72B Instruct

GPU TEE
Chat
qwen/qwen2.5-vl-72b-instruct
Created 10/3/2025|128K context|$0.59/M input tokens|$0.59/M output tokens

Qwen2.5-VL is proficient in recognizing common objects such as flowers, birds, fish, and insects. It is also highly capable of analyzing texts, charts, icons, graphics, and layouts within images.

Providers for Qwen: Qwen2.5 VL 72B Instruct

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

phala logo
phala
Input Price
$0.59
Output Price
$0.59
Total Context
128K

API

RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

fetch("https://api.redpill.ai/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "qwen/qwen2.5-vl-72b-instruct",
    "messages": [
      {
        "role": "user",
        "content": "What is the meaning of life?"
      }
    ]
  })
})