7 lines
134 B
Python
7 lines
134 B
Python
from django.urls import path
|
|
|
|
from chat.views import get_ai_response
|
|
|
|
urlpatterns = [
|
|
path("get_ai_response/", get_ai_response),
|
|
] |