赞
踩
推荐访问官网:Getting Started :: https://docs.spring.io/spring-ai/reference/index.html
Spring AI项目旨在简化包含人工智能功能的应用程序的开发,同时避免不必要的复杂性。
该项目从著名的Python项目(如LangChain和LlamaIndex)中汲取灵感,但Spring AI并不是这些项目的直接移植。该项目建立的信念是,下一波生成式人工智能应用程序将不仅适用于Python开发人员,而且将在许多编程语言中无处不在。
Spring AI的核心是提供抽象,作为开发AI应用程序的基础
Spring AI提供以下特性:
该特性集允许您实现常见的用例,例如“对文档的问答”或“与文档聊天”。
概念部分提供了AI概念及其在Spring AI中的表示的高级概述。
入门部分向您展示了如何创建第一个AI应用程序。接下来的部分将使用以代码为中心的方法深入研究每个组件和常见用例
本节提供了如何开始使用Spring AI的起点。
您应该根据您的需要遵循以下每个部分中的步骤。
Spring CLI 简化了直接从终端创建新应用程序的过程。和熟悉 JavaScript 生态系统的人的“create-react-app”命令一样,Spring CLI 提供了一个用于创建基于 Spring 的项目spring boot new的命令。Spring CLI 还提供了将外部代码库集成到当前项目中的功能,以及许多其他生产力功能。
若要开始创建 Spring AI 应用程序,请按照下列步骤操作:
下载最新的 Spring CLI版本并按照安装说明进行操作。
要创建基于 OpenAI 的简单应用程序,请使用以下命令:
spring boot new --from ai --name myai
请参考生成 README.md 的文件,以获取有关获取 OpenAI API 密钥和运行您的第一个 AI 应用程序的指导。
若要将相同的简单 AI 应用程序添加到现有项目,请执行:
spring boot add ai
Spring CLI 允许用户定义自己的项目目录,这些目录定义您可以创建哪些项目或将其添加到现有代码库中。
跳转到 start.spring.io,然后选择要在新应用程序中使用的 AI 模型和矢量存储。
如果您希望手动添加依赖项代码段,请按照以下部分中的说明进行操作。
要使用 Milestone 和 Snapshot 版本,您需要在构建文件中添加对 Spring Milestone 和/或 Snapshot 存储库的引用。
对于 Maven项目,请根据需要添加以下存储库定义:
spring-milestones Spring Milestones https://repo.spring.io/milestone false spring-snapshots Spring Snapshots https://repo.spring.io/snapshot false 对于 Gradle构建的项目,请根据需要添加以下存储库定义:repositories {
mavenCentral()
maven { url ‘https://repo.spring.io/milestone’ }
maven { url ‘https://repo.spring.io/snapshot’ }
}
Spring AI 清单 (BOM) 声明给定版本的 Spring AI 使用的所有依赖项的推荐版本。使用应用程序生成脚本中的 BOM 可以避免您自己指定和维护依赖项版本。相反,您使用的 BOM 版本决定了使用的依赖项版本。它还可确保默认情况下使用受支持和测试的依赖项版本,除非你选择覆盖它们。
如果您是 Maven 用户,则可以通过将以下内容添加到 pom.xml 文件中来使用 BOM
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-bom</artifactId>
<version>0.8.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Gradle 用户还可以利用 Gradle (5.0+) 原生支持使用 Maven BOM 声明依赖项约束,从而使用 Spring AI BOM。这是通过向 Gradle 构建脚本的依赖项部分添加“platform”依赖项处理程序方法来实现的。如下面的代码片段所示,然后可以为您希望使用的一个或多个spring-ai模块(例如spring-ai-openai)的Starter Dependencies进行无版本声明。
dependencies {
implementation platform(“org.springframework.ai:spring-ai-bom:0.8.0”)
// Replace the following with the starter dependencies of specific modules you wish to use
implementation ‘org.springframework.ai:spring-ai-openai’
}
文档中的以下每个部分都显示了需要添加到项目生成系统中的依赖项。
5.1 嵌入模型
Embeddings API
Spring AI OpenAI Embeddings
Spring AI Azure OpenAI Embeddings
Spring AI Ollama Embeddings
Spring AI Transformers (ONNX) Embeddings
Spring AI PostgresML Embeddings
Spring AI Bedrock Cohere Embeddings
Spring AI Bedrock Titan Embeddings
Spring AI VertexAI Embeddings
5.2 聊天对话模型
Chat Completion API
OpenAI Chat Completion
Microsoft Azure Open AI Chat Completion
Ollama Chat Completion
HuggingFace Chat Completion (no streaming support)
Google Vertex Chat Completion (no streaming support)
Amazon Bedrock
Cohere Chat Completion
Llama2 Chat Completion
Titan Chat Completion
Anthropic Chat Completion
5.3 图像生成模型
Image Generation API
OpenAI Image Generation
StabilityAI Image Generation
5.4 向量数据库
Vector Database API
Azure Vector Search - The Azure vector store.
ChromaVectorStore - The Chroma vector store.
MilvusVectorStore - The Milvus vector store.
Neo4jVectorStore - The Neo4j vector store.
PgVectorStore - The PostgreSQL/PGVector vector store.
PineconeVectorStore - PineCone vector store.
RedisVectorStore - The Redis vector store.
WeaviateVectorStore - The Weaviate vector store.
SimpleVectorStore - A simple (in-memory) implementation of persistent vector storage, good for educational purposes.
你可以从GitHub上clone这些工程开始学习。
6.1 OpenAI
github.com/rd-1-2022/ai-openai-helloworld
6.2 Azure OpenAI
github.com/rd-1-2022/ai-azure-openai-helloworld
github.com/rd-1-2022/ai-azure-stuff-prompt
github.com/rd-1-2022/ai-azure-prompt-template
github.com/rd-1-2022/ai-azure-openai-prompt-roles
github.com/rd-1-2022/ai-azure-retrieval-augmented-generation
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。