23 questions
0
votes
0
answers
74
views
How to set the Elevenlabs webhook type programmatically?
I am using ElevenLabs for transcribing audio (speech to text), and want to create a webhook which will be triggered once audio transcription is complete.
I found that you must specify the webhook type ...
Best practices
1
vote
2
replies
143
views
Regarding rag for telephony with deepgram
I'm building a voice-based calling system where users can create AI agents that make outbound phone calls.
The agent uses Deepgram for real-time transcription and ElevenLabs/Cartesia for speech ...
-4
votes
1
answer
124
views
Voice Activity Detection (VAD) not working in ElevenLabs with Twilio
I am using an ElevenLabs Agent to call people via phone (Twilio native integration). Now when I am on speaker or when there is someone in the background speaking loud, the Agent accidently considers ...
1
vote
0
answers
190
views
Plivo <Stream> + ElevenLabs Conversational AI WebSocket – no audio playback on call
I’m building a system where a Plivo outbound call streams audio in both directions to ElevenLabs Conversational AI via WebSocket.
Tech stack: Node.js + Fastify + @fastify/websocket + Plivo SDK
Goal: ...
1
vote
1
answer
394
views
Twilio Media Streams + ElevenLabs + OpenAI (Python): Call Connects, Transcripts Work, But Caller Hears Silence
I’ve built a real-time AI voice assistant using Twilio Media Streams, OpenAI GPT, and ElevenLabs, with audio handled in Python using Quart + Hypercorn. The app connects, transcribes voices from the LL,...
0
votes
1
answer
143
views
elevenlab agent is becoming silent during workflow [closed]
have implemeted the one conversational ai agent in eleven labs and my response goes to webhook tool and agent is receiveing the answer from webhook tool,so during my conversation sometimes i give ...
0
votes
1
answer
828
views
ElevenLabs Websocket server not sending response
I'm using ElevenLabs Conversational AI API, which uses Websockets. And I'm using Unity C# on the client side.
I can receive audio just fine, but when I send my reply to it, I don't get a response.
...
1
vote
0
answers
711
views
How do you style the ElevenLabs conv ai widget?
I'm display the element like this:
const ElevenLabsConvai = ({ agentId }: { agentId: string }) => {
return <elevenlabs-convai agent-id={agentId}></elevenlabs-convai>;
};
But it seems ...
1
vote
0
answers
442
views
WebSocket Error 403 During Handshake with ElevenLabs API
I’m working on a conversational AI website, and I’m using the ElevenLabs API for voice generation and conversation handling. However, I’ve run into a problem when trying to establish a WebSocket ...
0
votes
0
answers
312
views
Real-time Audio Streaming chunk is not playing sequentially using javascript + elevenlabs
I am trying to play the audio stream chunks I receive from ElevenLabs in real time. When the next chunk is received, the audio player should preload the audio so that once the first chunk finishes, ...
0
votes
1
answer
294
views
Real-time Audio Streaming Not Playing on iOS with WebSocket and Audio APIs
I'm building a real-time audio streaming app using WebSocket and audio APIs, but I'm facing issues specifically on iOS. The app streams audio chunks received via WebSocket from the ElevenLabs API and ...
0
votes
1
answer
506
views
Elevenlabs add voice API call issue in Expo/React Native - unable to send audio files to API
I am creating an Expo app for mobile that allows users to clone voices by uploading audio clips. I am trying to communicate with the Elevenlabs API by allowing the user to upload audio clips using the ...
0
votes
1
answer
533
views
Twilio playing only white noise while trying to stream audio
I am trying to stream audio generated by ElevenLabs (via their websocket) back to Twilio. However, I was only able to hear white noise.
However, when I used their API to get the audio, opened it, and ...
0
votes
0
answers
103
views
How to Send MP3 Audio from S3 via WhatsApp Cloud API Using Pre-Signed URLs?
I'm developing a feature where an audio message generated by the Eleven Labs API is stored in an AWS S3 bucket and should be sent to users through the WhatsApp Cloud API. Although the process works ...
0
votes
0
answers
74
views
TypeError: "Text must be a string when stream is False" using ElevenLabs `generate` function in Python
I'm working on a Python script that transcribes audio using OpenAI's Whisper API, translates the text to French using DeepL, and then generates speech from the translated text using the ElevenLabs API....