大语言模型
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.

pom.xml 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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-agent</artifactId>
  12. <description>
  13. cmc智能体
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-framework</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.ruoyi</groupId>
  22. <artifactId>ruoyi-common</artifactId>
  23. </dependency>
  24. <!-- 向量数据库-->
  25. <dependency>
  26. <groupId>io.milvus</groupId>
  27. <artifactId>milvus-sdk-java</artifactId>
  28. <version>2.3.3</version>
  29. </dependency>
  30. <!-- LangChain4j -->
  31. <dependency>
  32. <groupId>dev.langchain4j</groupId>
  33. <artifactId>langchain4j</artifactId>
  34. <version>0.35.0</version>
  35. </dependency>
  36. <!-- LangChain4j Milvus 集成 -->
  37. <dependency>
  38. <groupId>dev.langchain4j</groupId>
  39. <artifactId>langchain4j-milvus</artifactId>
  40. <version>0.35.0</version> <!-- 版本需与核心一致 -->
  41. </dependency>
  42. <!-- LangChain4j embedding 集成 -->
  43. <dependency>
  44. <groupId>dev.langchain4j</groupId>
  45. <artifactId>langchain4j-embeddings-bge-small-zh-v15</artifactId>
  46. <version>0.35.0</version>
  47. </dependency>
  48. <!-- LangChain4j pdfParser 集成 -->
  49. <dependency>
  50. <groupId>dev.langchain4j</groupId>
  51. <artifactId>langchain4j-document-parser-apache-pdfbox</artifactId>
  52. <version>0.35.0</version>
  53. </dependency>
  54. </dependencies>
  55. </project>