Skip to main content
Self-hosted onlyAWS Bedrock support is available for self-hosted SeekrFlow deployments on AWS/EKS. It is not available on SeekrFlow SaaS.
For self-hosted EKS deployments, SeekrFlow can route document ingestion and agent inference through AWS Bedrock instead of SeekrFlow’s built-in models. This lets you run agent inference, embedding generation, and document conversion on AWS.

Prerequisites

  • AWS credentials with Bedrock Runtime permissions (bedrock-runtime:InvokeModel, bedrock-runtime:Converse)
  • Desired Titan embedding and Claude models enabled in the AWS Console for your region
  • EKS deployment (agent inference is EKS-only)

Ingestion

Bedrock embedding models

When you create a vector database with a bedrock:-prefixed model name, SeekrFlow routes all embedding requests to AWS Bedrock instead of SeekrFlow’s built-in models. The bedrock: prefix is stripped before making API calls to AWS. To create a vector database with a Bedrock embedding model:
For a full walkthrough of vector database setup and file ingestion, see Create and populate a vector database.

Bedrock vision PDF conversion

In Bedrock mode, SeekrFlow supports two PDF conversion methods: Other conversion methods (bookmark, seekr-saas, smoldocling, etc.) are not available in Bedrock mode. To enable vision-based conversion, set the BEDROCK_VISION_MODEL environment variable. When set, the ingestion pipeline automatically restricts available conversion methods to pymupdf and bedrock-vision.

Environment variables

AWS credentials can also be provided via IAM roles, instance profiles, or any standard boto3 credential chain.

Agent inference

When Bedrock is configured, Claude 4.5 is available for all intra-agent inference. Bedrock models appear alongside other models in the agent model-selection UI and are configured via Helm at deploy time.
Current limitations
  • Available for agents only. Model Chat is not supported.
  • Reasoning and speed optimization parameters are ignored.

Combining ingestion and inference

You can use Bedrock for ingestion, inference, or both, including fully Bedrock-backed RAG agents.
Last modified on June 23, 2026