Support for Elevenlabs Transcriber
# support
m
We have recently started using VAPI in production to take calls from customers. One thing we have struggled with is quality of transcription provided by transcribers supported by VAPI. We took the audio recordings and tried those on elevenlabs transcriber. When can we expect elevenlabs to be supported by VAPI? #transcriber
k
To use ElevenLabs transcriber in your VAPI implementation: - Configure your assistant with ElevenLabs transcriber:
Copy code
const assistant = {
  // ... other config
  transcriber: {
    provider: '11labs',
    model: 'scribe_v1',
    language: 'en' // or any other supported language
  }
}
The transcriber supports: - Single model: scribe_v1 - Multiple languages - Both user and assistant audio transcription The implementation handles: - Audio buffering and processing - Real-time transcription - Error handling and reporting - Integration with the VAPI pipeline