internet_ml/web/backend/api/nlp/nocontext/urls.py

12 lines
236 B
Python
Raw Normal View History

2023-01-11 15:59:46 +00:00
# type: ignore
2022-12-28 10:41:27 +00:00
from typing import Any, List
from django.contrib import admin
from django.urls import include, path
from . import views
urlpatterns: list[Any] = [
2022-12-30 06:50:36 +00:00
path("question-answering/", views.QAView.as_view(), name="nlp"),
2022-12-28 10:41:27 +00:00
]