pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.sf</groupId>
  7. <artifactId>consumer-service-demo</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-ai-demo</artifactId>
  11. <name>spring-ai-demo</name>
  12. <description>spring-ai-demo</description>
  13. <properties>
  14. <java.version>17</java.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.ai</groupId>
  23. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  24. </dependency>
  25. <!-- <dependency>-->
  26. <!-- <groupId>org.springframework.ai</groupId>-->
  27. <!-- <artifactId>spring-ai-transformers-spring-boot-starter</artifactId>-->
  28. <!-- </dependency>-->
  29. <!-- 整合redis向量数据库 -->
  30. <dependency>
  31. <groupId>org.springframework.ai</groupId>
  32. <artifactId>spring-ai-redis-store-spring-boot-starter</artifactId>
  33. </dependency>
  34. <!-- 整合tika文档处理工具 -->
  35. <dependency>
  36. <groupId>org.springframework.ai</groupId>
  37. <artifactId>spring-ai-tika-document-reader</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. </dependency>
  43. <!-- 百度智能云 -->
  44. <dependency>
  45. <groupId>com.baidu.aip</groupId>
  46. <artifactId>java-sdk</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.googlecode.soundlibs</groupId>
  50. <artifactId>mp3spi</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <version>${spring.boot.version}</version>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>