跳转到内容

Bedrock 嵌入

如果您在 Colab 上打开这个笔记本,您可能需要安装 LlamaIndex 🦙。

%pip install llama-index-embeddings-bedrock
import os
from llama_index.embeddings.bedrock import BedrockEmbedding
embed_model = BedrockEmbedding(
aws_access_key_id=os.getenv("AWS_ACCESS_KEY_ID"),
aws_secret_access_key=os.getenv("AWS_SECRET_ACCESS_KEY"),
aws_session_token=os.getenv("AWS_SESSION_TOKEN"),
region_name="<aws-region>",
profile_name="<aws-profile>",
)
embedding = embed_model.get_text_embedding("hello world")

要查看 LlamaIndex 上 Amazon Bedrock 支持的模型列表,请按如下方式调用 BedrockEmbedding.list_supported_models()

from llama_index.embeddings.bedrock import BedrockEmbedding
import json
supported_models = BedrockEmbedding.list_supported_models()
print(json.dumps(supported_models, indent=2))

Amazon Bedrock Titan 嵌入。

from llama_index.embeddings.bedrock import BedrockEmbedding
model = BedrockEmbedding(model_name="amazon.titan-embed-g1-text-02")
embeddings = model.get_text_embedding("hello world")
print(embeddings)
model = BedrockEmbedding(model_name="cohere.embed-english-v3")
coherePayload = ["This is a test document", "This is another test document"]
embed1 = model.get_text_embedding("This is a test document")
print(embed1)
embeddings = model.get_text_embedding_batch(coherePayload)
print(embeddings)
model = BedrockEmbedding(model_name="cohere.embed-multilingual-v3")
coherePayload = [
"This is a test document",
"తెలుగు అనేది ద్రావిడ భాషల కుటుంబానికి చెందిన భాష.",
"Esto es una prueba de documento multilingüe.",
"攻殻機動隊",
"Combien de temps ça va prendre ?",
"Документ проверен",
]
embeddings = model.get_text_embedding_batch(coherePayload)
print(embeddings)