We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af92d2a commit 5c077e0Copy full SHA for 5c077e0
server/api/views/text_extraction/urls.py
@@ -1,11 +1,11 @@
1
from django.urls import path
2
-from .views import RuleExtractionAPIView, RuleExtractionAPIOpenAIView
+from .views import RuleExtractionAPIOpenAIView
3
4
5
urlpatterns = [
6
-
7
- path('v1/api/rule_extraction', RuleExtractionAPIView.as_view(),
8
- name='rule_extraction'),
9
- path('v1/api/rule_extraction_openai', RuleExtractionAPIOpenAIView.as_view(),
10
- name='rule_extraction_openai')
+ path(
+ "v1/api/rule_extraction_openai",
+ RuleExtractionAPIOpenAIView.as_view(),
+ name="rule_extraction_openai",
+ )
11
]
0 commit comments