from django.urls import path from simple_llm.views import SimpleLLMView urlpatterns = [ path( "llm", SimpleLLMView.as_view(), name="simple-llm", ), ]