Caricamento in corso...
Caricamento in corso...
Last synced: Today, 22:00
Technical reference for the OpenClaw framework. Real-time synchronization with the official documentation engine.
Use this file to discover all available pages before exploring further.
Deepgram is a speech-to-text API. In OpenClaw it is used for inbound audio/voice-note transcription through
tools.media.audioplugins.entries.voice-call.config.streamingFor batch transcription, OpenClaw uploads the complete audio file to Deepgram and injects the transcript into the reply pipeline (
{{Transcript}}[Audio]listen| Detail | Value |
|---|---|
| Website | deepgram.com |
| Docs | developers.deepgram.com |
| Auth | text DEEPGRAM_API_KEY |
| Default model | text nova-3 |
text``` DEEPGRAM_API_KEY=dg_... ```
| Option | Path | Description |
|---|---|---|
text model | text tools.media.audio.models[].model | Deepgram model id (default: text nova-3 |
text language | text tools.media.audio.models[].language | Language hint (optional) |
text detect_language | text tools.media.audio.providerOptions.deepgram.detect_language | Enable language detection (optional) |
text punctuate | text tools.media.audio.providerOptions.deepgram.punctuate | Enable punctuation (optional) |
text smart_format | text tools.media.audio.providerOptions.deepgram.smart_format | Enable smart formatting (optional) |
The bundled
deepgram| Setting | Config path | Default |
|---|---|---|
| API key | text plugins.entries.voice-call.config.streaming.providers.deepgram.apiKey | Falls back to text DEEPGRAM_API_KEY |
| Model | text ...deepgram.model | text nova-3 |
| Language | text ...deepgram.language | (unset) |
| Encoding | text ...deepgram.encoding | text mulaw |
| Sample rate | text ...deepgram.sampleRate | text 8000 |
| Endpointing | text ...deepgram.endpointingMs | text 800 |
| Interim results | text ...deepgram.interimResults | text true |
json5{ plugins: { entries: { "voice-call": { config: { streaming: { enabled: true, provider: "deepgram", providers: { deepgram: { apiKey: "${DEEPGRAM_API_KEY}", model: "nova-3", endpointingMs: 800, language: "en-US", }, }, }, }, }, }, }, }
© 2024 TaskFlow Mirror
Powered by TaskFlow Sync Engine