Skip to content

Commit 39a6dea

Browse files
authored
fix: typos in docs pages (#192)
1 parent c60f5b2 commit 39a6dea

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/api-reference/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
heading_level: 2
2020
::: strands.types.session
2121
options:
22-
heading_level: 2
22+
heading_level: 2
2323
::: strands.types.streaming
2424
options:
2525
heading_level: 2

docs/assets/logo-auto.svg

Lines changed: 2 additions & 2 deletions
Loading

docs/examples/python/multimodal.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
from strands_tools import generate_image, image_reader
33

44

5-
artist = Agent(tools=[generate_image],system_prompt=(
6-
"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."
5+
artist = Agent(tools=[generate_image], system_prompt=(
6+
"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. "
77
"Your final output must contain ONLY a comma-separated list of the filesystem paths of generated images."
88
))
99

1010

1111

12-
critic = Agent(tools=[image_reader],system_prompt=(
13-
"You will be provided with a list of filesystem paths, each containing an image."
14-
"Describe each image, and then choose which one is best."
15-
"Your final line of output must be as follows:"
12+
critic = Agent(tools=[image_reader], system_prompt=(
13+
"You will be provided with a list of filesystem paths, each containing an image. "
14+
"Describe each image, and then choose which one is best. "
15+
"Your final line of output must be as follows: "
1616
"FINAL DECISION: <path to final decision image>"
1717
))
1818

0 commit comments

Comments
 (0)