Corianas commited on
Commit
16a60f5
1 Parent(s): d617597

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -119,8 +119,8 @@ with gr.Blocks() as demo:
119
  clear = gr.Button("Clear")
120
 
121
  def respond(message, chat_history):
122
- bot_message = gen(chat_history)
123
  chat_history.append((message, md))
 
124
  time.sleep(1)
125
  return "", chat_history
126
 
 
119
  clear = gr.Button("Clear")
120
 
121
  def respond(message, chat_history):
 
122
  chat_history.append((message, md))
123
+ bot_message = gen(chat_history)
124
  time.sleep(1)
125
  return "", chat_history
126