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/examples/content_creation_asb.py

14 lines
498 B

from swarms.structs.auto_swarm_builder import AutoSwarmBuilder
example = AutoSwarmBuilder(
name="ContentCreation-Swarm",
description="A swarm of specialized AI agents for research, writing, editing, and publishing that maintain brand consistency across channels while automating distribution.",
max_loops=1,
)
print(
example.run(
"Build agents for research, writing, editing, and publishing to enhance brand consistency and automate distribution across channels."
)
)