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.
17 lines
757 B
17 lines
757 B
from swarms.structs.heavy_swarm import HeavySwarm
|
|
|
|
|
|
swarm = HeavySwarm(
|
|
worker_model_name="claude-3-5-sonnet-20240620",
|
|
show_dashboard=True,
|
|
question_agent_model_name="gpt-4.1",
|
|
loops_per_agent=1,
|
|
)
|
|
|
|
|
|
out = swarm.run(
|
|
"Identify the top 3 energy sector ETFs listed on US exchanges that offer the highest potential for growth over the next 3-5 years. Focus specifically on funds with significant exposure to companies in the nuclear, natural gas, or oil industries. For each ETF, provide the rationale for its selection, recent performance metrics, sector allocation breakdown, and any notable holdings related to nuclear, gas, or oil. Exclude broad-based energy ETFs that do not have a clear emphasis on these sub-sectors."
|
|
)
|
|
|
|
print(out)
|