dataprincess commited on
Commit
7147ba2
·
verified ·
1 Parent(s): a5d935f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -255,7 +255,7 @@ with gr.Blocks() as iface:
255
  def respond(message, chat_history):
256
  bot_message = get_response(message)
257
  chat_history.append(
258
- (f"**You:** {message}", f"**Anjibot:** {bot_message}")
259
  time.sleep(2)
260
  return "", chat_history
261
 
 
255
  def respond(message, chat_history):
256
  bot_message = get_response(message)
257
  chat_history.append(
258
+ (f"**You:** {message}", f"**Anjibot:** {bot_message}"))
259
  time.sleep(2)
260
  return "", chat_history
261