mirror of
https://github.com/langgenius/dify.git
synced 2026-04-29 06:58:05 +08:00
remove description
This commit is contained in:
@ -152,8 +152,8 @@ class ExternalApiUseCheckApi(Resource):
|
||||
def get(self, external_knowledge_api_id):
|
||||
external_knowledge_api_id = str(external_knowledge_api_id)
|
||||
|
||||
external_api_template_is_using = ExternalDatasetService.external_api_template_use_check(external_knowledge_api_id)
|
||||
return {"is_using": external_api_template_is_using}, 200
|
||||
external_api_template_is_using, count = ExternalDatasetService.external_api_template_use_check(external_knowledge_api_id)
|
||||
return {"is_using": external_api_template_is_using, "count": count}, 200
|
||||
|
||||
|
||||
class ExternalDatasetInitApi(Resource):
|
||||
|
||||
Reference in New Issue
Block a user