From 36f6401bbc0a9bae7801f9c0b7093647c3115bef Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 16:39:46 +0000 Subject: [PATCH] update exa search to use auto type by default Co-Authored-By: ishan --- agentstack/_tools/exa/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(