Aurixel
Models/Groq/groq-compound
groq
Groq

Groq Compound

Text
Context
131.1K
Input
$0.1
/M tokens
Output
$0.32
/M tokens

Groq Compound is Groq's agentic system that pairs a fast open model with built-in server-side tools (web search and code execution) to answer questions that need live data or computation.

Quick start

python
from openai import OpenAI

client = OpenAI(
  api_key="$CK_KEY",
  base_url="https://conduit-api.aurixel.ai/v1",
)
resp = client.chat.completions.create(
  model="groq-compound",
  messages=[{"role": "user", "content": "Hi!"}],
)
print(resp.choices[0].message.content)