1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.sf</groupId>
- <artifactId>consumer-service-demo</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>spring-ai-demo</artifactId>
- <name>spring-ai-demo</name>
- <description>spring-ai-demo</description>
- <properties>
- <java.version>17</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.ai</groupId>-->
- <!-- <artifactId>spring-ai-transformers-spring-boot-starter</artifactId>-->
- <!-- </dependency>-->
- <!-- 整合redis向量数据库 -->
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-redis-store-spring-boot-starter</artifactId>
- </dependency>
- <!-- 整合tika文档处理工具 -->
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-tika-document-reader</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <!-- 百度智能云 -->
- <dependency>
- <groupId>com.baidu.aip</groupId>
- <artifactId>java-sdk</artifactId>
- </dependency>
- <dependency>
- <groupId>com.googlecode.soundlibs</groupId>
- <artifactId>mp3spi</artifactId>
- </dependency>
- <!-- 增加前端展示 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring.boot.version}</version>
- </plugin>
- </plugins>
- </build>
- </project>
|