MetaGPT icon indicating copy to clipboard operation
MetaGPT copied to clipboard

feat(bedrock): Temporary AWS credentials via env vars + supported models update

Open JGalego opened this issue 6 months ago • 2 comments

Features

Example

  1. Add MetaGPT config
llm:
  api_type: 'bedrock'
  model: "amazon.titan-text-premier-v1:0"
  # 🔔 No need to add the access_key or secret_key!
  1. Configure AWS Credentials
export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
export AWS_SESSION_TOKEN=...
export AWS_DEFAULT_REGION=us-east-1
  1. Call MetaGPT
metagpt "Create a 2048 game"

JGalego avatar Aug 17 '24 01:08 JGalego