Files
Houshyar_Backend/chat/urls.py

7 lines
134 B
Python
Raw Normal View History

2026-02-01 16:40:43 +03:30
from django.urls import path
from chat.views import get_ai_response
urlpatterns = [
path("get_ai_response/", get_ai_response),
]