Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,7 +30,7 @@ model = TransformersModel(
|
|
| 30 |
|
| 31 |
final_answer_tool = FinalAnswerTool()
|
| 32 |
search_tool = DuckDuckGoSearchTool()
|
| 33 |
-
google_tool = GoogleSearchTool()
|
| 34 |
python_tool = PythonInterpreterTool()
|
| 35 |
|
| 36 |
# Calculator (from Hugging Face Hub)
|
|
@@ -69,7 +69,6 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 69 |
all_tools = [
|
| 70 |
final_answer_tool,
|
| 71 |
search_tool,
|
| 72 |
-
google_tool,
|
| 73 |
python_tool,
|
| 74 |
calculator_tool,
|
| 75 |
summarizer_tool,
|
|
|
|
| 30 |
|
| 31 |
final_answer_tool = FinalAnswerTool()
|
| 32 |
search_tool = DuckDuckGoSearchTool()
|
| 33 |
+
#google_tool = GoogleSearchTool()
|
| 34 |
python_tool = PythonInterpreterTool()
|
| 35 |
|
| 36 |
# Calculator (from Hugging Face Hub)
|
|
|
|
| 69 |
all_tools = [
|
| 70 |
final_answer_tool,
|
| 71 |
search_tool,
|
|
|
|
| 72 |
python_tool,
|
| 73 |
calculator_tool,
|
| 74 |
summarizer_tool,
|