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.
21 lines
663 B
21 lines
663 B
from swarms import Agent
|
|
|
|
# Initialize the agent
|
|
agent = Agent(
|
|
agent_name="Quantitative-Trading-Agent",
|
|
agent_description="Quantitative trading and analysis agent",
|
|
system_prompt="You are an expert quantitative trading agent. Answer concisely and accurately using your knowledge of trading strategies, risk management, and financial markets.",
|
|
model_name="mistral/mistral-tiny",
|
|
dynamic_temperature_enabled=True,
|
|
output_type="str-all-except-first",
|
|
max_loops="auto",
|
|
interactive=True,
|
|
no_reasoning_prompt=True,
|
|
streaming_on=True,
|
|
)
|
|
|
|
out = agent.run(
|
|
task="What are the best top 3 etfs for gold coverage?"
|
|
)
|
|
print(out)
|