chore: Run pnpm format:fix.

This commit is contained in:
cpojer
2026-01-31 21:13:13 +09:00
parent dcc2de15a6
commit 8cab78abbc
624 changed files with 10729 additions and 7514 deletions

View File

@@ -4,6 +4,7 @@ read_when:
- You want Deepgram speech-to-text for audio attachments
- You need a quick Deepgram config example
---
# Deepgram (Audio Transcription)
Deepgram is a speech-to-text API. In OpenClaw it is used for **inbound audio/voice note
@@ -18,22 +19,24 @@ Docs: https://developers.deepgram.com
## Quick start
1) Set your API key:
1. Set your API key:
```
DEEPGRAM_API_KEY=dg_...
```
2) Enable the provider:
2. Enable the provider:
```json5
{
tools: {
media: {
audio: {
enabled: true,
models: [{ provider: "deepgram", model: "nova-3" }]
}
}
}
models: [{ provider: "deepgram", model: "nova-3" }],
},
},
},
}
```
@@ -46,22 +49,22 @@ DEEPGRAM_API_KEY=dg_...
- `tools.media.audio.providerOptions.deepgram.smart_format`: enable smart formatting (optional)
Example with language:
```json5
{
tools: {
media: {
audio: {
enabled: true,
models: [
{ provider: "deepgram", model: "nova-3", language: "en" }
]
}
}
}
models: [{ provider: "deepgram", model: "nova-3", language: "en" }],
},
},
},
}
```
Example with Deepgram options:
```json5
{
tools: {
@@ -72,13 +75,13 @@ Example with Deepgram options:
deepgram: {
detect_language: true,
punctuate: true,
smart_format: true
}
smart_format: true,
},
},
models: [{ provider: "deepgram", model: "nova-3" }]
}
}
}
models: [{ provider: "deepgram", model: "nova-3" }],
},
},
},
}
```