Get startedGet started for free

Initializing the Bedrock client

You're consulting for a fast-growing e-commerce startup that wants to integrate AI into its customer service platform. The team has heard about Amazon Bedrock but needs help connecting to it so they can build a proof-of-concept for their newest AI feature. You step in to establish the connection and demonstrate which Bedrock models could power their customer service software.

This exercise is part of the course

Introduction to Amazon Bedrock

View Course

Exercise instructions

  • Import the boto3 library.
  • Verify the connection by listing the available foundation models.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Import the boto 3 library
import ____

bedrock = boto3.client(
    'bedrock', region_name='us-east-1'
)

# List available models
models = bedrock.____

print(models['modelSummaries'])
Edit and Run Code