from django.urls import re_path from ai.chat import ChatConsumer websocket_urlpatterns = [ re_path(r'ws/chat/$', ChatConsumer.as_asgi()), ]