● Qwen · chat
Qwen3 32B
SAMPLE: Alibaba's dense 32B model with switchable thinking mode.
Input / 1M tokens$0.10
Output / 1M tokens$0.30
Context40K
Example: 1M input + 1M output tokens = $0.40
Call Qwen3 32B
OpenAI-compatible. Use any OpenAI SDK with the Keyra base URL and your key.
curl
curl https://api.keyra.example/v1/chat/completions \
-H "Authorization: Bearer $KEYRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "qwen3-32b", "messages": [{"role": "user", "content": "Hello"}]}'Python · openai SDK
import os
from openai import OpenAI
client = OpenAI(base_url="https://api.keyra.example/v1", api_key=os.environ["KEYRA_API_KEY"])
reply = client.chat.completions.create(
model="qwen3-32b",
messages=[{"role": "user", "content": "Hello"}],
)
print(reply.choices[0].message.content)Related models
| Model | Creator | Type | Context | Input / 1M | Output / 1M |
|---|---|---|---|---|---|
| Gemma 3 27B | chat | 128K | $0.09 | $0.17 | |
| Mistral Small 3.2 | Mistral | chat | 128K | $0.06 | $0.18 |
| Llama 3.3 70B | Meta | chat | 128K | $0.23 | $0.40 |