diff --git a/src/agents/tools/web-search.ts b/src/agents/tools/web-search.ts index 9fec2c716..5d4ccd442 100644 --- a/src/agents/tools/web-search.ts +++ b/src/agents/tools/web-search.ts @@ -340,7 +340,9 @@ async function runSerperSearch(params: { country?: string; search_lang?: string; timeoutSeconds: number; -}): Promise<{ results: Array<{ title: string; url: string; description: string; siteName?: string }> }> { +}): Promise<{ + results: Array<{ title: string; url: string; description: string; siteName?: string }>; +}> { const body: Record = { q: params.query, num: params.count,