大语言模型
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

pom.xml 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-agent</artifactId>
  13. <description>
  14. cmc智能体
  15. </description>
  16. <properties>
  17. <solon.version>3.3.3</solon.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.noear</groupId>
  22. <artifactId>solon-lib</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.noear</groupId>
  26. <artifactId>solon-web-servlet</artifactId>
  27. </dependency>
  28. <!-- Spring Boot Web -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <!-- Solon模型上下文协议 -->
  34. <dependency>
  35. <groupId>org.noear</groupId>
  36. <artifactId>solon-ai-mcp</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>*</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi-scratchpad</artifactId>
  51. <version>5.2.3</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba.fastjson2</groupId>
  55. <artifactId>fastjson2</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>dev.langchain4j</groupId>
  59. <artifactId>langchain4j-embeddings-bge-small-zh-v15</artifactId>
  60. <version>0.35.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.milvus</groupId>
  64. <artifactId>milvus-sdk-java</artifactId>
  65. <version>2.3.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>dev.langchain4j</groupId>
  69. <artifactId>langchain4j</artifactId>
  70. <version>0.35.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>dev.langchain4j</groupId>
  74. <artifactId>langchain4j-document-parser-apache-pdfbox</artifactId>
  75. <version>0.35.0</version>
  76. </dependency>
  77. </dependencies>
  78. <dependencyManagement>
  79. <dependencies>
  80. <dependency>
  81. <groupId>org.noear</groupId>
  82. <artifactId>solon-parent</artifactId>
  83. <version>${solon.version}</version>
  84. <type>pom</type>
  85. <scope>import</scope>
  86. </dependency>
  87. </dependencies>
  88. </dependencyManagement>
  89. <build>
  90. <finalName>${project.name}</finalName>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.11.0</version>
  96. <configuration>
  97. <compilerArgument>-parameters</compilerArgument>
  98. <source>8</source>
  99. <target>8</target>
  100. <encoding>UTF-8</encoding>
  101. </configuration>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-assembly-plugin</artifactId>
  106. <configuration>
  107. <finalName>${project.name}</finalName>
  108. <appendAssemblyId>false</appendAssemblyId>
  109. <descriptorRefs>
  110. <descriptorRef>jar-with-dependencies</descriptorRef>
  111. </descriptorRefs>
  112. <archive>
  113. <manifest>
  114. <mainClass>webapp.HelloApp</mainClass>
  115. </manifest>
  116. </archive>
  117. </configuration>
  118. <executions>
  119. <execution>
  120. <id>make-assembly</id>
  121. <phase>package</phase>
  122. <goals>
  123. <goal>single</goal>
  124. </goals>
  125. </execution>
  126. </executions>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. <repositories>
  131. <repository>
  132. <id>sonatype-snapshots</id>
  133. <name>Sonatype Snapshots</name>
  134. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  135. <releases>
  136. <enabled>false</enabled>
  137. </releases>
  138. </repository>
  139. </repositories>
  140. <pluginRepositories>
  141. <pluginRepository>
  142. <id>sonatype-snapshots</id>
  143. <name>Sonatype Snapshots</name>
  144. <url>https://central.sonatype.com/repository/maven-snapshots/</url>
  145. <releases>
  146. <enabled>false</enabled>
  147. </releases>
  148. </pluginRepository>
  149. </pluginRepositories>
  150. </project>