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">
|
|
|
|
|
<parent>
|
2024-10-22 16:08:25 +08:00
|
|
|
|
<groupId>cn.huangge.boot</groupId>
|
2024-03-12 21:07:09 +08:00
|
|
|
|
<artifactId>yudao-module-ai</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
2024-06-29 18:13:36 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-03-12 21:07:09 +08:00
|
|
|
|
<artifactId>yudao-spring-boot-starter-ai</artifactId>
|
2024-07-03 21:11:10 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2024-06-29 18:13:36 +08:00
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<description>AI 大模型拓展,接入国内外大模型</description>
|
|
|
|
|
<properties>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<spring-ai.groupId>group.springframework.ai</spring-ai.groupId>
|
|
|
|
|
<spring-ai.version>1.1.0</spring-ai.version>
|
2024-06-29 18:13:36 +08:00
|
|
|
|
</properties>
|
2024-03-12 21:07:09 +08:00
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-07-06 18:16:47 +08:00
|
|
|
|
<artifactId>spring-ai-zhipuai-spring-boot-starter</artifactId>
|
2024-06-29 18:13:36 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2024-03-13 20:51:53 +08:00
|
|
|
|
</dependency>
|
2024-05-17 22:16:57 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-05-18 09:34:17 +08:00
|
|
|
|
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
|
2024-06-29 18:13:36 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2024-05-17 22:16:57 +08:00
|
|
|
|
</dependency>
|
2024-08-10 14:34:57 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-08-10 14:34:57 +08:00
|
|
|
|
<artifactId>spring-ai-azure-openai-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
</dependency>
|
2024-07-06 18:16:47 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-07-06 18:16:47 +08:00
|
|
|
|
<artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
</dependency>
|
2024-06-01 11:24:39 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-06-29 18:13:36 +08:00
|
|
|
|
<artifactId>spring-ai-stability-ai-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${spring-ai.version}</version>
|
2024-06-01 11:24:39 +08:00
|
|
|
|
</dependency>
|
2024-05-17 22:16:57 +08:00
|
|
|
|
|
2024-08-09 00:09:19 +08:00
|
|
|
|
<!-- 向量化,基于 Redis 存储,Tika 解析内容 -->
|
2024-09-03 16:54:51 +08:00
|
|
|
|
|
2024-09-07 20:12:37 +08:00
|
|
|
|
<!-- 暂不做经济型,先注释 TODO 经济型是啥呀? -->
|
2024-09-03 16:54:51 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>${spring-ai.groupId}</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-ai-transformers-spring-boot-starter</artifactId>-->
|
|
|
|
|
<!-- <version>${spring-ai.version}</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
2024-08-05 14:00:35 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-08-05 14:00:35 +08:00
|
|
|
|
<artifactId>spring-ai-tika-document-reader</artifactId>
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
</dependency>
|
2024-08-05 13:53:50 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-08-05 13:53:50 +08:00
|
|
|
|
<artifactId>spring-ai-redis-store</artifactId>
|
|
|
|
|
<version>${spring-ai.version}</version>
|
|
|
|
|
</dependency>
|
2024-08-09 00:09:19 +08:00
|
|
|
|
|
2024-08-05 13:53:50 +08:00
|
|
|
|
<dependency>
|
2024-10-22 16:08:25 +08:00
|
|
|
|
<groupId>cn.huangge.boot</groupId>
|
2024-08-15 11:28:02 +08:00
|
|
|
|
<artifactId>yudao-spring-boot-starter-redis</artifactId>
|
2024-08-05 13:53:50 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-03-13 20:51:53 +08:00
|
|
|
|
<dependency>
|
2024-10-22 16:08:25 +08:00
|
|
|
|
<groupId>cn.huangge.boot</groupId>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
<artifactId>yudao-common</artifactId>
|
2024-03-13 20:51:53 +08:00
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
2024-06-29 18:33:16 +08:00
|
|
|
|
<dependency>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<groupId>${spring-ai.groupId}</groupId>
|
2024-06-29 18:33:16 +08:00
|
|
|
|
<artifactId>spring-ai-qianfan-spring-boot-starter</artifactId>
|
2024-09-01 08:58:40 +08:00
|
|
|
|
<version>${spring-ai.version}</version>
|
2024-06-29 18:33:16 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-05-18 09:34:17 +08:00
|
|
|
|
<!-- 阿里云 通义千问 -->
|
2024-06-29 19:00:09 +08:00
|
|
|
|
<!-- TODO 芋艿:等 spring cloud alibaba ai 发布最新的时候,可以替换掉这个依赖,并且删除我们直接 cv 的代码 -->
|
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>
|
2024-06-29 19:00:09 +08:00
|
|
|
|
<version>2.14.0</version>
|
2024-07-27 22:36:08 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2024-03-14 20:16:07 +08:00
|
|
|
|
</dependency>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
|
2024-07-03 21:11:10 +08:00
|
|
|
|
<!-- Test 测试相关 -->
|
2024-03-24 20:10:34 +08:00
|
|
|
|
<dependency>
|
2024-07-06 08:56:36 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2024-05-16 22:42:39 +08:00
|
|
|
|
<scope>test</scope>
|
2024-03-24 20:10:34 +08:00
|
|
|
|
</dependency>
|
2024-03-12 21:07:09 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|