Eileen
04/04/2025, 6:27 PMVapi Support Bot
04/04/2025, 6:29 PMbash
curl -X PATCH https://api.vapi.ai/assistant/your-assistant-id \
-H "Authorization: Bearer token" \
-H "Content-Type: application/json" \
-d '{
"transcriber": {
"provider": "deepgram",
"endpointing": 300,
"model": "nova-2",
"language": "en"
}
}'
### 3. Audio Device Identification
For identifying available audio devices, you can use:
javascript
navigator.mediaDevices.enumerateDevices()
This will list all available media devices including audio inputs.
### 4. Audio Output Device Selection
While not directly related to input, you can specify the audio output device using the setSinkId
method on the audio element:
javascript
audioElement.setSinkId(deviceId)
where deviceId
is obtained from navigator.mediaDevices.enumerateDevices()
.
Is there anything specific about audio input customization you'd like me to elaborate on?
Sources:Vapi Support Bot
04/04/2025, 6:29 PMKyle Brunker
04/06/2025, 11:51 AMKyle Brunker
04/06/2025, 11:57 AMEileen
04/08/2025, 3:17 PMKyle Brunker
04/10/2025, 9:59 PM