pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <parent>
  6. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao-module-ai</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-spring-boot-starter-ai</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>AI 大模型拓展,接入国内外大模型</description>
  14. <properties>
  15. <spring-ai.version>1.0.0-M1</spring-ai.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.ai</groupId>
  20. <artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
  21. <version>${spring-ai.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.ai</groupId>
  25. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  26. <version>${spring-ai.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.ai</groupId>
  30. <artifactId>spring-ai-stability-ai-spring-boot-starter</artifactId>
  31. <version>${spring-ai.version}</version>
  32. </dependency>
  33. <!-- <dependency>-->
  34. <!-- <groupId>org.springframework.ai</groupId>-->
  35. <!-- <artifactId>spring-ai-vertex-ai-gemini</artifactId>-->
  36. <!-- <version>1.0.3</version>-->
  37. <!-- </dependency>-->
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-common</artifactId>
  41. </dependency>
  42. <!-- 阿里云 通义千问 -->
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>dashscope-sdk-java</artifactId>
  46. <version>2.11.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>junit</groupId>
  50. <artifactId>junit</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>