langchain4j

Форк
1
94 строки · 3.1 Кб
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
    <modelVersion>4.0.0</modelVersion>
6

7
    <parent>
8
        <groupId>dev.langchain4j</groupId>
9
        <artifactId>langchain4j-parent</artifactId>
10
        <version>0.29.0-SNAPSHOT</version>
11
        <relativePath>../langchain4j-parent/pom.xml</relativePath>
12
    </parent>
13

14
    <artifactId>langchain4j-pinecone</artifactId>
15
    <name>LangChain4j :: Integration :: Pinecone</name>
16

17
    <dependencies>
18

19
        <dependency>
20
            <groupId>dev.langchain4j</groupId>
21
            <artifactId>langchain4j-core</artifactId>
22
        </dependency>
23

24
        <dependency>
25
            <groupId>io.pinecone</groupId>
26
            <artifactId>pinecone-client</artifactId>
27
            <version>0.6.0</version>
28
            <exclusions>
29
                <!-- CVE-2023-44487 -->
30
                <exclusion>
31
                    <groupId>io.netty</groupId>
32
                    <artifactId>netty-codec-http2</artifactId>
33
                </exclusion>
34
                <!-- CVE-2023-3635 -->
35
                <exclusion>
36
                    <groupId>com.squareup.okio</groupId>
37
                    <artifactId>okio-jvm</artifactId>
38
                </exclusion>
39
                <!-- CVE-2020-29582 -->
40
                <exclusion>
41
                    <groupId>org.jetbrains.kotlin</groupId>
42
                    <artifactId>kotlin-stdlib</artifactId>
43
                </exclusion>
44
            </exclusions>
45
        </dependency>
46
        <dependency>
47
            <groupId>io.netty</groupId>
48
            <artifactId>netty-codec-http2</artifactId>
49
            <version>${netty.version}</version>
50
        </dependency>
51

52
        <dependency>
53
            <groupId>org.projectlombok</groupId>
54
            <artifactId>lombok</artifactId>
55
            <scope>provided</scope>
56
        </dependency>
57

58
        <dependency>
59
            <groupId>dev.langchain4j</groupId>
60
            <artifactId>langchain4j-core</artifactId>
61
            <classifier>tests</classifier>
62
            <type>test-jar</type>
63
            <scope>test</scope>
64
        </dependency>
65

66
        <dependency>
67
            <groupId>org.junit.jupiter</groupId>
68
            <artifactId>junit-jupiter-engine</artifactId>
69
            <scope>test</scope>
70
        </dependency>
71

72
        <!-- junit-jupiter-params should be declared explicitly
73
        to run parameterized tests inherited from EmbeddingStore*IT-->
74
        <dependency>
75
            <groupId>org.junit.jupiter</groupId>
76
            <artifactId>junit-jupiter-params</artifactId>
77
            <scope>test</scope>
78
        </dependency>
79

80
        <dependency>
81
            <groupId>org.assertj</groupId>
82
            <artifactId>assertj-core</artifactId>
83
            <scope>test</scope>
84
        </dependency>
85

86
        <dependency>
87
            <groupId>dev.langchain4j</groupId>
88
            <artifactId>langchain4j-embeddings-all-minilm-l6-v2-q</artifactId>
89
            <scope>test</scope>
90
        </dependency>
91

92
    </dependencies>
93

94
</project>

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.