FEATURE | VALUE |
---|---|
Context Window (Tokens) | 128K |
Max Output Tokens | - |
Max File Size | - |
Token Generation Speed | ~400 TPS |
Input Token Price | $0.29 per million tokens |
Output Token Price | $0.39 per million tokens |
Tool Use | |
JSON Mode | |
Image Support |
Experience the world's fastest breakthrough reasoning capabilities with qwen-qwq-32b
on Groq:
pip install groq
from groq import Groq
client = Groq()
completion = client.chat.completions.create(
model="qwen-qwq-32b",
messages=[
{
"role": "user",
"content": "Explain why fast inference is critical for reasoning models"
}
]
)
print(completion.choices[0].message.content)