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.
swarms/simple_agent.py

17 lines
389 B

from swarms import Agent
agent = Agent(
name="Research Agent",
description="A research agent that can answer questions",
model_name="claude-3-5-sonnet-20241022",
streaming_on=True,
max_loops=1,
interactive=True,
)
out = agent.run(
"What are the best arbitrage trading strategies for altcoins? Give me research papers and articles on the topic."
)
print(out)