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.
swarms/example.py

9 lines
214 B

from swarms import boss_node
2 years ago
#create a task
task = boss_node.create_task(objective="Write a research paper on the impact of climate change on global agriculture")
2 years ago
#execute the teask
2 years ago
boss_node.execute_task(task)
2 years ago