feat(rag): 打通自动解析与手动异步切片链路

This commit is contained in:
2026-05-24 22:03:29 +08:00
parent e37e8dfca6
commit cfa5d1f4e1
12 changed files with 210 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
package com.bruce.rag.event;
import java.util.List;
/**
* 文档上传完成事件,用于异步触发自动解析。
*/
public record RagDocumentUploadedEvent(List<Long> documentIds) {
}