from django.urls import path, include from rest_framework.routers import DefaultRouter from .views import ChatBotAPIView, MultiChatAPIView, BotViewSet router = DefaultRouter() router.register(r'bots', BotViewSet, basename='bot') urlpatterns = [ path('', include(router.urls)), path('chat//', ChatBotAPIView.as_view(), name='chat-bot'), path('multichat/', MultiChatAPIView.as_view(), name='multi-chat'), ]