feat: RAG分块策略增强

This commit is contained in:
2026-03-29 17:28:12 +08:00
parent 2f20064ee1
commit 941995d1b8
28 changed files with 1719 additions and 12 deletions

24
easy-agents-rag/pom.xml Normal file
View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.easyagents</groupId>
<artifactId>easy-agents</artifactId>
<version>${revision}</version>
</parent>
<artifactId>easy-agents-rag</artifactId>
<packaging>pom</packaging>
<name>easy-agents-rag</name>
<modules>
<module>easy-agents-rag-core</module>
<module>easy-agents-rag-ingestion</module>
<module>easy-agents-rag-ocr</module>
<module>easy-agents-rag-enhance</module>
<module>easy-agents-rag-retrieval</module>
</modules>
</project>