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/agents_loader_example.py

9 lines
301 B

from swarms.utils.agent_loader import load_agent_from_markdown
# Load the Finance Advisor agent from markdown
agent = load_agent_from_markdown("Finance_advisor.md")
# Use the agent to get financial advice
response = agent.run(
"I have $10,000 to invest. What's a good strategy for a beginner?"
)