luanpoppe
feat: adicionando mais refatorações e a nova rota para chamadas simples a LLMs
63cd221
raw
history blame contribute delete
184 Bytes
from django.urls import path
from simple_llm.views import SimpleLLMView
urlpatterns = [
path(
"llm",
SimpleLLMView.as_view(),
name="simple-llm",
),
]