Feat: KB detail supports document total size (#7546)

### What problem does this PR solve?

Kb detail supports return document total size now.

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Yongteng Lei
2025-05-09 11:48:54 +08:00
committed by GitHub
parent 34ec550014
commit b781207752
2 changed files with 17 additions and 0 deletions

View File

@ -152,6 +152,7 @@ def detail():
if not kb:
return get_data_error_result(
message="Can't find this knowledgebase!")
kb["size"] = DocumentService.get_total_size_by_kb_id(kb_id=kb["id"],keywords="", run_status=[], types=[])
return get_json_result(data=kb)
except Exception as e:
return server_error_response(e)