from django.urls import path from chat.views import get_ai_response urlpatterns = [ path("ask/", get_ai_response), ]