This commit is contained in:
2026-04-24 22:20:15 +03:30
parent f7dc05dc9e
commit 569d520a5c
24 changed files with 687 additions and 152 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
from django.http import HttpResponse
from django.urls import path
from django.urls import include, path
def test_view(_request):
@@ -8,4 +8,5 @@ def test_view(_request):
urlpatterns = [
path("__test__/", test_view),
path("api/rag/", include("rag.urls")),
]