|
@@ -19,7 +19,6 @@ from controllers.console.datasets.error import (
|
|
|
from controllers.console.wraps import (
|
|
|
account_initialization_required,
|
|
|
cloud_edition_billing_knowledge_limit_check,
|
|
|
- cloud_edition_billing_rate_limit_check,
|
|
|
cloud_edition_billing_resource_check,
|
|
|
setup_required,
|
|
|
)
|
|
@@ -107,7 +106,6 @@ class DatasetDocumentSegmentListApi(Resource):
|
|
|
@setup_required
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def delete(self, dataset_id, document_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -139,7 +137,6 @@ class DatasetDocumentSegmentApi(Resource):
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def patch(self, dataset_id, document_id, action):
|
|
|
dataset_id = str(dataset_id)
|
|
|
dataset = DatasetService.get_dataset(dataset_id)
|
|
@@ -195,7 +192,6 @@ class DatasetDocumentSegmentAddApi(Resource):
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
@cloud_edition_billing_knowledge_limit_check("add_segment")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def post(self, dataset_id, document_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -246,7 +242,6 @@ class DatasetDocumentSegmentUpdateApi(Resource):
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def patch(self, dataset_id, document_id, segment_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -307,7 +302,6 @@ class DatasetDocumentSegmentUpdateApi(Resource):
|
|
|
@setup_required
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def delete(self, dataset_id, document_id, segment_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -345,7 +339,6 @@ class DatasetDocumentSegmentBatchImportApi(Resource):
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
@cloud_edition_billing_knowledge_limit_check("add_segment")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def post(self, dataset_id, document_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -412,7 +405,6 @@ class ChildChunkAddApi(Resource):
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
@cloud_edition_billing_knowledge_limit_check("add_segment")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def post(self, dataset_id, document_id, segment_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -511,7 +503,6 @@ class ChildChunkAddApi(Resource):
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def patch(self, dataset_id, document_id, segment_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -555,7 +546,6 @@ class ChildChunkUpdateApi(Resource):
|
|
|
@setup_required
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def delete(self, dataset_id, document_id, segment_id, child_chunk_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|
|
@@ -600,7 +590,6 @@ class ChildChunkUpdateApi(Resource):
|
|
|
@login_required
|
|
|
@account_initialization_required
|
|
|
@cloud_edition_billing_resource_check("vector_space")
|
|
|
- @cloud_edition_billing_rate_limit_check("knowledge")
|
|
|
def patch(self, dataset_id, document_id, segment_id, child_chunk_id):
|
|
|
# check dataset
|
|
|
dataset_id = str(dataset_id)
|