To use Amazon Bedrock in a Python application, you can leverage the AWS SDK for Python (Boto3), which provides direct support for interacting with Bedrock’s APIs. Amazon Bedrock is a managed service that offers access to foundation models (FMs) from providers like Anthropic, AI21 Labs, and Amazon. Boto3 includes methods for invoking models, managing workflows, and handling responses. You don’t need a separate library—Boto3’s bedrock-runtime
client is sufficient for most use cases. For example, after installing Boto3 (pip install boto3
), you’ll configure AWS credentials (via environment variables, IAM roles, or AWS CLI) to authenticate requests.
Here’s a basic example of invoking a model like Anthropic’s Claude via Bedrock. First, create a Bedrock Runtime client:
import boto3
import json
client = boto3.client(service_name='bedrock-runtime')
response = client.invoke_model(
modelId='anthropic.claude-v2',
body=json.dumps({
"prompt": "\n\nHuman: Write a short poem about code.\n\nAssistant:",
"max_tokens_to_sample": 300
}),
contentType='application/json'
)
response_body = json.loads(response['body'].read())
print(response_body['completion'])
This code sends a prompt to Claude and retrieves the generated text. The modelId
parameter specifies the model, and the body
must follow the input format expected by the model (e.g., Anthropic uses prompt
and max_tokens_to_sample
). Responses are returned as a streamable payload, which you parse using json.loads()
.
When using Bedrock, ensure your AWS IAM user or role has permissions for the bedrock:InvokeModel
action. You’ll also need to enable access to specific models in the AWS Management Console under Bedrock’s Model Access settings. For advanced workflows, such as fine-tuning or managing model access, use the Bedrock control plane APIs via boto3.client('bedrock')
. Always refer to the Bedrock documentation for model-specific input formats and rate limits. Boto3 simplifies integration, but testing and error handling (e.g., retries for throttling) are essential for production use.
Zilliz Cloud is a managed vector database built on Milvus perfect for building GenAI applications.
Try FreeLike the article? Spread the word