delete the deprecated method (#5612)

This commit is contained in:
Jyong 2024-06-26 12:51:50 +08:00 committed by GitHub
commit 43335b5c87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 24 additions and 87 deletions

View file

@ -83,3 +83,9 @@ class DatasetInUseError(BaseHTTPException):
error_code = 'dataset_in_use'
description = "The dataset is being used by some apps. Please remove the dataset from the apps before deleting it."
code = 409
class IndexingEstimateError(BaseHTTPException):
error_code = 'indexing_estimate_error'
description = "Knowledge indexing estimate failed: {message}"
code = 500