一键导入
transcribe
Transcribe audio/voice files using Groq Whisper API
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Transcribe audio/voice files using Groq Whisper API
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Register bot commands with Telegram so they appear in the command menu
Rebuild miniclaw and restart the background service
Interactive setup wizard for new miniclaw users who just forked the repo
Summarise recent conversations across all threads into auto memory (MEMORY.md + topic files)
Analyse chat history to update voice and typing style guide (voice.md in auto memory)
Create a semver release with changelog, git tag, and GitHub release
| name | transcribe |
| description | Transcribe audio/voice files using Groq Whisper API |
| allowed-tools | Bash(curl *) |
Transcribe a voice or audio file using the Groq Whisper API, then clean up the transcript into polished text.
Find the audio file path from the conversation context. It will be in a [File attached: ...] or [Replied-to message has file attached: ...] line. If no audio file is present, tell the user.
Run this curl command, replacing <FILE_PATH> with the actual file path:
curl -s https://api.groq.com/openai/v1/audio/transcriptions \
-H "Authorization: Bearer $GROQ_API_KEY" \
-F "file=@<FILE_PATH>" \
-F "model=whisper-large-v3-turbo" \
-F "response_format=json" \
-F "language=en"
The response is JSON: {"text": "transcribed content here"}.
If the request fails, check that $GROQ_API_KEY is set and the file exists. Report the error to the user.
Treat the transcribed text as if the user had typed it as a normal text message. Respond to it naturally.