langchain4j

Форк
1
102 строки · 3.2 Кб
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-azure-ai-search</artifactId>
15
    <name>LangChain4j :: Integration :: Azure AI Search</name>
16

17
    <dependencies>
18

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

24
        <dependency>
25
            <groupId>com.azure</groupId>
26
            <artifactId>azure-search-documents</artifactId>
27
            <exclusions>
28
                <exclusion>
29
                    <groupId>com.azure</groupId>
30
                    <artifactId>azure-core-serializer-json-jackson</artifactId>
31
                </exclusion>
32
            </exclusions>
33
        </dependency>
34

35
        <dependency>
36
            <groupId>dev.langchain4j</groupId>
37
            <artifactId>langchain4j-core</artifactId>
38
            <version>${project.parent.version}</version>
39
            <classifier>tests</classifier>
40
            <type>test-jar</type>
41
            <scope>test</scope>
42
        </dependency>
43

44
        <dependency>
45
            <groupId>dev.langchain4j</groupId>
46
            <artifactId>langchain4j-embeddings-all-minilm-l6-v2-q</artifactId>
47
            <scope>test</scope>
48
        </dependency>
49

50
        <dependency>
51
            <groupId>org.apache.logging.log4j</groupId>
52
            <artifactId>log4j-api</artifactId>
53
            <version>2.22.0</version>
54
            <scope>test</scope>
55
        </dependency>
56

57
        <dependency>
58
            <groupId>org.apache.logging.log4j</groupId>
59
            <artifactId>log4j-core</artifactId>
60
            <version>2.22.0</version>
61
            <scope>test</scope>
62
        </dependency>
63

64
        <dependency>
65
            <groupId>org.apache.logging.log4j</groupId>
66
            <artifactId>log4j-slf4j2-impl</artifactId>
67
            <version>2.20.0</version>
68
            <scope>test</scope>
69
        </dependency>
70

71
        <dependency>
72
            <groupId>org.junit.jupiter</groupId>
73
            <artifactId>junit-jupiter-engine</artifactId>
74
            <scope>test</scope>
75
        </dependency>
76

77
        <!-- junit-jupiter-params should be declared explicitly
78
                to run parameterized tests inherited from EmbeddingStore*IT-->
79
        <dependency>
80
            <groupId>org.junit.jupiter</groupId>
81
            <artifactId>junit-jupiter-params</artifactId>
82
            <scope>test</scope>
83
        </dependency>
84

85
        <dependency>
86
            <groupId>org.assertj</groupId>
87
            <artifactId>assertj-core</artifactId>
88
            <scope>test</scope>
89
        </dependency>
90

91
    </dependencies>
92

93
    <build>
94
        <plugins>
95
            <plugin>
96
                <groupId>org.honton.chas</groupId>
97
                <artifactId>license-maven-plugin</artifactId>
98
            </plugin>
99
        </plugins>
100
    </build>
101

102
</project>

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

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

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

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