/install groq-voice-transcribe
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:
- Telegram / Signal voice notes
- short audio clips
- Chinese, English, or mixed daily speech
- fast transcript generation for follow-up summarization or chat replies
What you need
You need a Groq API key. Groq often provides a free developer tier / trial credits for new users. Get one from:
- https://console.groq.com/
- Sign in, open API Keys, then create a key
Easiest setup in OpenClaw
If OpenClaw is already running and configured, you can simply ask your assistant:
- "Configure Groq Voice Transcribe for me"
- "Here is my Groq API key, set up Groq Voice Transcribe"
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:
- Model:
whisper-large-v3-turbo - Output:
\x3Cinput>.txt - Format: plain text
Common examples
# Basic transcript
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg
# Chinese 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.txt
# Verbose JSON output
{baseDir}/scripts/transcribe.sh /path/to/audio.ogg --json --out /tmp/transcript.json
Flags
--model \x3Cname>: transcription model (defaultwhisper-large-v3-turbo)--out \x3Cpath>: output file path--language \x3Ccode>: hint the spoken language, for examplezh,en,ja--prompt \x3Ctext>: optional context or spelling hint--json: write verbose JSON instead of plain text
Notes
- Audio is sent to Groq for transcription.
- This skill is meant for transcription, not text-to-speech.
- If language is omitted, Groq can usually auto-detect it, but passing
--language zhoften helps for Chinese voice notes.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install groq-voice-transcribe - 安装完成后,直接呼叫该 Skill 的名称或使用
/groq-voice-transcribe触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Groq Voice Transcribe 是什么?
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-... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 421 次。
如何安装 Groq Voice Transcribe?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install groq-voice-transcribe」即可一键安装,无需额外配置。
Groq Voice Transcribe 是免费的吗?
是的,Groq Voice Transcribe 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Groq Voice Transcribe 支持哪些平台?
Groq Voice Transcribe 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Groq Voice Transcribe?
由 Timing-up(@timing-up)开发并维护,当前版本 v1.0.1。