mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-03-21 16:43:47 +08:00
- 移除 Graph 知识图谱相关模块(Neo4j、GraphRAG等) - 移除 demo、job、wechat 示例模块,简化项目结构 - 修复向量维度获取方式,改为从数据库配置读取 - 添加 gRPC BOM 依赖管理,解决 Milvus SDK 版本冲突 - 新增 PPIO 服务和 Embedding 提供者支持 - 清理冗余代码和未使用的依赖 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
829 B
XML
28 lines
829 B
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">
|
|
<parent>
|
|
<artifactId>ruoyi-ai</artifactId>
|
|
<groupId>org.ruoyi</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<modules>
|
|
<module>ruoyi-aiflow</module>
|
|
<module>ruoyi-chat</module>
|
|
<module>ruoyi-generator</module>
|
|
<module>ruoyi-system</module>
|
|
<module>ruoyi-workflow</module>
|
|
</modules>
|
|
|
|
<artifactId>ruoyi-modules</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<description>
|
|
ruoyi-modules 业务模块
|
|
</description>
|
|
|
|
</project>
|