Files
Ai/rag/urls.py
T

10 lines
125 B
Python
Raw Normal View History

from django.urls import path
2026-03-19 22:54:29 +03:30
from .views import (
ChatView,
)
urlpatterns = [
path("chat/", ChatView.as_view()),
]