from django.urls import path from plane.api.views import GPTIntegrationEndpoint urlpatterns = [ path( "workspaces//projects//ai-assistant/", GPTIntegrationEndpoint.as_view(), name="importer", ), ]