Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api-reference/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
heading_level: 2
::: strands.types.session
options:
heading_level: 2
heading_level: 2
::: strands.types.streaming
options:
heading_level: 2
Expand Down
4 changes: 2 additions & 2 deletions docs/assets/logo-auto.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions docs/examples/python/multimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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: <path to final decision image>"
))

Expand Down