2024-03-12 21:07:09 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-module-ai</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-ai</artifactId>
|
2024-05-12 19:43:41 +08:00
|
|
|
|
<!-- TODO 芋艿:这里需要进一步减少 -->
|
2024-03-12 21:07:09 +08:00
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
<groupId>io.springboot.ai</groupId>
|
|
|
|
|
<artifactId>spring-ai-core</artifactId>
|
|
|
|
|
<version>1.0.3</version>
|
2024-03-12 21:07:09 +08:00
|
|
|
|
</dependency>
|
2024-03-13 20:51:53 +08:00
|
|
|
|
<dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
<groupId>io.springboot.ai</groupId>
|
|
|
|
|
<artifactId>spring-ai-openai</artifactId>
|
|
|
|
|
<version>1.0.3</version>
|
2024-03-13 20:51:53 +08:00
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
2024-05-17 22:16:57 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springboot.ai</groupId>
|
|
|
|
|
<artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.0.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-03-13 20:51:53 +08:00
|
|
|
|
<dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-common</artifactId>
|
2024-03-13 20:51:53 +08:00
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
2024-03-14 20:16:07 +08:00
|
|
|
|
<!-- 阿里云 通义千问 -->
|
|
|
|
|
<dependency>
|
2024-04-26 18:05:14 +08:00
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>dashscope-sdk-java</artifactId>
|
|
|
|
|
<version>2.11.0</version>
|
2024-03-14 20:16:07 +08:00
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
2024-03-24 20:10:34 +08:00
|
|
|
|
<dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
2024-03-24 20:10:34 +08:00
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
|
|
|
|
<!-- TODO fan:这里包,要进一步减少 -->
|
|
|
|
|
|
2024-04-08 09:36:57 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
2024-04-08 09:36:57 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.dv8tion</groupId>
|
|
|
|
|
<artifactId>JDA</artifactId>
|
|
|
|
|
<version>5.0.0-beta.21</version>
|
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
|
<!-- <groupId>club.minnced</groupId>-->
|
|
|
|
|
<!-- <artifactId>opus-java</artifactId>-->
|
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
|
<!-- </exclusions>-->
|
|
|
|
|
</dependency>
|
2024-03-12 21:07:09 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|