# task = "What were the winning boston marathon times for the past 5 years (ending in 2022)? Generate a table of the year, name, country of origin, and times."
# response = node.run(task)
# print(response)
fromswarmsimportWorkflow
fromswarms.tools.autogptimportChatOpenAI
workflow=Workflow(ChatOpenAI)
workflow.add("What's the weather in miami")
workflow.add("Provide detauls for {{ parent_output }}")
workflow.add("Summarize the above information: {{ parent_output}}")