Compound-beta leverages Llama 4 Scout for core reasoning along with Llama 3.3 70B to help with routing and tool use.
FEATURE | VALUE |
---|---|
Context Window (Tokens) | 128K |
Max Output Tokens | 8,192 |
Max File Size | N/A |
Token Generation Speed | 350 tokens per second |
Input Token Price | Varies. Pricing is based on input tokens to underlying models (while in preview) |
Output Token Price | Varies. Pricing is based on output tokens from underlying models (while in preview) |
Tool Use | |
Agentic Tooling | |
JSON Mode | |
Image Support |
Automatically access up-to-date information from the web using the built-in web search tool powered by Tavily.
Execute Python code automatically using the code execution tool powered by E2B.
Experience the capabilities of compound-beta
on Groq:
pip install groq
from groq import Groq
client = Groq()
completion = client.chat.completions.create(
model="compound-beta",
messages=[
{
"role": "user",
"content": "Explain why fast inference is critical for reasoning models"
}
]
)
print(completion.choices[0].message.content)