Qwen3 32b
Qwen3-32B is the latest large language model in the Qwen series with 32.8B parameters. This model uniquely supports seamless switching between thinking mode (for complex logical reasoning, math, and coding) and non-thinking mode (for efficient, general-purpose dialogue). It demonstrates significantly enhanced reasoning capabilities, surpassing previous QwQ and Qwen2.5 instruct models in mathematics, code generation, and commonsense logical reasoning. The model excels in human preference alignment for creative writing, role-playing, and multi-turn dialogues. Additionally, it supports over 100 languages and dialects with strong multilingual instruction following and translation capabilities
Model Capabilities
Accepts (Input)
Generates (Output)
Quick Integration
Python (OpenAI SDK)import os
from openai import OpenAI
client = OpenAI(
base_url="https://helyxai.space/v1/chat/completions",
api_key=os.environ.get("HELYX_API_KEY")
)
response = client.chat.completions.create(
model="Qwen3-32B",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "How do I use this model?"}
],
max_tokens=8192
)
print(response.choices[0].message.content)
Architecture
Context Window
131,072 tokens
Max Input
131,072
Max Output
8,192
Usage Allowances
Free Plan (Default)
50,000 tokens / day
Automatically resets every 24 hours.
Developer Plan
10,000,000 tokens / day