Maximuth commited on
Commit
62d5610
·
1 Parent(s): a74d13b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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, Egor?", "I love you", "I'm very hungry"])
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