OuroborosM commited on
Commit
1757d87
·
1 Parent(s): b61570d

correct python tool func

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -559,7 +559,7 @@ duckduckgo_tool = Tool(
559
  python_tool = Tool(
560
  name = "Python_REPL",
561
  func = Python_REPL.run,
562
- description = "Useful when you need python script to answer questions, create/modify documents. You should input python code."
563
  )
564
 
565
  wikipedia_tool2 = Tool(
@@ -577,7 +577,7 @@ duckduckgo_tool2 = Tool(
577
  python_tool2 = Tool(
578
  name = "Python REPL",
579
  func = Python_REPL.run,
580
- description = "Useful when you need python script to answer questions, create/modify documents. You should input python code."
581
  )
582
 
583
 
 
559
  python_tool = Tool(
560
  name = "Python_REPL",
561
  func = Python_REPL.run,
562
+ description = "Useful when you need python script to answer questions. You should input python code."
563
  )
564
 
565
  wikipedia_tool2 = Tool(
 
577
  python_tool2 = Tool(
578
  name = "Python REPL",
579
  func = Python_REPL.run,
580
+ description = "Useful when you need python script to answer questions. You should input python code."
581
  )
582
 
583