Aabbhishekk commited on
Commit
f823183
1 Parent(s): 635397c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -100,7 +100,7 @@ def main():
100
  db_search_tool = Tool(
101
  name="dbRetrievalTool",
102
  func=qa_chain,
103
- description="""Use this tool first to answer human questions. The input to this tool should be the question.""",
104
  )
105
 
106
  search = SerpAPIWrapper(serpapi_api_key=serp_token)
@@ -108,7 +108,7 @@ def main():
108
  google_searchtool= Tool(
109
  name="Current Search",
110
  func=search.run,
111
- description="use this tool to answer questions if the answer from other tools are not sufficient.",
112
  )
113
 
114
  # tool for asking human
 
100
  db_search_tool = Tool(
101
  name="dbRetrievalTool",
102
  func=qa_chain,
103
+ description="""Use this tool to answer document related questions. The input to this tool should be the question.""",
104
  )
105
 
106
  search = SerpAPIWrapper(serpapi_api_key=serp_token)
 
108
  google_searchtool= Tool(
109
  name="Current Search",
110
  func=search.run,
111
+ description="use this tool to answer real time or current search related questions.",
112
  )
113
 
114
  # tool for asking human