pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2024 LangChat. TyCoding All Rights Reserved.
  4. ~
  5. ~ Licensed under the GNU Affero General Public License, Version 3 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ https://www.gnu.org/licenses/agpl-3.0.html
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>cn.tycoding</groupId>
  22. <artifactId>langchat-ai</artifactId>
  23. <version>${revision}</version>
  24. </parent>
  25. <artifactId>langchat-ai-core</artifactId>
  26. <version>${revision}</version>
  27. <dependencies>
  28. <dependency>
  29. <groupId>cn.tycoding</groupId>
  30. <artifactId>langchat-common-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.tycoding</groupId>
  34. <artifactId>langchat-common-ai</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.tycoding</groupId>
  38. <artifactId>langchat-ai-biz</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>dev.langchain4j</groupId>
  42. <artifactId>langchain4j</artifactId>
  43. <version>${langchain4j.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>dev.langchain4j</groupId>
  47. <artifactId>langchain4j-core</artifactId>
  48. <version>${langchain4j.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>dev.langchain4j</groupId>
  52. <artifactId>langchain4j-open-ai</artifactId>
  53. <version>${langchain4j.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>dev.langchain4j</groupId>
  57. <artifactId>langchain4j-ollama</artifactId>
  58. <version>${langchain4j.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>dev.langchain4j</groupId>
  62. <artifactId>langchain4j-qianfan</artifactId>
  63. <version>${langchain4j.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>dev.langchain4j</groupId>
  67. <artifactId>langchain4j-dashscope</artifactId>
  68. <version>${langchain4j.version}</version>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-simple</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>dev.langchain4j</groupId>
  78. <artifactId>langchain4j-zhipu-ai</artifactId>
  79. <version>${langchain4j.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>dev.langchain4j</groupId>
  83. <artifactId>langchain4j-embeddings</artifactId>
  84. <version>${langchain4j.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>dev.langchain4j</groupId>
  88. <artifactId>langchain4j-redis</artifactId>
  89. <version>${langchain4j.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>dev.langchain4j</groupId>
  93. <artifactId>langchain4j-pgvector</artifactId>
  94. <version>${langchain4j.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>dev.langchain4j</groupId>
  98. <artifactId>langchain4j-milvus</artifactId>
  99. <version>${langchain4j.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>dev.langchain4j</groupId>
  103. <artifactId>langchain4j-elasticsearch</artifactId>
  104. <version>${langchain4j.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>dev.langchain4j</groupId>
  108. <artifactId>langchain4j-embedding-store-filter-parser-sql</artifactId>
  109. <version>${langchain4j.version}</version>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>com.github.jsqlparser</groupId>
  113. <artifactId>jsqlparser</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>dev.langchain4j</groupId>
  119. <artifactId>langchain4j-document-parser-apache-tika</artifactId>
  120. <version>${langchain4j.version}</version>
  121. </dependency>
  122. </dependencies>
  123. </project>