Coverage for ai_integration/urls.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-07-05 02:45 +0800

1from django.urls import path 

2from . import views 

3 

4app_name = 'ai_integration' 

5 

6urlpatterns = [ 

7 path('chat/', views.chat_endpoint, name='chat'), 

8 path('search/', views.semantic_search, name='search'), 

9]