AWS Bedrock

Detailed information on the AWS Bedrock conversation component

Component format

A Dapr conversation.yaml component file has the following structure:

apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
  name: awsbedrock
spec:
  type: conversation.aws.bedrock
  metadata:
  - name: endpoint
    value: "http://localhost:4566"
  - name: model
    value: amazon.titan-text-express-v1
  - name: cacheTTL
    value: 10m

Spec metadata fields

Field Required Details Example
endpoint N AWS endpoint for the component to use and connect to emulators. Not recommended for production AWS use. http://localhost:4566
model N The LLM to use. Defaults to Bedrock’s default provider model from Amazon. amazon.titan-text-express-v1
cacheTTL N A time-to-live value for a prompt cache to expire. Uses Golang duration format. 10m