Groq

Compound Changelog

Track the latest updates, features, and changes to Groq's Compound systems.

2026-06-12

  • Deprecated the built-in browser_automation tool. The tool has been retired and is no longer available on Compound systems. Requests that include browser_automation in compound_custom.tools.enabled_tools are still accepted for backward compatibility but have no effect. For web research, use the web_search and visit_website built-in tools; to automate full browser sessions, use the standalone Anchor Browser integration.

2025-07-23


To use a specific version, pass the version in the Groq-Model-Version header:

curl
curl -X POST "https://api.groq.com/openai/v1/chat/completions" \
  -H "Authorization: Bearer $GROQ_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Groq-Model-Version: latest" \
  -d '{
    "model": "compound-beta",
    "messages": [{"role": "user", "content": "What is the weather today?"}]
  }'

Was this page helpful?