factory/apps/ichat/urls.py

8 lines
199 B
Python

from django.urls import path
from apps.ichat.views import QueryLLMview
API_BASE_URL = 'api/llm/ichat/'
urlpatterns = [
path(API_BASE_URL + 'query/', QueryLLMview.as_view(), name='llm_query'),
]