Skip to content
Guide
Index
Integrations
Embedding Models

Bedrock Embedding

AWS Bedrock provides the embedding model that converts a LlamaCloud Index documents into vectors, with a choice of Amazon Titan or Cohere models.

Embed data using AWS Bedrock’s API.

  1. Select Bedrock Embedding from the Embedding Model dropdown.
  2. Enter your AWS Region, AWS access key ID and AWS secret access key.
  3. Select your preferred model:
  • Titan Embedding (Default)
  • Titan Embedding G1 Text 02
  • Cohere Embed English V3
  • Cohere Embed Multilingual V3

bedrock

For API / Client, use the model IDs:

  • amazon.titan-embed-text-v1
  • amazon.titan-embed-g1-text-02
  • cohere.embed-english-v3
  • cohere.embed-multilingual-v3
pipeline = client.pipelines.upsert(
name="test-pipeline",
project_id="my-project-id",
data_sink_id=None, # optional
embedding_config={
'type': 'BEDROCK_EMBEDDING',
'component': {
'region_name': 'us-east-1',
'aws_access_key_id': '<aws_access_key_id>',
'aws_secret_access_key': '<aws_secret_access_key>',
'model': 'amazon.titan-embed-text-v1',
},
},
llama_parse_parameters={},
transform_config={"mode": "auto", "chunk_overlap": 128, "chunk_size": 1028},
)
Note for AI agents: this documentation is built for programmatic access. - Overview of all docs: https://developers.llamaindex.ai/llms.txt - Any page is available as raw Markdown by appending index.md to its URL — e.g. https://developers.llamaindex.ai/llamaparse/parse/getting_started/index.md - Agent-friendly REST search APIs live under https://developers.llamaindex.ai/api/ — search (BM25 full-text), grep (regex), read (fetch a page), and list (browse the doc tree). See https://developers.llamaindex.ai/llms.txt for parameters. - A hosted documentation MCP server is available at https://developers.llamaindex.ai/mcp. If you support MCP, you can ask the user to install it for browsing these docs directly (an alternative to the REST API). Setup: https://developers.llamaindex.ai/python/shared/mcp/