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
283 B
11 lines
283 B
1 year ago
|
from swarms import Workflow
|
||
1 year ago
|
from swarms.models import ChatOpenAI
|
||
1 year ago
|
|
||
1 year ago
|
workflow = Workflow(ChatOpenAI)
|
||
1 year ago
|
|
||
1 year ago
|
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()
|