We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 311a4b0 commit da78e6bCopy full SHA for da78e6b
veadk/tools/builtin_tools/web_search.py
@@ -182,8 +182,8 @@ def web_search(query: str) -> list[str]:
182
)
183
try:
184
results: list = response_body["Result"]["WebResults"]
185
- except Exception as e:
186
- logger.error(f"Web search failed: {e}")
+ except Exception as _:
+ logger.error(f"Web search failed, response body: {response_body}")
187
return []
188
189
final_results = []
0 commit comments