Chris Alexiuk commited on
Commit
3017d8b
·
1 Parent(s): 4d48c47

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -47,7 +47,12 @@ async def init():
47
  name = "Alice in Wonderland QA System",
48
  func=alice_qa.run,
49
  description="useful for when you need to answer questions about Alice in Wonderland. Input should be a fully formed question."
50
- )
 
 
 
 
 
51
  ]
52
 
53
  prefix = """Have a conversation with a human, answering the following questions as best you can. You have access to the following tools:"""
 
47
  name = "Alice in Wonderland QA System",
48
  func=alice_qa.run,
49
  description="useful for when you need to answer questions about Alice in Wonderland. Input should be a fully formed question."
50
+ ),
51
+ Tool(
52
+ name = "Backup Alice Google Search",
53
+ func=search.run,
54
+ description="useful for when you need to answer questions about Alice in Wonderland but only when the Alice in Wonderland QA System couldn't answer the query. Input should be a fully formed question."
55
+ ),
56
  ]
57
 
58
  prefix = """Have a conversation with a human, answering the following questions as best you can. You have access to the following tools:"""