File size: 331 Bytes
880d7e9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# URL Configuration for Voice Bot
from django.urls import path
from voice_service import start_conversation, process_voice, get_speech

urlpatterns = [
    path('start/', start_conversation, name='start_conversation'),
    path('process/', process_voice, name='process_voice'),
    path('speak/', get_speech, name='get_speech'),
]