Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|