File size: 201 Bytes
12b0dd7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from django.urls import path

from ragas_api.views import RagasFromTextView, RagasView

urlpatterns = [
    path("ragas", RagasView.as_view()),
    path("ragas/no-pdf", RagasFromTextView.as_view()),
]