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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -120,7 +120,7 @@ with gr.Blocks() as demo:
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
 
 
120
 
121
  def respond(message, chat_history):
122
  chat_history.append((message, md))
123
+ bot_message = gen(str(chat_history))
124
  time.sleep(1)
125
  return "", chat_history
126