Files
Houshyar_Backend/chat/urls.py
2026-02-01 16:51:45 +03:30

7 lines
122 B
Python

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