aws · Amazon Bedrock Docs
Bedrock Quickstart
A guide to setting up an AWS environment and executing initial inference requests using various Amazon Bedrock APIs including Messages, Responses, Chat Completions, Converse, and Invoke APIs.
Derived skill
Files assembled from official documentation
Viewing SKILL.md
Bedrock Quickstart
A guide to setting up an AWS environment and executing initial inference requests using various Amazon Bedrock APIs including Messages, Responses, Chat Completions, Converse, and Invoke APIs.
When To Use
Use when you need to configure an AWS environment and write Python code to run inference requests using specific Amazon Bedrock API interfaces.
Reference Files
| File | Contains | Use For |
|---|---|---|
SKILL.md | Entry point: scope, routing table, and workflow. | Start here. |
docs/bedrock-getting-started-quickstart-workflow-guide.md | An overview of the different Amazon Bedrock APIs including OpenAI-compatible, Anthropic-native, and Invoke/Converse interfaces. | Questions about an overview of the different Amazon Bedrock APIs including OpenAI-compatible, Anthropic-native, and Invoke/Converse i... |
examples/bedrock-getting-started-quickstart-aws-bedrock-quickstart-pip-install-co.text | The text file contains the pip installation commands for the boto3 and anthropic Python libraries required to get started with Amazon Bedrock. | Exact payloads, commands, or snippets shown in The text file contains the pip installation commands for the boto3 and anthropic Python libraries required to get sta... |
examples/bedrock-getting-started-quickstart-aws-bedrock-quickstart-pip-install-co-2.text | A list of pip install commands for installing the boto3 and openai libraries required for the Bedrock quickstart. | Exact payloads, commands, or snippets shown in A list of pip install commands for installing the boto3 and openai libraries required for the Bedrock quickstart. |
examples/bedrock-getting-started-quickstart-aws-bedrock-quickstart-pip-install-co-3.text | The shell command to install the boto3 library required for AWS Bedrock quickstart. | Exact payloads, commands, or snippets shown in The shell command to install the boto3 library required for AWS Bedrock quickstart. |
examples/bedrock-getting-started-quickstart-aws-bedrock-quickstart-environment-va.text | A text file containing the required environment variable configuration for the Bedrock quickstart, including API keys and base URLs. | Exact payloads, commands, or snippets shown in A text file containing the required environment variable configuration for the Bedrock quickstart, including API keys... |
examples/bedrock-getting-started-quickstart-aws-bedrock-quickstart-environment-va-2.text | A text file containing example environment variable configurations for setting the Bedrock API key and base URL. | Exact payloads, commands, or snippets shown in A text file containing example environment variable configurations for setting the Bedrock API key and base URL. |
examples/bedrock-getting-started-quickstart-aws-bedrock-quickstart-environment-va-3.text | A text file demonstrating how to configure the AWS_BEARER_TOKEN_BEDROCK environment variable for Bedrock API authentication. | Exact payloads, commands, or snippets shown in A text file demonstrating how to configure the AWSBEARERTOKENBEDROCK environment variable for Bedrock API authenticat... |
examples/bedrock-getting-started-quickstart-aws-bedrock-anthropic-claude-python-q.text | A Python code example demonstrating how to initialize an Anthropic client and send a message request to a Claude model using Amazon Bedrock. | Exact payloads, commands, or snippets shown in A Python code example demonstrating how to initialize an Anthropic client and send a message request to a Claude mode... |
examples/bedrock-getting-started-quickstart-aws-bedrock-openai-python-client-quic.text | A Python code example demonstrating how to use the OpenAI client library to interact with Amazon Bedrock models. | Exact payloads, commands, or snippets shown in A Python code example demonstrating how to use the OpenAI client library to interact with Amazon Bedrock models. |
examples/bedrock-getting-started-quickstart-aws-bedrock-openai-python-client-quic-2.text | A Python code example demonstrating how to use the OpenAI client library to interact with Amazon Bedrock models. | Exact payloads, commands, or snippets shown in A Python code example demonstrating how to use the OpenAI client library to interact with Amazon Bedrock models. |
examples/bedrock-getting-started-quickstart-aws-bedrock-python-converse-api-quick.text | A Python script using boto3 to invoke the Bedrock Converse API with an Anthropic Claude model. | Exact payloads, commands, or snippets shown in A Python script using boto3 to invoke the Bedrock Converse API with an Anthropic Claude model. |
examples/bedrock-getting-started-quickstart-aws-bedrock-python-invoke-model-quick.text | A Python script using boto3 to invoke an Anthropic Claude model via the Amazon Bedrock runtime API. | Exact payloads, commands, or snippets shown in A Python script using boto3 to invoke an Anthropic Claude model via the Amazon Bedrock runtime API. |
examples/bedrock-getting-started-quickstart-aws-bedrock-python-first-request-quic.text | A Python script demonstrating how to make an initial API request to Amazon Bedrock. | Exact payloads, commands, or snippets shown in A Python script demonstrating how to make an initial API request to Amazon Bedrock. |
What This Skill Covers
- In this section, we will show you how to get started with Amazon Bedrock within a few minutes. We will use the OpenAI-compatible APIs: Responses API and Chat...
- Main sections:
[ Messages API ],[ Responses/Chat Completions API ],[ Invoke/Converse API ],[ Messages API ],[ Responses/Chat Completions API ].
Workflow
- Open the most relevant file under
docs/for the exact documented workflow and wording. - Open
schemas/files for exact structured contracts. - Open
examples/files for concrete requests, commands, snippets, and manifests. - Do not add behavior or configuration that is not present in the attached source files.
Canonical source: https://docs.aws.amazon.com/bedrock/latest/userguide/getting-started.html
