🦀 ClawHub
Groq Voice Transcribe
by @timing-up
Transcribe audio files via Groq's OpenAI-compatible speech-to-text API. Use when the user sends voice messages or audio files and you need fast cloud speech-...
TERMINAL
clawhub install groq-voice-transcribe📖 About This Skill
name: groq-voice-transcribe description: Transcribe audio files via Groq's OpenAI-compatible speech-to-text API. Use when the user sends voice messages or audio files and you need fast cloud speech-to-text through Groq instead of local Whisper.
Groq Voice Transcribe
Fast speech-to-text for voice notes and audio files through Groq's OpenAI-compatible transcription endpoint. Use it when you want cloud transcription via Groq instead of running Whisper locally.
Best for:
What you need
You need a Groq API key. Groq often provides a free developer tier / trial credits for new users. Get one from:
Easiest setup in OpenClaw
If OpenClaw is already running and configured, you can simply ask your assistant:
The assistant can place the key into ~/.openclaw/openclaw.json for you.
Manual setup
Set GROQ_API_KEY, or configure it in ~/.openclaw/openclaw.json under:
{
"skills": {
"entries": {
"groq-voice-transcribe": {
"apiKey": "GROQ_KEY_HERE"
}
}
}
}
Quick start
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg
Defaults:
whisper-large-v3-turbo.txtCommon examples
# Basic transcript
{baseDir}/scripts/transcribe.sh /path/to/audio.oggChinese voice message
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg --language zh --prompt "中文普通话,日常聊天"Save to a custom file
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg --out /tmp/transcript.txtVerbose JSON output
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg --json --out /tmp/transcript.json
Flags
--model : transcription model (default whisper-large-v3-turbo)--out : output file path--language : hint the spoken language, for example zh, en, ja--prompt : optional context or spelling hint--json: write verbose JSON instead of plain textNotes
--language zh often helps for Chinese voice notes.💡 Examples
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg
Defaults:
whisper-large-v3-turbo.txt📋 Tips & Best Practices
--language zh often helps for Chinese voice notes.