

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 概觀
<a name="what-is-bedrock"></a>

Amazon Bedrock 是一項全受管服務，提供來自領導 AI 公司的[高效能基礎模型](models.md)的安全企業級存取權，讓您能夠建置和擴展生成式 AI 應用程式。

## 快速指南
<a name="quickstart"></a>

閱讀 [快速指南](getting-started.md)，在五分鐘內使用 Amazon Bedrock 撰寫您的第一個 API 呼叫。

------
#### [ Responses API ]

```
from openai import OpenAI

client = OpenAI()

response = client.responses.create(
    model="openai.gpt-oss-120b",
    input="Can you explain the features of Amazon Bedrock?"
    )
print(response)
```

------
#### [ Chat Completions API ]

```
from openai import OpenAI

client = OpenAI()

response = client.chat.completions.create(
    model="openai.gpt-oss-120b",
    messages=[{"role": "user", "content": "Can you explain the features of Amazon Bedrock?"}]
    )
print(response)
```

------
#### [ Invoke API ]

```
import json
import boto3

client = boto3.client('bedrock-runtime', region_name='us-east-1')
response = client.invoke_model(
    modelId='anthropic.claude-opus-4-6-v1',
    body=json.dumps({
            'anthropic_version': 'bedrock-2023-05-31',
            'messages': [{ 'role': 'user', 'content': 'Can you explain the features of Amazon Bedrock?'}],
            'max_tokens': 1024
    })
 )
 print(json.loads(response['body'].read()))
```

------
#### [ Converse API ]

```
import boto3

client = boto3.client('bedrock-runtime', region_name='us-east-1')
response = client.converse(
    modelId='anthropic.claude-opus-4-6-v1',
    messages=[
        {
            'role': 'user',
            'content': [{'text': 'Can you explain the features of Amazon Bedrock?'}]
        }
    ]
)
print(response)
```

------

## 支援的模型
<a name="featured-models"></a>

Bedrock 支援來自業界領導供應商的 [100 多種基礎模型](models.md)，包括 Amazon、Anthropic、DeepSeek、Moonshot AI、MiniMax 和 OpenAI。


|  |  |  |  |  |  | 
| --- |--- |--- |--- |--- |--- |
| ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/nova2pro.png)**Nova 2** | ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/claude.png)**Claude Opus 4.6** | ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/deepseek.png)**Deepseek 3.2** | ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/kimik2.5.png)**Kimi K2.5** | ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/minimax2.1.png)**MiniMax M2.1** | ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/models/openai.png)**GPT-OSS-20B** | 

## 新增內容
<a name="whats-new"></a>
+ **[Claude Opus 4.7 現已在 Amazon Bedrock 中提供](https://aws.amazon.com/about-aws/whats-new/2026/04/claude-opus-4.7-amazon-bedrock/)**：Anthropic 迄今為止功能最強大的 Opus 模型，可改善代理程式編碼、專業工作和長時間執行的任務。
+ **[Claude Mythos Preview (Gated Research Preview)](https://aws.amazon.com/about-aws/whats-new/2026/04/amazon-bedrock-claude-mythos/)**：Anthropic 最進階的 AI 模型，具有網路安全、軟體編碼和複雜推理任務等state-of-the-art功能。適用於美國東部 （維吉尼亞北部） 的門控預覽。
+ **[IAM 使用者和角色的成本分配](https://aws.amazon.com/about-aws/whats-new/2026/04/bedrock-iam-cost-allocation/)**：Amazon Bedrock 現在支援 AWS Cost and Usage Report 2.0 和 Cost Explorer 中 IAM 主體的成本分配，讓客戶能夠將模型推論成本歸因於使用者、團隊和專案。
+ **Amazon Bedrock 現已提供 Anthropic 的 Claude 4.6**：Amazon Bedrock 現已提供 [Claude Sonnet 4.6](https://aws.amazon.com/about-aws/whats-new/2026/02/claude-sonnet-4.6-available-in-amazon-bedrock/) [和 Claude Opus 4.6。](https://aws.amazon.com/about-aws/whats-new/2026/2/claude-opus-4.6-available-amazon-bedrock/)

## 開始建置
<a name="start-building"></a>


|  |  | 
| --- |--- |
|  ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/apis.jpg)  | 探索 [Amazon Bedrock 支援的 APIs](apis.md)和 Amazon Bedrock [Amazon Bedrock 支援的端點](endpoints.md)支援的 。 | 
|  ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/build.jpg)  | 使用 Amazon Bedrock 提供的[提交提示並使用模型推論產生回應](inference.md)操作建置 。 | 
|  ![](http://docs.aws.amazon.com/zh_tw/bedrock/latest/userguide/images/what-is/customize.png)  | 自訂您的模型以改善效能和品質。 [自訂模型，以改善其針對使用案例的效能](custom-models.md) | 