Skip to content

Commit ea01f93

Browse files
github-actions[bot]claude-yolo[bot]
authored andcommitted
docs: Claude Sonnet 5 now on Bedrock InvokeModel + AWS platform migration guidance
Co-Authored-By: claude-yolo[bot] <claude-yolo@lroole.com>
1 parent c48fd3b commit ea01f93

103 files changed

Lines changed: 400 additions & 395 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

content/.metadata.json

Lines changed: 187 additions & 187 deletions
Large diffs are not rendered by default.

content/en/agents-and-tools/agent-skills/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Agent Skills are modular capabilities that extend Claude's functionality. Each S
55
---
66

77
<Note>
8-
This feature is **not** eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). Data is retained according to the feature's standard retention policy.
8+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
99
</Note>
1010

1111
## Why use Skills

content/en/agents-and-tools/mcp-connector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Claude's Model Context Protocol (MCP) connector feature enables you to connect t
1313
</Note>
1414

1515
<Note>
16-
This feature is **not** eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). Data is retained according to the feature's standard retention policy.
16+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
1717
</Note>
1818

1919
## Key features

content/en/agents-and-tools/tool-use/advisor-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ sequenceDiagram
2424
```
2525

2626
<Note>
27-
This feature is eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). When your organization has a ZDR arrangement, data sent through this feature is not stored after the API response is returned.
27+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
2828
</Note>
2929

3030
## When to use it

content/en/agents-and-tools/tool-use/bash-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Let Claude request shell commands that your application runs in a persistent bas
55
---
66

77
<Note>
8-
This feature is eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). When your organization has a ZDR arrangement, data sent through this feature is not stored after the API response is returned.
8+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
99
</Note>
1010

1111
The bash tool is a [client tool](/docs/en/agents-and-tools/tool-use/how-tool-use-works): Claude doesn't run commands itself. When you include the tool in a request, Claude replies with a `tool_use` block that names the command to run. Your application runs that command in a bash session it owns and returns the output in a `tool_result` block.

content/en/agents-and-tools/tool-use/code-execution-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Code execution also powers dynamic filtering in the [web search](/docs/en/agents
1515
</Note>
1616

1717
<Note>
18-
This feature is **not** eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). Data is retained according to the feature's standard retention policy.
18+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
1919
</Note>
2020

2121
## Model compatibility

content/en/agents-and-tools/tool-use/computer-use-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Claude can interact with computer environments through the computer use tool, wh
1616
</Note>
1717

1818
<Note>
19-
This feature is eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). When your organization has a ZDR arrangement, data sent through this feature is not stored after the API response is returned.
19+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
2020
</Note>
2121

2222
## Overview

content/en/agents-and-tools/tool-use/fine-grained-tool-streaming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Stream tool inputs without server-side JSON buffering for latency-sensitive appl
55
---
66

77
<Note>
8-
This feature is eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). When your organization has a ZDR arrangement, data sent through this feature is not stored after the API response is returned.
8+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
99
</Note>
1010

1111
Fine-grained tool streaming delivers a tool's input to your client as Claude generates it, without server-side buffering or JSON validation. Skipping the buffering step reduces the time to the first fragment of a large parameter, such as a document or a block of code, and the fragments arrive through the same [Streaming messages](/docs/en/build-with-claude/streaming) events as standard tool use.

content/en/agents-and-tools/tool-use/memory-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The memory tool operates client-side: Claude requests file operations, and your
1515
</Note>
1616

1717
<Note>
18-
This feature is eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). When your organization has a ZDR arrangement, data sent through this feature is not stored after the API response is returned.
18+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
1919
</Note>
2020

2121
## Use cases

content/en/agents-and-tools/tool-use/programmatic-tool-calling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Consider checking budget compliance across 20 employees: the traditional approac
1717
</Note>
1818

1919
<Note>
20-
This feature is **not** eligible for [Zero Data Retention (ZDR)](/docs/en/build-with-claude/api-and-data-retention). Data is retained according to the feature's standard retention policy.
20+
For how zero data retention (ZDR) applies to this feature, see [API and data retention](/docs/en/manage-claude/api-and-data-retention).
2121
</Note>
2222

2323
## Model compatibility

0 commit comments

Comments
 (0)