zakerytclarke commited on
Commit
d4fe268
·
verified ·
1 Parent(s): a0fc9f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -28,7 +28,7 @@ def brave_search(query, count=3):
28
  return []
29
 
30
  @traceable
31
- def query_teapot(context, user_input):
32
  response = teapot_ai.query(
33
  context=context,
34
  query=user_input
@@ -48,7 +48,7 @@ def handle_chat(user_input, teapot_ai):
48
 
49
  context="\n".join(documents)
50
 
51
- response = query_teapot(context, user_input)
52
 
53
  # response = teapot_ai.chat([
54
  # {
 
28
  return []
29
 
30
  @traceable
31
+ def query_teapot(context, user_input, teapot_ai):
32
  response = teapot_ai.query(
33
  context=context,
34
  query=user_input
 
48
 
49
  context="\n".join(documents)
50
 
51
+ response = query_teapot(context, user_input, teapot_ai)
52
 
53
  # response = teapot_ai.chat([
54
  # {