feat: 增加RAG知识库与文档基础骨架

This commit is contained in:
2026-05-18 22:32:53 +08:00
parent 18386fde63
commit 4a20a25282
15 changed files with 360 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.bruce.rag.constant;
public final class RagSystemConstants {
public static final String RAG_STORE = "RAG_STORE";
public static final String RAG_DOCUMENT = "RAG_DOCUMENT";
private RagSystemConstants() {
}
}