Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,10 @@ async def main() -> None:

result = await workflow.run(
"Write a tagline for a budget-friendly eBike.",
# Keyword arguments will be passed to each agent call.
# Setting store=False to avoid storing messages in the service for this example.
options={"store": False},
# client_kwargs are forwarded to each underlying chat client call.
# store=False tells the model API not to persist messages server-side
# for this example.
client_kwargs={"store": False},
)
Comment thread
benke520 marked this conversation as resolved.

# The final state should be IDLE since the workflow no longer has messages to
Expand Down
Loading