How to retain conversation history as context for Bedrock agent after current session expires

0

I want to retain conversation history as context for my bedrock agent even after the current session has expired. Is there a way to feed the agent with the conversation history using the bedrock agent. We are calling bedrock agent using boto3 bedrock runtime.

2 Answers
3

Hello,

To retain the conversation context of an Amazon Bedrock agent after the session expires, you can use session state attributes. There are two types of session state attributes:

  • SessionAttributes
  • PromtSessionAttributes

Refer the below link for more info https://docs.aws.amazon.com/bedrock/latest/userguide/agents-session-state.html

Additionally, you can view the conversation history by enabling tracing for the InvokeAgent call. The trace tracks the agent's actions, queries and observations at each step, including context passed between prompts.****

profile picture
answered 10 days ago
0

Hi,

You may want to read this deck of this presentation of last re:Invent: Build a WebSocket API with conversation history for Amazon Bedrock

The deck is here: https://d1.awsstatic.com/events/Summits/reinvent2023/FWM311_Build-a-WebSocket-API-with-conversation-history-for-Amazon-Bedrock.pdf

Also, read in depth this blog post. It shows how to store conversations for agends in DynamoDB: https://aws.amazon.com/blogs/machine-learning/build-generative-ai-agents-with-amazon-bedrock-amazon-dynamodb-amazon-kendra-amazon-lex-and-langchain/

Best,

Didier

profile pictureAWS
EXPERT
answered 10 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions