mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-09-13 00:14:59 +00:00
- 短剧: 新增 ShortDramaAudio 实体/Mapper/BO/VO,扩展 ShortDramaServiceImpl 合成逻辑与 FfmpegFilterGraphBuilder 滤镜图 - MCP: 新增 WriteFileTool/DeleteFileTool/ExecuteCommandTool,重构 EditFileTool/ReadFileTool/ListDirectoryTool - 编码: 新增 coding 模块(CodingAgent/WorkspaceService/SSE 事件通道) - Atlas: 新增音频生成实现,扩展音视频/媒体实体与预测服务 - WebSocket: 新增公众号聊天 WebSocket 处理器与握手拦截 - 忽略 logs/ 目录,避免合成产物入库 Co-Authored-By: Claude <noreply@anthropic.com>
225 lines
7.4 KiB
XML
225 lines
7.4 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-modules</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>ruoyi-chat</artifactId>
|
||
<description>
|
||
聊天模块 - API定义和服务实现
|
||
</description>
|
||
|
||
<dependencies>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-chat</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-sse</artifactId>
|
||
</dependency>
|
||
|
||
<!-- WebSocket 基础模块:提供 spring-websocket 依赖,用于小程序对话 WS 端点 /chat/ws。
|
||
注意:common-websocket 自带的 PlusWebSocketHandler/WebSocketConfig 受 websocket.enabled 控制,
|
||
当前 enabled=false 不激活,与本模块独立注册的 /chat/ws 互不干扰。 -->
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-websocket</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-sensitive</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-open-ai</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-anthropic</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-ollama</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-agentic</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-community-dashscope</artifactId>
|
||
<version>${langchain4j.community.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-community-zhipu-ai</artifactId>
|
||
<version>${langchain4j.community.version}</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>com.zaxxer</groupId>
|
||
<artifactId>HikariCP</artifactId>
|
||
</dependency>
|
||
|
||
<!--文档解析-->
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-document-parser-apache-tika</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-compress</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- LangChain4j Milvus Embedding Store -->
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-milvus</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-weaviate</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-qdrant</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-mcp</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
<!-- LangChain4j Skills - 技能模块 -->
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-skills</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-experimental-skills-shell</artifactId>
|
||
<version>${langchain4j.beta.version}</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.testcontainers</groupId>
|
||
<artifactId>weaviate</artifactId>
|
||
<version>${weaviate.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-idempotent</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-log</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-web</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-doc</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.neo4j.driver</groupId>
|
||
<artifactId>neo4j-java-driver</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.github.imfangs</groupId>
|
||
<artifactId>dify-java-client</artifactId>
|
||
<version>${dify.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.coze</groupId>
|
||
<artifactId>coze-api</artifactId>
|
||
<version>${coze.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-api</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-impl</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-jackson</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- MySQL JDBC 驱动 -->
|
||
<dependency>
|
||
<groupId>com.mysql</groupId>
|
||
<artifactId>mysql-connector-j</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 测试依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<!-- Test dependencies -->
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-core</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-junit-jupiter</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
</project>
|