Feat: Add TagFeatureItem #4368 (#4432)

### What problem does this PR solve?

Feat: Add TagFeatureItem #4368

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-01-09 18:24:27 +08:00
committed by GitHub
parent dac54ded96
commit 300d8ecf51
15 changed files with 259 additions and 123 deletions

View File

@ -30,6 +30,7 @@ const {
knowledge_graph,
document_infos,
upload_and_parse,
listTagByKnowledgeIds,
} = api;
const methods = {
@ -140,6 +141,10 @@ const methods = {
url: upload_and_parse,
method: 'post',
},
listTagByKnowledgeIds: {
url: listTagByKnowledgeIds,
method: 'get',
},
};
const kbService = registerServer<keyof typeof methods>(methods, request);