← ClaudeAtlas

groqcloud-automationlisted

Automate AI inference, chat completions, audio translation, and TTS voice management through GroqCloud's high-performance API via Composio
ComposioHQ/awesome-claude-skills · ★ 62,373 · AI & Automation · score 84
Install: claude install-skill ComposioHQ/awesome-claude-skills
# GroqCloud Automation Automate AI inference workflows using GroqCloud's ultra-fast API -- chat completions, model discovery, audio translation, and TTS voice selection -- all orchestrated through the Composio MCP integration. **Toolkit docs:** [composio.dev/toolkits/groqcloud](https://composio.dev/toolkits/groqcloud) --- ## Setup 1. Connect your GroqCloud account through the Composio MCP server at `https://rube.app/mcp` 2. The agent will prompt you with an authentication link if no active connection exists 3. Once connected, all `GROQCLOUD_*` tools become available for execution --- ## Core Workflows ### 1. Discover Available Models List all models available on GroqCloud to find valid model IDs before running inference. **Tool:** `GROQCLOUD_LIST_MODELS` ``` No parameters required -- returns all available models with metadata. ``` Use this as a prerequisite before any chat completion call to ensure you reference a valid, non-deprecated model ID. --- ### 2. Run Chat Completions Generate AI responses for conversational prompts using a specified GroqCloud model. **Tool:** `GROQCLOUD_GROQ_CREATE_CHAT_COMPLETION` | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `model` | string | Yes | Model ID from `GROQCLOUD_LIST_MODELS` | | `messages` | array | Yes | Ordered list of `{role, content}` objects (`system`, `user`, `assistant`) | | `temperature` | number | No | Sampling temperature 0-2 (default: 1) | | `max_completion_token