Summary
Groq's production compound AI models groq/compound and groq/compound-mini are missing from the catalog. These replaced the earlier compound-beta and compound-beta-mini IDs (which were also never added). They are agentic systems with built-in web search, code execution, and Wolfram Alpha, accessible via Groq's standard chat completions API.
Note: These models use pass-through pricing to underlying models, so they have no fixed per-token cost. The catalog entry should omit cost fields.
Missing Models
| Model ID |
Context Window |
Max Output |
Provider |
groq/compound |
131,072 |
8,192 |
groq |
groq/compound-mini |
131,072 |
8,192 |
groq |
Verification
| Check |
Status |
Detail |
| Cross-source |
✅ |
Verified from (1) Groq models page and (2) Groq compound docs — model IDs, context window, and capabilities consistent |
| Already in catalog |
❌ |
grep for compound in model_list.json returns no matches |
| Duplicate check |
✅ |
No open issue references groq/compound |
| ID format |
✅ |
Uses Groq's groq/ prefix convention |
Verification Notes
| Field |
Source |
Notes |
Model IDs groq/compound, groq/compound-mini |
Groq models page |
Listed as production models (not beta) |
| 131K context, 8K output |
Groq models page |
Both models share limits |
| Pass-through pricing |
Groq compound docs |
No fixed per-token pricing |
Local Files Inspected
packages/proxy/schema/model_list.json — no entry for compound, groq/compound, compound-beta, or any compound variant
{
"kind": "missing_model",
"provider": "groq",
"models": ["groq/compound", "groq/compound-mini"],
"status": "active",
"model_specs": {
"groq/compound": {
"format": "openai",
"flavor": "chat",
"max_input_tokens": 131072,
"max_output_tokens": 8192,
"available_providers": ["groq"]
},
"groq/compound-mini": {
"format": "openai",
"flavor": "chat",
"max_input_tokens": 131072,
"max_output_tokens": 8192,
"available_providers": ["groq"]
}
},
"source_urls": [
"https://console.groq.com/docs/models",
"https://console.groq.com/docs/compound"
]
}
Summary
Groq's production compound AI models
groq/compoundandgroq/compound-miniare missing from the catalog. These replaced the earliercompound-betaandcompound-beta-miniIDs (which were also never added). They are agentic systems with built-in web search, code execution, and Wolfram Alpha, accessible via Groq's standard chat completions API.Note: These models use pass-through pricing to underlying models, so they have no fixed per-token cost. The catalog entry should omit cost fields.
Missing Models
groq/compoundgroq/compound-miniVerification
compoundinmodel_list.jsonreturns no matchesgroq/compoundgroq/prefix conventionVerification Notes
groq/compound,groq/compound-miniLocal Files Inspected
packages/proxy/schema/model_list.json— no entry forcompound,groq/compound,compound-beta, or any compound variant{ "kind": "missing_model", "provider": "groq", "models": ["groq/compound", "groq/compound-mini"], "status": "active", "model_specs": { "groq/compound": { "format": "openai", "flavor": "chat", "max_input_tokens": 131072, "max_output_tokens": 8192, "available_providers": ["groq"] }, "groq/compound-mini": { "format": "openai", "flavor": "chat", "max_input_tokens": 131072, "max_output_tokens": 8192, "available_providers": ["groq"] } }, "source_urls": [ "https://console.groq.com/docs/models", "https://console.groq.com/docs/compound" ] }