forked from kyegomez/swarms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinteractive.py
More file actions
15 lines (12 loc) · 437 Bytes
/
Copy pathinteractive.py
File metadata and controls
15 lines (12 loc) · 437 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from swarms import Agent
# Initialize the agent
agent = Agent(
agent_name="Quantitative-Trading-Agent-test",
agent_description="Advanced quantitative trading and algorithmic analysis agent",
system_prompt="You are a helpful assistant that can answer questions and help with tasks and your name is Quantitative-Trading-Agent",
model_name="gpt-5.4",
max_loops=5,
interactive=True,
)
out = agent.run()
print(out)