| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 | <?xml version="1.0" encoding="UTF-8"?><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">    <parent>        <groupId>org.ruoyi</groupId>        <artifactId>ruoyi-common</artifactId>        <version>${revision}</version>        <relativePath>../pom.xml</relativePath>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>ruoyi-common-chat</artifactId>    <description>        ruoyi-common-chat 模块    </description>    <properties>        <retrofit2.version>2.9.0</retrofit2.version>    </properties>    <dependencies>        <dependency>            <groupId>org.ruoyi</groupId>            <artifactId>ruoyi-common-core</artifactId>        </dependency>        <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>            <version>8.0.33</version>        </dependency>        <dependency>            <groupId>com.azure</groupId>            <artifactId>azure-ai-openai</artifactId>            <version>1.0.0-beta.12</version>        </dependency>        <dependency>            <groupId>io.github.ollama4j</groupId>            <artifactId>ollama4j</artifactId>            <version>1.0.79</version>        </dependency>        <!-- 序列化模块 -->        <dependency>            <groupId>org.ruoyi</groupId>            <artifactId>ruoyi-common-json</artifactId>            <version>1.0.0</version>        </dependency>        <dependency>            <groupId>org.ruoyi</groupId>            <artifactId>ruoyi-common-redis</artifactId>        </dependency>        <dependency>            <groupId>org.ruoyi</groupId>            <artifactId>ruoyi-common-satoken</artifactId>        </dependency>        <dependency>            <groupId>com.squareup.retrofit2</groupId>            <artifactId>retrofit</artifactId>            <version>${retrofit2.version}</version>        </dependency>        <dependency>            <groupId>com.squareup.retrofit2</groupId>            <artifactId>converter-jackson</artifactId>            <version>${retrofit2.version}</version>        </dependency>        <dependency>            <groupId>com.squareup.retrofit2</groupId>            <artifactId>adapter-rxjava2</artifactId>            <version>${retrofit2.version}</version>        </dependency>        <dependency>            <groupId>com.knuddels</groupId>            <artifactId>jtokkit</artifactId>            <version>0.5.0</version>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-all</artifactId>            <version>5.8.12</version>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-websocket</artifactId>            <exclusions>                <exclusion>                    <groupId>org.springframework.boot</groupId>                    <artifactId>spring-boot-starter-tomcat</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>        </dependency>        <dependency>            <groupId>cn.bigmodel.openapi</groupId>            <artifactId>oapi-java-sdk</artifactId>            <version>release-V4-2.3.0</version>        </dependency>        <dependency>            <groupId>com.squareup.okhttp</groupId>            <artifactId>okhttp</artifactId>            <version>2.7.5</version>            <scope>compile</scope>        </dependency>    </dependencies></project>
 |