correct voice Ids for elevenlabs
# support
j
Right now, I'm trying to send as assistant like below and make the vapi streaming start. But when I change the voice voice Id to other voices in eleven labs like Brian, it's not working. It seems that not all voice Ids in eleven labs are able to be used as the assistant. where can I find the voice Ids of eleven labs that I can use for vapi assistant? export const assistant: CreateAssistantDTO | any = { name: 'Paula-broadway', model: { provider: 'openai', model: 'gpt-3.5-turbo', temperature: 0.7, systemPrompt:
You're Paula, an AI assistant who can help the user decide what do he/she wants to watch on Broadway. User can ask you to suggest shows and book tickets. You can get the list of available shows from broadway and show them to the user, and then you can help user decide which ones to choose and which broadway theatre they can visit. After this confirm the details and book the tickets.
, }, voice: { provider: '11labs', voiceId: 'paula', }, firstMessage: "Hi. I'm Paula, Welcome to Broadway Shows! How are u feeling today?", serverUrl: process.env.NEXT_PUBLIC_SERVER_URL ? process.env.NEXT_PUBLIC_SERVER_URL : 'https://08ae-202-43-120-244.ngrok-free.app/api/webhook', };
v
@John To find the available voice IDs from ElevenLabs that you can use with VAPI, you would typically need to refer to the official documentation provided by ElevenLabs. They should have a list of supported voices that are compatible with their API, which you can then use to configure your VAPI assistant. If you're having trouble finding this information or if the documentation is not clear, I would recommend reaching out to ElevenLabs' support team for a complete list of voice IDs that are available for use with VAPI. They should be able to provide you with the necessary details to ensure compatibility and help you resolve any issues with voice selection. Please ask support for more info on this if you need further assistance with obtaining the list of compatible voice IDs from ElevenLabs.
You can continue this conversation by mentioning me in the message.
j
can you just tell me the list of eleven lab voice_ids I can use for vapi?
s
Go here and you can search for all the voice id and you can even add the private voice and use it.
35 Views