pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.tycoding</groupId>
  7. <artifactId>langchat</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>langchat-core</artifactId>
  12. <version>${revision}</version>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>cn.tycoding</groupId>
  17. <artifactId>langchat-common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>dev.langchain4j</groupId>
  21. <artifactId>langchain4j</artifactId>
  22. <version>${langchain4j.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>dev.langchain4j</groupId>
  26. <artifactId>langchain4j-open-ai</artifactId>
  27. <version>${langchain4j.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>dev.langchain4j</groupId>
  31. <artifactId>langchain4j-ollama</artifactId>
  32. <version>${langchain4j.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>dev.langchain4j</groupId>
  36. <artifactId>langchain4j-embeddings</artifactId>
  37. <version>${langchain4j.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>dev.langchain4j</groupId>
  41. <artifactId>langchain4j-pinecone</artifactId>
  42. <version>${langchain4j.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>dev.langchain4j</groupId>
  46. <artifactId>langchain4j-pgvector</artifactId>
  47. <version>${langchain4j.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>dev.langchain4j</groupId>
  51. <artifactId>langchain4j-embeddings-all-minilm-l6-v2</artifactId>
  52. <version>${langchain4j.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>dev.langchain4j</groupId>
  56. <artifactId>langchain4j-document-parser-apache-pdfbox</artifactId>
  57. <version>${langchain4j.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>dev.langchain4j</groupId>
  61. <artifactId>langchain4j-vertex-ai-gemini</artifactId>
  62. <version>${langchain4j.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>dev.langchain4j</groupId>
  66. <artifactId>langchain4j-chatglm</artifactId>
  67. <version>${langchain4j.version}</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>