Spaces:
Runtime error
Runtime error
new chatgpt app
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ with gr.Blocks(css="#chatbot{height:350px} .overflow-y-auto{height:500px}") as d
|
|
57 |
state = gr.State([])
|
58 |
|
59 |
with gr.Row():
|
60 |
-
txt = gr.Textbox(show_label=False, placeholder="
|
61 |
|
62 |
txt.submit(predict, [txt, state], [chatbot, state])
|
63 |
|
|
|
57 |
state = gr.State([])
|
58 |
|
59 |
with gr.Row():
|
60 |
+
txt = gr.Textbox(show_label=False, placeholder="").style(container=False)
|
61 |
|
62 |
txt.submit(predict, [txt, state], [chatbot, state])
|
63 |
|