Groq API Inference
by @ivangdavila
Build and debug Groq API chat and speech workflows with low-latency routing, structured outputs, and production-safe patterns.
clawhub install groq-apiπ About This Skill
name: Groq API Inference slug: groq-api version: 1.0.0 homepage: https://clawic.com/skills/groq-api description: Build and debug Groq API chat and speech workflows with low-latency routing, structured outputs, and production-safe patterns. changelog: Initial release with Groq API workflows, model routing guidance, and troubleshooting playbooks for chat and speech. metadata: {"clawdbot":{"emoji":"β‘","requires":{"bins":["curl","jq"],"env":["GROQ_API_KEY"]},"os":["linux","darwin","win32"]}}
Setup
On first use, read setup.md for activation preferences, credential verification, and default workflow setup.
When to Use
User needs to build, integrate, or troubleshoot Groq API inference for chat, tool calling, or speech transcription. Agent handles request shaping, model routing, failure recovery, and safe production patterns.
Architecture
Memory lives in ~/groq-api/. See memory-template.md for structure.
~/groq-api/
βββ memory.md # Status, activation preference, and defaults
βββ requests/ # Reusable payload snippets
βββ logs/ # Optional debug snapshots
βββ experiments/ # Prompt/model A-B notes
Quick Reference
Use these files as decision aids, not as static docs: pick the smallest file that resolves the current blocker.
| Topic | File |
|-------|------|
| Setup process | setup.md |
| Memory template | memory-template.md |
| Request patterns | api-patterns.md |
| Model routing | model-selection.md |
| Failures and recovery | troubleshooting.md |
Core Rules
1. Verify Auth and Endpoint Before Any Work
CheckGROQ_API_KEY first and use Authorization: Bearer $GROQ_API_KEY for every request. Use https://api.groq.com/openai/v1 as the base URL and confirm access with /models.curl -s https://api.groq.com/openai/v1/models \
-H "Authorization: Bearer $GROQ_API_KEY" | jq '.data[0].id'
2. Start with a Minimal Deterministic Payload
Begin with small prompts and explicit format instructions. Add complexity only after the baseline call is stable.3. Route by Task, Not by Habit
Use separate model choices for:Choose from live /models output instead of hardcoding assumptions.
4. Design for Retry and Degradation
For429 and 5xx, retry with exponential backoff and capped attempts. If a model is overloaded, fail over to a compatible backup model and log the swap.5. Validate Output Before Downstream Actions
If output feeds code execution or data writes, enforce JSON schema or strict parsing before acting. Reject malformed output early.6. Treat Speech as a Separate Reliability Path
Speech uploads have different failure modes than chat. Validate input format, check file size, and surface transcription confidence when available.7. Keep Secrets and User Data Scoped
Never store API keys in files. Keep request logs sanitized and avoid persisting full sensitive prompts unless the user explicitly asks.Common Traps
/models and select available IDs at runtime.429 backoff guidance -> repeated failures under load.External Endpoints
All network traffic should be limited to these Groq endpoints for explicit inference tasks requested by the user.
| Endpoint | Data Sent | Purpose | |----------|-----------|---------| | https://api.groq.com/openai/v1/models | None (GET) | Discover available models | | https://api.groq.com/openai/v1/chat/completions | Prompt messages and options | Chat completions | | https://api.groq.com/openai/v1/audio/transcriptions | Audio file and transcription params | Speech-to-text |
No other data is sent externally.
Security & Privacy
Data that leaves your machine:
Data that stays local:
~/groq-api/memory.md~/groq-api/logs/This skill does NOT:
GROQ_API_KEY in project files~/groq-api/ for persistenceTrust
By using this skill, prompts and optional audio content are sent to Groq. Only install if you trust Groq with that data.
Related Skills
Install withclawhub install if user confirms:
api β reusable REST patterns, auth, and error handlingmodels β model comparison and selection heuristicsai β current AI landscape checks before implementation decisionsfine-tuning β adaptation workflows when prompting is not enoughlangchain β orchestration patterns for multi-step LLM pipelinesFeedback
clawhub star groq-apiclawhub syncβ‘ When to Use
User needs to build, integrate, or troubleshoot Groq API inference for chat, tool calling, or speech transcription. Agent handles request shaping, model routing, failure recovery, and safe production patterns.
βοΈ Configuration
On first use, read setup.md for activation preferences, credential verification, and default workflow setup.