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.
18 lines
505 B
18 lines
505 B
from swarms import Agent
|
|
|
|
# Initialize the agent
|
|
agent = Agent(
|
|
agent_name="Quantitative-Trading-Agent",
|
|
agent_description="Advanced quantitative trading and algorithmic analysis agent",
|
|
model_name="anthropic/claude-haiku-4-5-20251001",
|
|
dynamic_temperature_enabled=True,
|
|
max_loops=1,
|
|
dynamic_context_window=True,
|
|
streaming_on=True,
|
|
top_p=None,
|
|
)
|
|
|
|
out = agent.run(
|
|
task="What are the top five best energy stocks across nuclear, solar, gas, and other energy sources?",
|
|
)
|