Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 2.84 KB

File metadata and controls

15 lines (13 loc) · 2.84 KB

Amazon Bedrock Agents - Features examples

In this folder we provide you example implementations for the main Amazon Bedrock Agents functionality:

  1. Create Agent with Function Definition: Example of how to create an HR assistant agent defining the Action Group function and parameters as JSON object that is associated with the Action Group invocation. It connects with an AWS Lambda function to execute the actions
  2. Create Agent with API Schema: Example of how to create an Insurance Claim's handler agent using an API schema for the functions and parameters definition. The API schema follows the OpenAPI Specificiation format and connects with an AWS Lambda function for the action execution.
  3. Create Agent with Return of Control: Example of how to create an HR assistant agent defining the Action Group function and parameters as JSON object that is associated with the Action Group invocation. It skips the AWS Lambda function definition to return the control to the user's application.
  4. Create Agent with a Single Knowledge: Example of how to create a restaurant assistant agent that connects with a single Knowledge Base for Amazon Bedrock to find information on the menus for adults and children.
  5. Create Agent with Knowledge Base and Action Group: Example of how to create extend the Insurance Claim's handler to connect to a Knowledge Base and get the requirements for missing documents.
  6. Using Agent's Prompt and Session Parameters: Example of how to pass prompt and session parameters to an agent invocation in order to extend the agent's knowledge.
  7. Changing Agent's Advanced Prompts and creating custom Lambda Parsers: Example of how to change an Agent's advanced prompt and how to create a custom lambda parser for advanced agents use cases
  8. Create Agent with Amazon Guardrails: Example of how to create an agent with an Amazon Bedrock Guardrail attached to it
  9. Create Agent with Memory: Example of how to create an agent with long term memory attached to it
  10. Create Agent with Code interpretation: Example of how to create an agent with code interpretation functionalities attached to it
  11. Create Agent with User Confirmation enabled before action execution: Example of how to create an agent with user confirmation enabled before action execution