# 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'), ]