Run query through GoogleSearch and parse result.
(query : str)
| 118 | |
| 119 | @tool.get("/search_general") |
| 120 | def search_general(query : str): |
| 121 | """Run query through GoogleSearch and parse result.""" |
| 122 | return str(api_wrapper.run(query)) |
| 123 | |
| 124 | return tool |