You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.3 KiB

6 days ago
  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. <artifactId>chenhai</artifactId>
  7. <groupId>com.chenhai</groupId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>chenhai-ai</artifactId>
  12. <description>
  13. ai系统模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.chenhai</groupId>
  19. <artifactId>chenhai-common</artifactId>
  20. </dependency>
  21. <!-- 核心模块-->
  22. <dependency>
  23. <groupId>com.chenhai</groupId>
  24. <artifactId>chenhai-framework</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.ai</groupId>
  32. <artifactId>spring-ai-starter-model-zhipuai</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.ai</groupId>
  36. <artifactId>spring-ai-starter-mcp-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba.cloud.ai</groupId>
  40. <artifactId>spring-ai-alibaba-graph-core</artifactId>
  41. <!-- <version>1.0.0.4</version>-->
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.ai</groupId>
  45. <artifactId>spring-ai-starter-model-ollama</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.bitbucket.cowwoc</groupId>
  54. <artifactId>diff-match-patch</artifactId>
  55. <version>1.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.vladsch.flexmark</groupId>
  59. <artifactId>flexmark-all</artifactId>
  60. <version>0.64.8</version>
  61. </dependency>
  62. </dependencies>
  63. </project>