pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <parent>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <artifactId>yudao-module-ai</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>yudao-spring-boot-starter-ai</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.springboot.ai</groupId>
  15. <artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
  16. <version>1.0.3</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.springboot.ai</groupId>
  20. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  21. <version>1.0.3</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.springboot.ai</groupId>
  25. <artifactId>spring-ai-stability-ai</artifactId>
  26. <version>1.0.3</version>
  27. </dependency>
  28. <!-- <dependency>-->
  29. <!-- <groupId>io.springboot.ai</groupId>-->
  30. <!-- <artifactId>spring-ai-vertex-ai-gemini</artifactId>-->
  31. <!-- <version>1.0.3</version>-->
  32. <!-- </dependency>-->
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-common</artifactId>
  36. </dependency>
  37. <!-- 阿里云 通义千问 -->
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>dashscope-sdk-java</artifactId>
  41. <version>2.11.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>