NCTCMumbai
commited on
Commit
•
12f2a02
1
Parent(s):
8ea990c
Update app.py
Browse files
app.py
CHANGED
@@ -97,6 +97,7 @@ def bot(history, cross_encoder):
|
|
97 |
history[-1][1] = ""
|
98 |
for character in generate_fn(prompt, history[:-1]):
|
99 |
history[-1][1] = character
|
|
|
100 |
yield history, prompt_html
|
101 |
|
102 |
|
|
|
97 |
history[-1][1] = ""
|
98 |
for character in generate_fn(prompt, history[:-1]):
|
99 |
history[-1][1] = character
|
100 |
+
print('Final history is ',history)
|
101 |
yield history, prompt_html
|
102 |
|
103 |
|