12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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>
- <azure.version>1.0.0-beta.12</azure.version>
- <chatglm.version>release-V4-2.3.0</chatglm.version>
- <okhttp.version>2.7.5</okhttp.version>
- <jtokkit.version>0.5.0</jtokkit.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-core</artifactId>
- </dependency>
- <!-- 序列化模块 -->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-json</artifactId>
- </dependency>
- <!-- redis模块 -->
- <dependency>
- <groupId>org.ruoyi</groupId>
- <artifactId>ruoyi-common-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.azure</groupId>
- <artifactId>azure-ai-openai</artifactId>
- <version>${azure.version}</version>
- </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>${jtokkit.version}</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>cn.bigmodel.openapi</groupId>
- <artifactId>oapi-java-sdk</artifactId>
- <version>${chatglm.version}</version>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp</groupId>
- <artifactId>okhttp</artifactId>
- <version>${okhttp.version}</version>
- </dependency>
- </dependencies>
- </project>
|