5m4ck3r commited on
Commit
7dbb473
1 Parent(s): e9b7945

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,8 +35,8 @@ def chat_cpu(user_input, chat_history=None):
35
  iface = gr.Interface(
36
  fn=chat_cpu,
37
  inputs=["text", gr.Textbox(placeholder="Chat history will appear here", lines=10)],
38
- outputs=[gr.Textbox(placeholder="Chat history will appear here", lines=15, label="BOT", id="bot_history"),
39
- gr.Textbox(placeholder="Chat history will appear here", lines=15, label="USER", id="user_history")],
40
  live=True,
41
  layout="vertical",
42
  theme="compact",
 
35
  iface = gr.Interface(
36
  fn=chat_cpu,
37
  inputs=["text", gr.Textbox(placeholder="Chat history will appear here", lines=10)],
38
+ outputs=[gr.TextElement(text="BOT", id="bot_history", default="Chat AI"),
39
+ gr.TextElement(text="USER", id="user_history", default="")],
40
  live=True,
41
  layout="vertical",
42
  theme="compact",