Skip to content

Commit e957d3c

Browse files
chore: fix deepgram
1 parent 34a28c4 commit e957d3c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

fern/customization/voice-pipeline-configuration.mdx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Uses AI models to analyze speech patterns, context, and audio cues to predict wh
205205

206206
### Deepgram Flux configuration
207207

208-
Deepgram Flux's end-of-turn detection is configured at the transcriber level, allowing you to fine-tune how aggressive or conservative the bot should be in detecting when users finish speaking.
208+
Deepgram Flux's end-of-turn detection is configured at the transcriber level, allowing you to fine-tune how aggressive or conservative the bot should be in detecting when users finish speaking. Do NOT set a `smartEndpointingPlan` to leverage Deepgram's end-of-turn events.
209209

210210
**Configuration parameters:**
211211

@@ -224,7 +224,8 @@ Deepgram Flux's end-of-turn detection is configured at the transcriber level, al
224224
```json
225225
{
226226
"transcriber": {
227-
"provider": "flux-general-en",
227+
"provider": "deepgram",
228+
"model": "flux-general-en",
228229
"language": "en",
229230
"eotThreshold": 0.7,
230231
"eotTimeoutMs": 5000
@@ -669,15 +670,16 @@ User Interrupts → Assistant Audio Stopped → backoffSeconds Blocks All Output
669670
```json
670671
{
671672
"transcriber": {
672-
"provider": "flux-general-en",
673+
"provider": "deepgram",
674+
"model": "flux-general-en",
673675
"language": "en",
674676
"eotThreshold": 0.7,
675-
"eotTimeoutMs": 5000,
677+
"eotTimeoutMs": 5000
676678
},
677679
"stopSpeakingPlan": {
678680
"numWords": 2,
679681
"voiceSeconds": 0.2,
680-
"backoffSeconds": 1.0
682+
"backoffSeconds": 1.0,
681683
"acknowledgementPhrases": [
682684
"okay",
683685
"right",

0 commit comments

Comments
 (0)