diff --git a/docs/api-reference/types.md b/docs/api-reference/types.md
index 6add8cbf..2dc4a106 100644
--- a/docs/api-reference/types.md
+++ b/docs/api-reference/types.md
@@ -19,7 +19,7 @@
heading_level: 2
::: strands.types.session
options:
- heading_level: 2
+ heading_level: 2
::: strands.types.streaming
options:
heading_level: 2
diff --git a/docs/assets/logo-auto.svg b/docs/assets/logo-auto.svg
index e21aec72..c538fcf4 100644
--- a/docs/assets/logo-auto.svg
+++ b/docs/assets/logo-auto.svg
@@ -3,12 +3,12 @@
path#logo_black_grey {
fill: #989898;
}
- path#logo_opacity { display:none; visibiility:hidden; }
+ path#logo_opacity { display:none; visibility:hidden; }
@media (prefers-color-scheme: dark) {
path#logo_black_grey { fill: #0E0E0E; }
- path#logo_opacity { display:inline; visibiility:unset; }
+ path#logo_opacity { display:inline; visibility:unset; }
}
diff --git a/docs/examples/python/multimodal.py b/docs/examples/python/multimodal.py
index 99af7a3d..385bb20e 100644
--- a/docs/examples/python/multimodal.py
+++ b/docs/examples/python/multimodal.py
@@ -2,17 +2,17 @@
from strands_tools import generate_image, image_reader
-artist = Agent(tools=[generate_image],system_prompt=(
- "You will be instructed to generate a number of images of a given subject. Vary the prompt for each generated image to create a variety of options."
+artist = Agent(tools=[generate_image], system_prompt=(
+ "You will be instructed to generate a number of images of a given subject. Vary the prompt for each generated image to create a variety of options. "
"Your final output must contain ONLY a comma-separated list of the filesystem paths of generated images."
))
-critic = Agent(tools=[image_reader],system_prompt=(
- "You will be provided with a list of filesystem paths, each containing an image."
- "Describe each image, and then choose which one is best."
- "Your final line of output must be as follows:"
+critic = Agent(tools=[image_reader], system_prompt=(
+ "You will be provided with a list of filesystem paths, each containing an image. "
+ "Describe each image, and then choose which one is best. "
+ "Your final line of output must be as follows: "
"FINAL DECISION: "
))