普兆健康管家后端代码仓库
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.

187 lines
6.9 KiB

  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>org.jeecgframework.boot</groupId>
  8. <artifactId>jeecg-boot-module</artifactId>
  9. <version>3.8.1</version>
  10. </parent>
  11. <artifactId>jeecg-boot-module-airag</artifactId>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>https://maven.aliyun.com/repository/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <properties>
  31. <kotlin.version>1.6.21</kotlin.version>
  32. <liteflow.version>2.12.4.1</liteflow.version>
  33. <langchain4j.version>0.35.0</langchain4j.version>
  34. <apache-tika.version>2.9.1</apache-tika.version>
  35. </properties>
  36. <dependencies>
  37. <!-- system单体 api-->
  38. <dependency>
  39. <groupId>org.jeecgframework.boot</groupId>
  40. <artifactId>jeecg-system-local-api</artifactId>
  41. </dependency>
  42. <!-- 微服务starter和system微服务 api
  43. <dependency>
  44. <groupId>org.jeecgframework.boot</groupId>
  45. <artifactId>jeecg-boot-starter-cloud</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jeecgframework.boot</groupId>
  49. <artifactId>jeecg-system-cloud-api</artifactId>
  50. </dependency>-->
  51. <!-- aiflow依赖 -->
  52. <dependency>
  53. <groupId>org.jeecgframework.boot</groupId>
  54. <artifactId>jeecg-aiflow</artifactId>
  55. <version>1.1.1</version>
  56. </dependency>
  57. <!-- beigin 这两个依赖太多每个包50M左右,如果你发布需要使用,请把<scope>provided</scope>删掉 -->
  58. <dependency>
  59. <groupId>org.jetbrains.kotlin</groupId>
  60. <artifactId>kotlin-scripting-jsr223</artifactId>
  61. <version>${kotlin.version}</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.yomahub</groupId>
  66. <artifactId>liteflow-script-graaljs</artifactId>
  67. <version>${liteflow.version}</version>
  68. <scope>provided</scope>
  69. </dependency>
  70. <!-- end 这两个依赖太多每个包50M左右,如果你发布需要使用,请把<scope>provided</scope>删掉 -->
  71. <!-- aiflow 脚本依赖 -->
  72. <dependency>
  73. <groupId>com.yomahub</groupId>
  74. <artifactId>liteflow-script-groovy</artifactId>
  75. <version>${liteflow.version}</version>
  76. <scope>runtime</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.yomahub</groupId>
  80. <artifactId>liteflow-script-kotlin</artifactId>
  81. <version>${liteflow.version}</version>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>org.jetbrains.kotlin</groupId>
  85. <artifactId>kotlin-scripting-jsr223</artifactId>
  86. </exclusion>
  87. </exclusions>
  88. <scope>runtime</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.yomahub</groupId>
  92. <artifactId>liteflow-script-aviator</artifactId>
  93. <version>${liteflow.version}</version>
  94. <scope>runtime</scope>
  95. <exclusions>
  96. <exclusion>
  97. <artifactId>aviator</artifactId>
  98. <groupId>com.googlecode.aviator</groupId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <!-- aiflow 脚本依赖 -->
  103. <!-- langChain4j model support -->
  104. <dependency>
  105. <groupId>dev.langchain4j</groupId>
  106. <artifactId>langchain4j-ollama</artifactId>
  107. <version>${langchain4j.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>dev.langchain4j</groupId>
  111. <artifactId>langchain4j-zhipu-ai</artifactId>
  112. <version>${langchain4j.version}</version>
  113. <exclusions>
  114. <exclusion>
  115. <artifactId>checker-qual</artifactId>
  116. <groupId>org.checkerframework</groupId>
  117. </exclusion>
  118. <exclusion>
  119. <artifactId>guava</artifactId>
  120. <groupId>com.google.guava</groupId>
  121. </exclusion>
  122. </exclusions>
  123. </dependency>
  124. <dependency>
  125. <groupId>dev.langchain4j</groupId>
  126. <artifactId>langchain4j-qianfan</artifactId>
  127. <version>${langchain4j.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>dev.langchain4j</groupId>
  131. <artifactId>langchain4j-dashscope</artifactId>
  132. <version>${langchain4j.version}</version>
  133. <exclusions>
  134. <exclusion>
  135. <groupId>org.slf4j</groupId>
  136. <artifactId>slf4j-simple</artifactId>
  137. </exclusion>
  138. <exclusion>
  139. <artifactId>okio</artifactId>
  140. <groupId>com.squareup.okio</groupId>
  141. </exclusion>
  142. </exclusions>
  143. </dependency>
  144. <!-- langChain4j vextor support -->
  145. <dependency>
  146. <groupId>dev.langchain4j</groupId>
  147. <artifactId>langchain4j-pgvector</artifactId>
  148. <version>${langchain4j.version}</version>
  149. </dependency>
  150. <!-- langChain4j Document Parser -->
  151. <dependency>
  152. <groupId>org.apache.tika</groupId>
  153. <artifactId>tika-core</artifactId>
  154. <version>${apache-tika.version}</version>
  155. <exclusions>
  156. <exclusion>
  157. <artifactId>commons-io</artifactId>
  158. <groupId>commons-io</groupId>
  159. </exclusion>
  160. </exclusions>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.tika</groupId>
  164. <artifactId>tika-parser-html-module</artifactId>
  165. <version>${apache-tika.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.tika</groupId>
  169. <artifactId>tika-parser-pdf-module</artifactId>
  170. <version>${apache-tika.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.tika</groupId>
  174. <artifactId>tika-parser-text-module</artifactId>
  175. <version>${apache-tika.version}</version>
  176. </dependency>
  177. </dependencies>
  178. </project>