Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions fern/assistants/examples/docs-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Guidelines:
// Configure voice settings
voice={
"provider": "vapi",
"voice_id": "Harry"
"voiceId": "Harry"
},
// Configure transcription
transcriber={
Expand Down Expand Up @@ -274,7 +274,7 @@ Guidelines:
// Configure voice settings
voice: {
provider: "vapi",
voice_id: "Harry"
voiceId: "Harry"
},
// Configure transcription
transcriber: {
Expand Down Expand Up @@ -341,7 +341,7 @@ Guidelines:
// Configure voice settings
voice={
"provider": "vapi",
"voice_id": "Harry"
"voiceId": "Harry"
},
// Configure transcription
transcriber={
Expand Down
6 changes: 3 additions & 3 deletions fern/assistants/examples/inbound-support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ We will be creating a customer support agent for VapiBank, a bank that wants to
},
voice: {
provider: "11labs",
voice_id: "burt"
voiceId: "burt"
}
});

Expand Down Expand Up @@ -193,7 +193,7 @@ We will be creating a customer support agent for VapiBank, a bank that wants to
},
"voice": {
"provider": "11labs",
"voice_id": "burt"
"voiceId": "burt"
}
}

Expand Down Expand Up @@ -222,7 +222,7 @@ We will be creating a customer support agent for VapiBank, a bank that wants to
},
"voice": {
"provider": "11labs",
"voice_id": "burt"
"voiceId": "burt"
}
}'
```
Expand Down
4 changes: 2 additions & 2 deletions fern/assistants/examples/voice-widget.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const EcommerceSupportWidget = () => {
greeting: 'Hi! Need help with your order?',
voice: {
provider: 'playht',
voice_id: 'jennifer',
voiceId: 'jennifer',
},
}}
/>
Expand All @@ -403,7 +403,7 @@ const HealthcareWidget = () => {
greeting: 'Hello! I can help schedule your appointment.',
voice: {
provider: 'playht',
voice_id: 'jennifer',
voiceId: 'jennifer',
},
}}
/>
Expand Down
Loading
Loading