FIX: serper.dev API - Change snippet key from 'description' to 'snippet' (#22869)

This has apparently been broken since forever and native tool calling made it a lot more apparent.
This commit is contained in:
biebiep
2026-03-20 18:54:16 -05:00
committed by GitHub
parent af0b7d4683
commit f593f92f18
+1 -1
View File
@@ -31,7 +31,7 @@ def search_serper(api_key: str, query: str, count: int, filter_list: Optional[li
SearchResult(
link=result['link'],
title=result.get('title'),
snippet=result.get('description'),
snippet=result.get('snippet'),
)
for result in results[:count]
]