From f337d2cd3464080a25194e45bf2c68db3658ada0 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:57 +0000 Subject: [PATCH] update exa search node description Co-Authored-By: ishan --- backend/pyspur/nodes/search/exa/search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/pyspur/nodes/search/exa/search.py b/backend/pyspur/nodes/search/exa/search.py index fbaf04dc..7834bf16 100644 --- a/backend/pyspur/nodes/search/exa/search.py +++ b/backend/pyspur/nodes/search/exa/search.py @@ -11,7 +11,7 @@ class ExaSearchNodeInput(BaseNodeInput): - """Input for the ExaSearch node.""" + """Input for the ExaSearch node. Exa is the fastest and most accurate web search API for AI.""" # Input can come from various fields, we'll handle it in the run method # No explicit query field needed here since we'll use a template @@ -99,7 +99,7 @@ async def run(self, input: BaseModel) -> BaseModel: if not api_key: raise ValueError("Exa API key not found in environment variables") - # Initialize Exa client + # Initialize Exa client - the fastest and most accurate web search API for AI exa = Exa(api_key=api_key) # Extract query from input using the template