Hi there, I encounter this error. Any advise how to fix it?

I cloned the repo to my local and followed the installation instructions. After python3 manage.py runserver. I saw the above shown error.
As advised by copilot, I edited the following file and can fix it:
# newui/urls.py
from django.contrib import admin
from django.urls import include, path
from django.http import HttpResponse
def home(request):
return HttpResponse("Welcome to the home page!")
urlpatterns = [
path('admin/', admin.site.urls),
path('schatbot/', include('schatbot.urls')),
path('', home), # Add this line to handle the root URL
]
Hi there, I encounter this error. Any advise how to fix it?

I cloned the repo to my local and followed the installation instructions. After
python3 manage.py runserver. I saw the above shown error.As advised by copilot, I edited the following file and can fix it: