ollama-local-chat/ollama/urls.py
2024-06-11 00:04:26 -04:00

9 lines
249 B
Python

# 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
]