File size: 184 Bytes
63cd221
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from django.urls import path

from simple_llm.views import SimpleLLMView

urlpatterns = [
    path(
        "llm",
        SimpleLLMView.as_view(),
        name="simple-llm",
    ),
]