FEATURE | VALUE |
---|---|
Context Window (Tokens) | 128K |
Max Output Tokens | - |
Max File Size | - |
Token Generation Speed | ~200 TPS |
Input Token Price | $0.79/1M tokens |
Output Token Price | $0.79/1M tokens |
Tool Use | |
JSON Mode | |
Image Support |
Experience state-of-the-art language understanding and generation with Qwen-2.5-32B with Groq speed:
pip install groq
1from groq import Groq
2client = Groq()
3completion = client.chat.completions.create(
4 model="qwen-2.5-32b",
5 messages=[
6 {
7 "role": "user",
8 "content": "Explain why fast inference is critical for reasoning models"
9 }
10 ]
11)
12print(completion.choices[0].message.content)