- 新增 rag retrieval 核心协议、RRF 融合与相关度归一化 - 支持关键词检索按 knowledgeId 过滤并补充 ES/Lucene 单测 - 扩展 KnowledgeNode 检索模式与 Milvus 检索参数透传
46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<?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-rag</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>easy-agents-rag-retrieval</artifactId>
|
|
<name>easy-agents-rag-retrieval</name>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.easyagents</groupId>
|
|
<artifactId>easy-agents-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.easyagents</groupId>
|
|
<artifactId>easy-agents-search-engine-service</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.easyagents</groupId>
|
|
<artifactId>easy-agents-rag-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.easyagents</groupId>
|
|
<artifactId>easy-agents-rag-enhance</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|