HTT / voice_urls.py
Deep
some files added
880d7e9
raw
history blame contribute delete
331 Bytes
# 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'),
]