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/multi_agent/deep_research_examples/deep_research_swarm.py

14 lines
319 B

from swarms.structs.deep_research_swarm import DeepResearchSwarm
def main():
swarm = DeepResearchSwarm(
name="Deep Research Swarm",
description="A swarm of agents that can perform deep research on a given topic",
)
swarm.run("What are the latest news in the AI an crypto space")
main()