From 8ca8333cd6af4cdf2e90e8ad95908c0b7f603c8d Mon Sep 17 00:00:00 2001 From: Ishan Goswami Date: Thu, 19 Mar 2026 03:12:04 +0530 Subject: [PATCH] chore(server): update exa search tool description (#14682) Updated the Exa search tool description to better reflect what Exa does. ## Summary by CodeRabbit * **Chores** * Clarified the web search tool description to state it uses Exa, a web search API optimized for AI applications to improve labeling and user understanding. * No functional or behavioral changes to the tool; this update affects only the displayed description users see. --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: ishan --- packages/backend/server/src/plugins/copilot/tools/exa-search.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/server/src/plugins/copilot/tools/exa-search.ts b/packages/backend/server/src/plugins/copilot/tools/exa-search.ts index dd1dd21c17..3fce2441a2 100644 --- a/packages/backend/server/src/plugins/copilot/tools/exa-search.ts +++ b/packages/backend/server/src/plugins/copilot/tools/exa-search.ts @@ -7,7 +7,7 @@ import { defineTool } from './tool'; export const createExaSearchTool = (config: Config) => { return defineTool({ - description: 'Search the web for information', + description: 'Search the web using Exa, one of the best web search APIs for AI', inputSchema: z.object({ query: z.string().describe('The query to search the web for.'), mode: z