Skip to content

Commit 4e251de

Browse files
committed
gpt5.6-sol example in examples/models/openai folder
1 parent b021ded commit 4e251de

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from swarms import Agent
2+
3+
# Initialize the agent
4+
agent = Agent(
5+
agent_name="Quantitative-Trading-Agent--new",
6+
agent_description="Advanced quantitative trading and algorithmic analysis agent",
7+
system_prompt="You are a helpful assistant that can answer questions and help with tasks and your name is Quantitative-Trading-Agent",
8+
model_name="gpt-5.6-sol",
9+
max_loops=1,
10+
top_p=None,
11+
temperature=None,
12+
thinking_tokens=1024,
13+
reasoning_effort=None,
14+
persistent_memory=False,
15+
)
16+
17+
out = agent.run(
18+
task="Analyze the best semiconductor ETFs and provide a detailed comparison. Include metrics such as performance, expense ratio, holdings, and any notable strategies.",
19+
)
20+
21+
print(out)

0 commit comments

Comments
 (0)