Spaces:
Runtime error
Runtime error
Commit
·
56fd6e3
1
Parent(s):
5cc514e
remove space in tool name
Browse files
app.py
CHANGED
@@ -310,19 +310,19 @@ Netsearch = DuckDuckGoSearchRun()
|
|
310 |
Python_REPL = PythonREPL()
|
311 |
|
312 |
wikipedia_tool = Tool(
|
313 |
-
name = "
|
314 |
func = Wikipedia.run,
|
315 |
description = "Useful to search a topic, country or person when there is no availble information in vector database"
|
316 |
)
|
317 |
|
318 |
duckduckgo_tool = Tool(
|
319 |
-
name = "
|
320 |
func = Netsearch.run,
|
321 |
description = "Useful to search information in internet when it is not available in other tools"
|
322 |
)
|
323 |
|
324 |
python_tool = Tool(
|
325 |
-
name = "
|
326 |
func = Python_REPL.run,
|
327 |
description = "Useful when you need python to answer questions. You should input python code."
|
328 |
)
|
|
|
310 |
Python_REPL = PythonREPL()
|
311 |
|
312 |
wikipedia_tool = Tool(
|
313 |
+
name = "Wikipedia_Search",
|
314 |
func = Wikipedia.run,
|
315 |
description = "Useful to search a topic, country or person when there is no availble information in vector database"
|
316 |
)
|
317 |
|
318 |
duckduckgo_tool = Tool(
|
319 |
+
name = "Duckduckgo_Internet_Search",
|
320 |
func = Netsearch.run,
|
321 |
description = "Useful to search information in internet when it is not available in other tools"
|
322 |
)
|
323 |
|
324 |
python_tool = Tool(
|
325 |
+
name = "Python_REPL",
|
326 |
func = Python_REPL.run,
|
327 |
description = "Useful when you need python to answer questions. You should input python code."
|
328 |
)
|