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/examples/tools/exa_search_agent.py

13 lines
264 B

from swarms import Agent
from swarms_tools import exa_search
agent = Agent(
name="Exa Search Agent",
model_name="gpt-4o-mini",
tools=[exa_search],
tool_call_summary=False,
)
agent.run("What are the latest experimental treatments for diabetes?")