Update app.py
Browse files
app.py
CHANGED
@@ -44,8 +44,9 @@ def infer(question, history):
|
|
44 |
|
45 |
res = []
|
46 |
for human, ai in history[:-1]:
|
47 |
-
pair =
|
48 |
res.append(pair)
|
|
|
49 |
chat_history = res
|
50 |
print(chat_history)
|
51 |
query = question
|
|
|
44 |
|
45 |
res = []
|
46 |
for human, ai in history[:-1]:
|
47 |
+
pair = f"Human:{human}\nAI:{ai}"
|
48 |
res.append(pair)
|
49 |
+
res = ["\n".join(res)]
|
50 |
chat_history = res
|
51 |
print(chat_history)
|
52 |
query = question
|