Is Sesame still available in Vapi? I can't find it
# support
j
Recently saw a blog where Vapi explains how it's using sesame ai for voice but I can't find how to incorporate it into my agents
s
Hey Joao! Yes, it is! You just need to: 1. Go to the Vapi dashboard 2. Go to the assistant you have 3. Click on Voice in the top bar (there should be model, transcriber, voice, tools, etc) 4. Then go to the Provider tab and click it 5. Scroll down and you’ll find Sesame listed there — you can select it as your voice provider. Let me know if this helped!
j
Hey Mason, I'm selecting it but when I click "Speak with Assistant" there is no audio.( This is only happening if a select Sesame as voice provider)
@User
s
Could you send me the call_id
j
80a07572-732e-40ae-bd2f-a2d68b627334
s
Add me to your dashboard. My email is mason.d@vapi.ai
I'll take a look.
s
I am having the same issue, no audio. Only with sesame provider. https://vapi.ai/sesame same result happens here
j
@User
s
The assistant's delayed response is due to end pointing, which determines the duration to wait before recognizing the user has finished speaking. - End Pointing Plan Configuration: You need to adjust the Smart End Pointing plan provider to livekit and update the wait function within the Start Speaking Plan for English Transcription. - Wait Function Optimization: Iterative testing with potential users is necessary to determine the optimal wait function values, as suggested values may not be suitable for all scenarios.
Copy code
startSpeakingPlan": {
  "waitSeconds": 0.6,
  "smartEndpointingPlan": {
          "provider": "livekit",
          "waitFunction": "50 + 200 * x"
        }
}
Your current config:
Copy code
"startSpeakingPlan": {
        "waitSeconds": 0.4,
        "transcriptionEndpointingPlan": {
          "onPunctuationSeconds": 0.1,
          "onNoPunctuationSeconds": 1.5,
          "onNumberSeconds": 0.5
        },
        "customEndpointingRules": [],
        "smartEndpointingPlan": {
          "provider": "livekit",
          "waitFunction": "70 + 4000 * x"
        }
      }
let me know how it goes for you.
s
Okay that's fine, @Shubham Bajaj but its still down at vapi.ai/sesame and it doesn't work in the dashboard. Are you 100% this is not an internal issue?
4 Views