Update app.py
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ with gr.Blocks() as demo:
|
|
| 11 |
return "", history + [[user_message, None]]
|
| 12 |
|
| 13 |
def bot(history):
|
| 14 |
-
bot_message = random.choice(["How are you
|
| 15 |
history[-1][1] = ""
|
| 16 |
for character in bot_message:
|
| 17 |
history[-1][1] += character
|
|
|
|
| 11 |
return "", history + [[user_message, None]]
|
| 12 |
|
| 13 |
def bot(history):
|
| 14 |
+
bot_message = random.choice(["How are you?", "I love you", "I'm very hungry"])
|
| 15 |
history[-1][1] = ""
|
| 16 |
for character in bot_message:
|
| 17 |
history[-1][1] += character
|