Skip to content

Commit 9cc20fd

Browse files
committed
Add additional pr feedback
1 parent d3eab99 commit 9cc20fd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/user-guide/concepts/agents/prompts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Prompting is a primary functionality of Strands that allows you to invoke tools
6363
result = agent.tool.current_time(timezone="US/Pacific")
6464
```
6565

66-
This bypasses the natural language interface and directly executes the tool with the specified parameters. By default, direct tool calls are added to the conversation but can be optionally not included by specifying `record_direct_tool_call=False`.
66+
Direct tool calls bypass the natural language interface and execute the tool using specified parameters. These calls are added to the conversation history by default. However, you can opt out of this behavior by setting `record_direct_tool_call=False`.
6767

6868
## Prompt Engineering
6969

docs/user-guide/concepts/agents/session-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ agent = Agent(session_manager=session_manager)
3030
agent("Hello!") # This conversation is persisted
3131
```
3232

33-
The conversation, and associated state, is persisted ot the underlying filesystem.
33+
The conversation, and associated state, is persisted to the underlying filesystem.
3434

3535
## Built-in Session Managers
3636

@@ -105,7 +105,7 @@ agent("Tell me about AWS S3")
105105
```
106106
#### S3 Storage Structure
107107

108-
Just like in the `FileSessionManager`, sessions are stored with the following structure in the s3 bucket:
108+
Just like in the `FileSessionManager`, sessions are stored with the following structure in the s3 bucket:
109109

110110
```
111111
<s3_key_prefix>/

docs/user-guide/concepts/agents/state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The sliding window conversation manager:
9797
- Handles context window overflow exceptions by reducing context
9898
- Ensures conversations don't exceed model context limits
9999

100-
See [`Context Management`](conversation-management.md) for more information about conversation managers.
100+
See [`Conversation Management`](conversation-management.md) for more information about conversation managers.
101101

102102

103103
## Agent State

docs/user-guide/deploy/operating-agents-in-production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Operating Strands agents in production requires careful consideration of configu
146146

147147
## Related Topics
148148

149-
- [Context Management](../../user-guide/concepts/agents/conversation-management.md)
149+
- [Conversation Management](../../user-guide/concepts/agents/conversation-management.md)
150150
- [Streaming - Async Iterator](../../user-guide/concepts/streaming/async-iterators.md)
151151
- [Tool Development](../../user-guide/concepts/tools/tools_overview.md)
152152
- [Guardrails](../../user-guide/safety-security/guardrails.md)

0 commit comments

Comments
 (0)