migoo-spring-boot-starter-ai
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.migoo.springboot</groupId> <artifactId>migoo-spring-boot-starter-ai</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>migoo-framework-parent</artifactId> <groupId>xyz.migoo.springboot</groupId> <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>migoo-spring-boot-starter-ai</artifactId> <name>${project.artifactId}</name> <description>AI 大模型拓展,接入国内外大模型</description> <url>https://github.com/XiaoMiSum/springboot-migoo-framework</url> <licenses> <license> <name>MIT</name> <url>https://github.com/XiaoMiSum/migoo/blob/master/LICENSE</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:XiaoMiSum/springboot-migoo-framework.git</connection> <developerConnection>scm:git:git@github.com:XiaoMiSum/springboot-migoo-framework.git</developerConnection> <url>https://github.com/XiaoMiSum/springboot-migoo-framework</url> </scm> <developers> <developer> <name>xiao mi</name> <email>mi_xiao@qq.com</email> <organization>github</organization> <organizationUrl>https://github.com/XiaoMiSum/springboot-migoo-framework</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>xyz.migoo.springboot</groupId> <artifactId>migoo-spring-boot-starter-common</artifactId> <type>jar</type> </dependency> <!-- Spring AI Model 模型接入 --> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-openai-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-azure-openai-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-ollama-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-stability-ai-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <!-- 通义千问 --> <groupId>com.alibaba.cloud.ai</groupId> <artifactId>spring-ai-alibaba-starter</artifactId> <type>jar</type> </dependency> <dependency> <!-- 文心一言 --> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-qianfan-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <!-- 智谱 GLM --> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-zhipuai-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-minimax-spring-boot-starter</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-moonshot-spring-boot-starter</artifactId> <type>jar</type> </dependency> <!-- 向量存储:https://db-engines.com/en/ranking/vector+dbms --> <dependency> <!-- Qdrant:https://qdrant.tech/ --> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-qdrant-store</artifactId> <type>jar</type> </dependency> <dependency> <!-- Redis:https://redis.io/docs/latest/develop/get-started/vector-database/ --> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-redis-store</artifactId> <type>jar</type> </dependency> <dependency> <groupId>xyz.migoo.springboot</groupId> <artifactId>migoo-spring-boot-starter-redis</artifactId> <type>jar</type> </dependency> <dependency> <!-- Milvus:https://milvus.io/ --> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-milvus-store</artifactId> <type>jar</type> </dependency> <dependency> <!-- Tika:负责内容的解析 --> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-tika-document-reader</artifactId> <type>jar</type> <exclusions> <exclusion> <artifactId>spring-cloud-function-context</artifactId> <groupId>org.springframework.cloud</groupId> </exclusion> <exclusion> <artifactId>spring-cloud-function-core</artifactId> <groupId>org.springframework.cloud</groupId> </exclusion> </exclusions> </dependency> <!-- TinyFlow:AI 工作流 --> <dependency> <groupId>dev.tinyflow</groupId> <artifactId>tinyflow-java-core</artifactId> <type>jar</type> <exclusions> <exclusion> <!-- 解决 https://gitee.com/zhijiantianya/ruoyi-vue-pro/pulls/1318/ 问题 --> <groupId>com.agentsflex</groupId> <artifactId>agents-flex-store-elasticsearch</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>