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.
|
from swarms import boss_node
|
|
|
|
#create a task
|
|
task = boss_node.create_task(objective="Write a research paper on the impact of climate change on global agriculture")
|
|
|
|
#execute the teask
|
|
boss_node.execute_task(task)
|
|
|