pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <!-- TODO 芋艿:等 spring-ai 官方发布后,需要把 groupId 改下 -->
  43. <dependency>
  44. <groupId>group.springframework.ai</groupId>
  45. <artifactId>spring-ai-qianfan-spring-boot-starter</artifactId>
  46. <version>1.1.0</version>
  47. </dependency>
  48. <!-- 阿里云 通义千问 -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>dashscope-sdk-java</artifactId>
  52. <version>2.11.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>junit</groupId>
  56. <artifactId>junit</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. </project>