เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

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.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Introduction to Amazon Bedrock

ดูคอร์ส

คำแนะนำการฝึกหัด

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

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Import the boto 3 library
import ____

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

# List available models
models = bedrock.____

print(models['modelSummaries'])
แก้ไขและรันโค้ด