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/agents_builder.py

10 lines
233 B

from swarms.structs.agent_builder import AgentsBuilder
example_task = "Write a blog post about the benefits of using Swarms for AI agents."
agents_builder = AgentsBuilder()
agents = agents_builder.run(example_task)
print(agents)