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
commit d60c800d66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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]
]