pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>space.anyi</groupId>
  7. <artifactId>SpringAiAlibaba-learn</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <description>学习Spring AI Alibaba的项目</description>
  10. <properties>
  11. <maven.compiler.source>21</maven.compiler.source>
  12. <maven.compiler.target>21</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <!-- Source: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. <version>3.5.10</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.ai</groupId>
  24. <artifactId>spring-ai-starter-model-openai</artifactId>
  25. <version>1.1.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.ai</groupId>
  29. <artifactId>spring-ai-starter-vector-store-pgvector</artifactId>
  30. <version>1.1.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.ai</groupId>
  34. <artifactId>spring-ai-rag</artifactId>
  35. <version>1.1.2</version>
  36. </dependency>
  37. </dependencies>
  38. </project>