You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
290 B
11 lines
290 B
from swarms import Workflow
|
|
from swarms.tools.autogpt import ChatOpenAI
|
|
|
|
workflow = Workflow(ChatOpenAI)
|
|
|
|
workflow.add("What's the weather in miami")
|
|
workflow.add("Provide details for {{ parent_output }}")
|
|
workflow.add("Summarize the above information: {{ parent_output}}")
|
|
|
|
workflow.run()
|