forked from strands-agents/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
270 lines (255 loc) · 11.5 KB
/
mkdocs.yml
File metadata and controls
270 lines (255 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
site_name: Strands Agents SDK
site_description: Documentation for Strands Agents, a simple-to-use, code-first, lightweight library for building AI agents
site_dir: site
site_url: https://strandsagents.com
repo_url: https://github.com/strands-agents/sdk-python
theme:
name: material
custom_dir: overrides
logo: assets/logo-light.svg # Safari doesn't support <style> tags inside SVGs so we need to a light and a dark SVG
logo_dark: assets/logo-dark.svg # Safari doesn't support <style> tags inside SVGs so we need to a light and a dark SVG
favicon: assets/logo-auto.svg
favicon_png: assets/logo-light.png # Safari doesn't support SVG favicons
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: custom
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: custom
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
admonition:
code: material/code-json
features:
- content.code.copy
- content.code.select
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
- search.highlight
- content.code.copy
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight
- pymdownx.tabbed
- pymdownx.details
- pymdownx.emoji
- tables
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- toc:
title: On this page
permalink: true
extra_css:
- stylesheets/extra.css
extra_javascript:
# Workaround for site_url breaking mermaid rendering; see the following for more info:
# https://github.com/squidfunk/mkdocs-material/issues/3742#issuecomment-1076068038
- https://unpkg.com/mermaid@11/dist/mermaid.min.js
- assets/auto-redirect.js
nav:
- User Guide:
- Welcome: README.md
- Quickstart: user-guide/quickstart.md
- Concepts:
- Agents:
- Agent Loop: user-guide/concepts/agents/agent-loop.md
- State: user-guide/concepts/agents/state.md
- Session Management: user-guide/concepts/agents/session-management.md
- Prompts: user-guide/concepts/agents/prompts.md
- Hooks: user-guide/concepts/agents/hooks.md
- Structured Output: user-guide/concepts/agents/structured-output.md
- Conversation Management: user-guide/concepts/agents/conversation-management.md
- Tools:
- Overview: user-guide/concepts/tools/tools_overview.md
- Python: user-guide/concepts/tools/python-tools.md
- Model Context Protocol (MCP): user-guide/concepts/tools/mcp-tools.md
- Executors: user-guide/concepts/tools/executors.md
- Community Tools Package: user-guide/concepts/tools/community-tools-package.md
- Model Providers:
- Amazon Bedrock: user-guide/concepts/model-providers/amazon-bedrock.md
- Amazon Nova: user-guide/concepts/model-providers/amazon-nova.md
- Anthropic: user-guide/concepts/model-providers/anthropic.md
- Gemini: user-guide/concepts/model-providers/gemini.md
- LiteLLM: user-guide/concepts/model-providers/litellm.md
- llama.cpp: user-guide/concepts/model-providers/llamacpp.md
- LlamaAPI: user-guide/concepts/model-providers/llamaapi.md
- MistralAI: user-guide/concepts/model-providers/mistral.md
- Ollama: user-guide/concepts/model-providers/ollama.md
- OpenAI: user-guide/concepts/model-providers/openai.md
- SageMaker: user-guide/concepts/model-providers/sagemaker.md
- Writer: user-guide/concepts/model-providers/writer.md
- Custom Providers: user-guide/concepts/model-providers/custom_model_provider.md
- Cohere<sup> community</sup>: user-guide/concepts/model-providers/cohere.md
- CLOVA Studio<sup> community</sup>: user-guide/concepts/model-providers/clova-studio.md
- FireworksAI<sup> community</sup>: user-guide/concepts/model-providers/fireworksai.md
- Streaming:
- Overview: user-guide/concepts/streaming/overview.md
- Async Iterators: user-guide/concepts/streaming/async-iterators.md
- Callback Handlers: user-guide/concepts/streaming/callback-handlers.md
- Multi-agent:
- Agent2Agent (A2A): user-guide/concepts/multi-agent/agent-to-agent.md
- Agents as Tools: user-guide/concepts/multi-agent/agents-as-tools.md
- Swarm: user-guide/concepts/multi-agent/swarm.md
- Graph: user-guide/concepts/multi-agent/graph.md
- Workflow: user-guide/concepts/multi-agent/workflow.md
- Multi-agent Patterns: user-guide/concepts/multi-agent/multi-agent-patterns.md
- Interrupts: user-guide/concepts/interrupts.md
- Experimental:
- AgentConfig: user-guide/concepts/experimental/agent-config.md
- MultiAgentHooks: user-guide/concepts/experimental/multi-agent-hooks.md
- Bidirectional Streaming:
- Quickstart: user-guide/concepts/experimental/bidirectional-streaming/quickstart.md
- Agent: user-guide/concepts/experimental/bidirectional-streaming/agent.md
- Models:
- Nova Sonic: user-guide/concepts/experimental/bidirectional-streaming/models/nova_sonic.md
- Gemini Live: user-guide/concepts/experimental/bidirectional-streaming/models/gemini_live.md
- OpenAI Realtime: user-guide/concepts/experimental/bidirectional-streaming/models/openai_realtime.md
- IO: user-guide/concepts/experimental/bidirectional-streaming/io.md
- Events: user-guide/concepts/experimental/bidirectional-streaming/events.md
- Hooks: user-guide/concepts/experimental/bidirectional-streaming/hooks.md
- Session Management: user-guide/concepts/experimental/bidirectional-streaming/session-management.md
- Observability: user-guide/concepts/experimental/bidirectional-streaming/otel.md
- Safety & Security:
- Responsible AI: user-guide/safety-security/responsible-ai.md
- Guardrails: user-guide/safety-security/guardrails.md
- Prompt Engineering: user-guide/safety-security/prompt-engineering.md
- PII Redaction: user-guide/safety-security/pii-redaction.md
- Observability & Evaluation:
- Observability: user-guide/observability-evaluation/observability.md
- Metrics: user-guide/observability-evaluation/metrics.md
- Traces: user-guide/observability-evaluation/traces.md
- Logs: user-guide/observability-evaluation/logs.md
- Evaluation: user-guide/observability-evaluation/evaluation.md
- Deploy:
- Operating Agents in Production: user-guide/deploy/operating-agents-in-production.md
- AWS Lambda: user-guide/deploy/deploy_to_aws_lambda.md
- AWS Fargate: user-guide/deploy/deploy_to_aws_fargate.md
- Amazon Bedrock AgentCore : user-guide/deploy/deploy_to_bedrock_agentcore.md
- Amazon EKS: user-guide/deploy/deploy_to_amazon_eks.md
- Amazon EC2: user-guide/deploy/deploy_to_amazon_ec2.md
- Examples:
- Overview: examples/README.md
- CLI Reference Agent Implementation: examples/python/cli-reference-agent.md
- Weather Forecaster: examples/python/weather_forecaster.md
- Memory Agent: examples/python/memory_agent.md
- File Operations: examples/python/file_operations.md
- Agents Workflows: examples/python/agents_workflows.md
- Knowledge-Base Workflow: examples/python/knowledge_base_agent.md
- Structured Output: examples/python/structured_output.md
- Multi Agents: examples/python/multi_agent_example/multi_agent_example.md
- Cyclic Graph: examples/python/graph_loops_example.md
- Meta Tooling: examples/python/meta_tooling.md
- MCP: examples/python/mcp_calculator.md
- Multi-modal: examples/python/multimodal.md
- Community:
- Community Packages: community/community-packages.md
- Tools:
- UTCP: community/tools/utcp.md
- Model Providers:
- Cohere: community/model-providers/cohere.md
- CLOVA Studio: community/model-providers/clova-studio.md
- Fireworks AI: community/model-providers/fireworksai.md
- Session Managers:
- Amazon AgentCore Memory: community/session-managers/agentcore-memory.md
- Valkey/Redis: community/session-managers/strands-valkey-session-manager.md
- Contribute ❤️: https://github.com/strands-agents/sdk-python/blob/main/CONTRIBUTING.md
- API Reference:
- Agent: api-reference/agent.md
- Event Loop: api-reference/event-loop.md
- Handlers: api-reference/handlers.md
- Hooks: api-reference/hooks.md
- Interrupt: api-reference/interrupt.md
- Models: api-reference/models.md
- Multiagent: api-reference/multiagent.md
- Session: api-reference/session.md
- Telemetry: api-reference/telemetry.md
- Tools: api-reference/tools.md
- Types: api-reference/types.md
- Experimental:
- Agent Config: api-reference/experimental/agent_config.md
- Hooks: api-reference/experimental/hooks.md
- Bidirectional Streaming:
- Agent: api-reference/experimental/bidi/agent.md
- IO: api-reference/experimental/bidi/io.md
- Models: api-reference/experimental/bidi/models.md
- Tools: api-reference/experimental/bidi/tools.md
- Types: api-reference/experimental/bidi/types.md
exclude_docs: |
node_modules
.venv
_dependencies
plugins:
- search
- privacy
- macros
- mike:
alias_type: symlink
canonical_version: latest
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_root_heading: true
show_source: true
- llmstxt:
full_output: llms-full.txt
sections:
User Guide:
- README.md
- user-guide/**/*.md
Community:
- community/**/*.md
Examples:
- examples/**/*.md
API Reference:
- api-reference/*.md
extra:
social:
- icon: fontawesome/brands/github
version:
provider: mike
# Variables
docs_repo: https://github.com/strands-agents/docs/tree/main
sdk_pypi: https://pypi.org/project/strands-agents/
sdk_repo: https://github.com/strands-agents/sdk-python/blob/main
sdk_repo_home: https://github.com/strands-agents/sdk-python
tools_pypi: https://pypi.org/project/strands-agents-tools/
tools_repo: https://github.com/strands-agents/tools/blob/main
tools_repo_home: https://github.com/strands-agents/tools
agent_builder_pypi: https://pypi.org/project/strands-agents-builder/
agent_builder_repo_home: https://github.com/strands-agents/agent-builder
link_strands_tools: "[`strands-agents-tools`](https://github.com/strands-agents/tools)"
link_strands_builder: "[`strands-agents-builder`](https://github.com/strands-agents/agent-builder)"
community_contribution_banner: |
!!! info "Community Contribution"
This is a community-maintained package that is not owned or supported by the Strands team. Validate and review
the package before using it in your project.
Have your own integration? [We'd love to add it here too!](https://github.com/strands-agents/docs/issues/new?assignees=&labels=enhancement&projects=&template=content_addition.yml&title=%5BContent+Addition%5D%3A+)
validation:
nav:
omitted_files: info
not_found: warn
absolute_links: warn
links:
not_found: warn
anchors: warn
absolute_links: warn
unrecognized_links: warn