semantic-kernel

Форк
0
95 строк · 3.4 Кб
1
<?xml version="1.0" encoding="UTF-8"?>
2

3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5

6
    <parent>
7
        <groupId>com.microsoft.semantic-kernel</groupId>
8
        <artifactId>semantickernel-parent</artifactId>
9
        <version>0.2.10-alpha-SNAPSHOT</version>
10
        <relativePath>../pom.xml</relativePath>
11
    </parent>
12

13
    <artifactId>semantickernel-core</artifactId>
14
    <packaging>jar</packaging>
15
    <name>Semantic Kernel Core</name>
16
    <description>Implementation of the Semantic Kernel</description>
17
    <dependencies>
18
        <dependency>
19
            <groupId>org.slf4j</groupId>
20
            <artifactId>slf4j-api</artifactId>
21
        </dependency>
22
        <dependency>
23
            <groupId>com.azure</groupId>
24
            <artifactId>azure-core-http-netty</artifactId>
25
        </dependency>
26
        <dependency>
27
            <groupId>io.projectreactor</groupId>
28
            <artifactId>reactor-core</artifactId>
29
        </dependency>
30
        <dependency>
31
            <groupId>com.azure</groupId>
32
            <artifactId>azure-ai-openai</artifactId>
33
            <scope>compile</scope>
34
        </dependency>
35
        <dependency>
36
            <groupId>com.fasterxml.jackson.core</groupId>
37
            <artifactId>jackson-databind</artifactId>
38
            <scope>compile</scope>
39
        </dependency>
40
        <dependency>
41
            <groupId>org.apache.logging.log4j</groupId>
42
            <artifactId>log4j-api</artifactId>
43
            <scope>test</scope>
44
        </dependency>
45
        <dependency>
46
            <groupId>org.apache.logging.log4j</groupId>
47
            <artifactId>log4j-core</artifactId>
48
            <scope>test</scope>
49
        </dependency>
50
        <dependency>
51
            <groupId>org.apache.logging.log4j</groupId>
52
            <artifactId>log4j-slf4j2-impl</artifactId>
53
            <scope>test</scope>
54
        </dependency>
55
        <dependency>
56
            <groupId>org.mockito</groupId>
57
            <artifactId>mockito-core</artifactId>
58
            <scope>test</scope>
59
        </dependency>
60
        <dependency>
61
            <groupId>org.junit.jupiter</groupId>
62
            <artifactId>junit-jupiter</artifactId>
63
            <scope>test</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.junit.jupiter</groupId>
67
            <artifactId>junit-jupiter-api</artifactId>
68
            <scope>test</scope>
69
        </dependency>
70
        <dependency>
71
            <groupId>com.microsoft.semantic-kernel</groupId>
72
            <artifactId>semantickernel-api</artifactId>
73
        </dependency>
74
        <dependency>
75
            <groupId>com.microsoft.semantic-kernel</groupId>
76
            <artifactId>semantickernel-connectors-ai-openai</artifactId>
77
            <scope>test</scope>
78
        </dependency>
79
        <dependency>
80
            <groupId>com.microsoft.semantic-kernel</groupId>
81
            <artifactId>semantickernel-plugin-core</artifactId>
82
            <scope>test</scope>
83
        </dependency>
84
        <dependency>
85
            <groupId>com.microsoft.semantic-kernel</groupId>
86
            <artifactId>semantickernel-planners</artifactId>
87
            <scope>test</scope>
88
        </dependency>
89

90
        <dependency>
91
            <groupId>jakarta.inject</groupId>
92
            <artifactId>jakarta.inject-api</artifactId>
93
        </dependency>
94
    </dependencies>
95
</project>

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

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

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

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