Merge pull request #15276 from zhangtyzzz/update_brave_search

[fix] Update brave.py to use the correct field
This commit is contained in:
Tim Jaeryang Baek
2025-06-25 11:04:06 +04:00
committed by GitHub

View File

@@ -36,7 +36,7 @@ def search_brave(
return [
SearchResult(
link=result["url"], title=result.get("title"), snippet=result.get("snippet")
link=result["url"], title=result.get("title"), snippet=result.get("description")
)
for result in results[:count]
]