# pxy_langchain/api/urls.py from django.urls import path from .views import chat urlpatterns = [ path("chat", chat, name="langchain_chat_api"), ]