# Groq Stt

> Transcribe audio files using Groq API (Whisper models). Use when user needs to transcribe audio to text.

- Skill: `958877748/groq-stt` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add 958877748/groq-stt`
- Raw SKILL.md: https://api.skillmd.com/api/skills/958877748/groq-stt/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: 958877748 (https://skillmd.com/u/958877748)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/958877748/groq-stt

---


# Groq STT Skill

This skill uploads an audio file to the Groq Speech-to-Text API and saves the transcription.

## Usage

```bash
# set your API key (or use .env in the repo root)
export GROQ_API_KEY=your_api_key_here

# run the script with a path to an audio file
node scripts/transcribe.mjs /path/to/audio.mp4
```

## Output

- Writes a `{filename}_transcript.txt` next to the input file.

## Notes

- Uses the `whisper-large-v3-turbo` model by default.
- Supported file types: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm

