TejAndrewsACC commited on
Commit
6cdb2aa
·
verified ·
1 Parent(s): 2e7c967

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,8 +29,8 @@ def chat_function(message, history):
29
  return "", history
30
 
31
  with gr.Blocks(theme=gr.themes.Glass()) as demo:
32
- chatbot = gr.Chatbot()
33
- msg = gr.Textbox(placeholder="Message Z3ta...")
34
 
35
  msg.submit(chat_function, [msg, chatbot], [msg, chatbot])
36
 
 
29
  return "", history
30
 
31
  with gr.Blocks(theme=gr.themes.Glass()) as demo:
32
+ chatbot = gr.Chatbot(label=None)
33
+ msg = gr.Textbox(placeholder="Message Z3ta...", label=None)
34
 
35
  msg.submit(chat_function, [msg, chatbot], [msg, chatbot])
36