Skip to content

Commit 459ede5

Browse files
committed
docs: refresh groq audio docs
1 parent ac8d91e commit 459ede5

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

docs/nodes/audio.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ Note: Binary detection is best-effort across macOS/Linux/Windows; ensure the CLI
129129
## Notes & limits
130130

131131
- Provider auth follows the standard model auth order (auth profiles, env vars, `models.providers.*.apiKey`).
132+
- Groq setup details: [Groq](/providers/groq).
132133
- Deepgram picks up `DEEPGRAM_API_KEY` when `provider: "deepgram"` is used.
133134
- Deepgram setup details: [Deepgram (audio transcription)](/providers/deepgram).
134135
- Mistral setup details: [Mistral](/providers/mistral).

docs/providers/groq.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,13 @@ export GROQ_API_KEY="gsk_..."
5555

5656
Groq also provides fast Whisper-based audio transcription. When configured as a
5757
media-understanding provider, OpenClaw uses Groq's `whisper-large-v3-turbo`
58-
model to transcribe voice messages.
58+
model to transcribe voice messages through the shared `tools.media.audio`
59+
surface.
5960

6061
```json5
6162
{
62-
media: {
63-
understanding: {
63+
tools: {
64+
media: {
6465
audio: {
6566
models: [{ provider: "groq" }],
6667
},
@@ -75,6 +76,14 @@ If the Gateway runs as a daemon (launchd/systemd), make sure `GROQ_API_KEY` is
7576
available to that process (for example, in `~/.openclaw/.env` or via
7677
`env.shellEnv`).
7778

79+
## Audio notes
80+
81+
- Shared config path: `tools.media.audio`
82+
- Default Groq audio base URL: `https://api.groq.com/openai/v1`
83+
- Default Groq audio model: `whisper-large-v3-turbo`
84+
- Groq audio transcription uses the OpenAI-compatible `/audio/transcriptions`
85+
path
86+
7887
## Available models
7988

8089
Groq's model catalog changes frequently. Run `openclaw models list | grep groq`

0 commit comments

Comments
 (0)