大语言模型
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pom.xml 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <artifactId>ruoyi-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.ruoyi</groupId>
  19. <artifactId>ruoyi-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>dev.langchain4j</groupId>
  23. <artifactId>langchain4j-core</artifactId>
  24. <version>0.35.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>dev.langchain4j</groupId>
  28. <artifactId>langchain4j</artifactId>
  29. <version>0.35.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>dev.langchain4j</groupId>
  33. <artifactId>langchain4j-document-parser-apache-pdfbox</artifactId>
  34. <version>0.35.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>dev.langchain4j</groupId>
  39. <artifactId>langchain4j-embeddings-bge-small-zh-v15</artifactId>
  40. <version>0.35.0</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.noear</groupId>
  45. <artifactId>solon-ai-mcp</artifactId>
  46. <version>3.3.1</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>*</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. </dependencies>
  55. </project>