ollama-local-chat/ollama/urls.py

10 lines
249 B
Python
Raw Normal View History

2024-06-11 05:04:26 +01:00
# myproject/urls.py
from django.contrib import admin
from django.urls import path, include # Import 'include'
urlpatterns = [
path('admin/', admin.site.urls),
path('chat/', include('chat.urls')), # Include the URLs from the 'chat' app
]