vue-pro/yudao-module-ai/yudao-module-ai-biz/pom.xml

59 lines
2.1 KiB
XML
Raw Normal View History

2024-03-03 20:11:00 +08:00
<?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>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-ai</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2024-03-03 20:11:00 +08:00
<artifactId>yudao-module-ai-biz</artifactId>
<name>${project.artifactId}</name>
<description>
ai 模块下,接入 LLM 大模型,支持聊天、绘图、音乐、写作、思维脑图等功能。
目前已接入各种模型,不限于:
国内:通义千问、文心一言、讯飞星火
国外OpenAI、Ollama、Midjourney、StableDiffusion、Suno
</description>
2024-03-03 20:11:00 +08:00
<dependencies>
2024-03-04 17:03:41 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-ai-api</artifactId>
<version>${revision}</version>
</dependency>
<!-- 业务组件 -->
2024-03-04 17:03:41 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
2024-04-14 13:40:42 +08:00
<artifactId>yudao-spring-boot-starter-ai</artifactId>
<version>${revision}</version>
2024-03-04 17:03:41 +08:00
</dependency>
<!-- Web 相关 -->
2024-03-04 17:03:41 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
2024-04-14 18:41:03 +08:00
<artifactId>yudao-spring-boot-starter-security</artifactId>
2024-03-04 17:03:41 +08:00
</dependency>
<!-- DB 相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
</dependency>
<!-- Job 相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-job</artifactId>
</dependency>
<!-- Test 测试相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-test</artifactId>
</dependency>
2024-03-03 20:11:00 +08:00
</dependencies>
</project>