from django.urls import path from .views import voice_agent_view urlpatterns = [ path("", voice_agent_view, name="voice_agent"), ]