first push

This commit is contained in:
2026-02-01 16:40:43 +03:30
commit 06014b267f
22 changed files with 656 additions and 0 deletions

7
chat/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from chat.views import get_ai_response
urlpatterns = [
path("get_ai_response/", get_ai_response),
]