Update app.py
Browse files
app.py
CHANGED
@@ -24,13 +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 |
-
|
33 |
-
return
|
34 |
iface = gr.Interface(
|
35 |
fn=chatbot_interaction,
|
36 |
inputs="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 |
+
"""
|
33 |
+
return "Bouge ! "
|
34 |
iface = gr.Interface(
|
35 |
fn=chatbot_interaction,
|
36 |
inputs="text",
|