qwen logo

Qwen: Qwen3 32B

GPU TEE
Chat
qwen/qwen3-32b
Created May 26, 2026|41K context|$0.12/M input tokens|$0.50/M output tokens
Intel TDXNVIDIA CC

Qwen3-32B is a dense 32.8B parameter causal language model from the Qwen3 series, optimized for both complex reasoning and efficient dialogue. It supports seamless switching between a thinking mode for complex tasks and a standard mode for general dialogue. Served as a TEE deployment via Chutes.

Providers for Qwen: Qwen3 32B

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

chutes logo
chutes
Total Context
41K

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/qwen3-32b",
    "messages": [
      {
        "role": "user",
        "content": "What is the meaning of life?"
      }
    ]
  })
})