Update app.py
Browse files
app.py
CHANGED
|
@@ -24,14 +24,13 @@ def chatbot_interaction(input_text):
|
|
| 24 |
print()
|
| 25 |
print()
|
| 26 |
print()
|
| 27 |
-
"""
|
| 28 |
Q = ""
|
| 29 |
for message in response:
|
| 30 |
print(message, flush=True, end='')
|
| 31 |
Q += message
|
| 32 |
print(Q)
|
| 33 |
-
"""
|
| 34 |
-
|
| 35 |
return response
|
| 36 |
iface = gr.Interface(
|
| 37 |
fn=chatbot_interaction,
|
|
|
|
| 24 |
print()
|
| 25 |
print()
|
| 26 |
print()
|
| 27 |
+
"""
|
| 28 |
Q = ""
|
| 29 |
for message in response:
|
| 30 |
print(message, flush=True, end='')
|
| 31 |
Q += message
|
| 32 |
print(Q)
|
| 33 |
+
"""
|
|
|
|
| 34 |
return response
|
| 35 |
iface = gr.Interface(
|
| 36 |
fn=chatbot_interaction,
|