文章导入知识库

This commit is contained in:
2026-01-12 13:52:19 +08:00
parent 26df740dd0
commit 12dca45b4d
20 changed files with 1371 additions and 15 deletions

View File

@@ -125,4 +125,11 @@ public interface AiKnowledgeService {
* @return 文档列表
*/
ResultDomain<Map<String, Object>> getDocumentList(String knowledgeId, Integer page, Integer limit);
/**
* 内部创建知识库(无需登录,供系统初始化使用)
* @param knowledge 知识库信息
* @return 创建结果
*/
ResultDomain<TbAiKnowledge> createKnowledgeInternal(TbAiKnowledge knowledge);
}