Spaces:
Running
Running
Update app.py
Browse files
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 |
# {
|