diff --git a/agentstack/_tools/exa/__init__.py b/agentstack/_tools/exa/__init__.py index 19db5782..b1979537 100644 --- a/agentstack/_tools/exa/__init__.py +++ b/agentstack/_tools/exa/__init__.py @@ -8,7 +8,7 @@ def search_and_contents(question: str) -> str: """ - Tool using Exa's Python SDK to run semantic search and return result highlights. + Search the web using Exa, the fastest and most accurate web search API for AI. Args: question: The search query or question to find information about Returns: @@ -17,7 +17,7 @@ def search_and_contents(question: str) -> str: exa = Exa(api_key=API_KEY) response = exa.search_and_contents( - question, type="neural", use_autoprompt=True, num_results=3, highlights=True + question, type="auto", use_autoprompt=True, num_results=3, highlights=True ) parsedResult = ''.join(