Update tools/web_search.py
Browse files- tools/web_search.py +1 -1
tools/web_search.py
CHANGED
|
@@ -6,7 +6,7 @@ class DuckDuckGoSearchTool(Tool):
|
|
| 6 |
name = "web_search"
|
| 7 |
description = "Performs a duckduckgo web search based on your query (think a Google search) then returns the top search results."
|
| 8 |
inputs = {'query': {'type': 'string', 'description': 'The search query to perform.'}}
|
| 9 |
-
output_type = "
|
| 10 |
|
| 11 |
def __init__(self, max_results=10, **kwargs):
|
| 12 |
super().__init__()
|
|
|
|
| 6 |
name = "web_search"
|
| 7 |
description = "Performs a duckduckgo web search based on your query (think a Google search) then returns the top search results."
|
| 8 |
inputs = {'query': {'type': 'string', 'description': 'The search query to perform.'}}
|
| 9 |
+
output_type = "any"
|
| 10 |
|
| 11 |
def __init__(self, max_results=10, **kwargs):
|
| 12 |
super().__init__()
|