Skip to main content
Open In ColabOpen on GitHub

Bedrock

Amazon Bedrock 是一项完全托管的服务,提供来自领先AI公司的高性能基础模型(FMs)选择,如 AI21 LabsAnthropicCohereMetaStability AIAmazon,通过单一API提供,并附带一系列功能,帮助您构建具有安全性、隐私性和负责任AI的生成式AI应用程序。使用 Amazon Bedrock,您可以轻松地为您的用例实验和评估顶级FMs,使用微调和 Retrieval Augmented GenerationRAG)等技术,利用您的数据私下定制它们,并构建使用您的企业系统和数据源执行任务的代理。由于 Amazon Bedrock 是无服务器的,您无需管理任何基础设施,并且可以使用您已经熟悉的AWS服务,安全地将生成式AI功能集成并部署到您的应用程序中。

%pip install --upgrade --quiet  boto3
from langchain_aws import BedrockEmbeddings

embeddings = BedrockEmbeddings(
credentials_profile_name="bedrock-admin", region_name="us-east-1"
)
API Reference:BedrockEmbeddings
embeddings.embed_query("This is a content of the document")
embeddings.embed_documents(
["This is a content of the document", "This is another document"]
)
# async embed query
await embeddings.aembed_query("This is a content of the document")
# async embed documents
await embeddings.aembed_documents(
["This is a content of the document", "This is another document"]
)

这个页面有帮助吗?