correct voice Ids for elevenlabs
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:
},
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',
};
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',
};