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

11 lines
227 B

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