Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -45,8 +45,8 @@ with gr.Blocks() as app:
|
|
45 |
output = gr.Textbox(lines=4, label="Output", max_lines=4, show_copy_button=True)
|
46 |
|
47 |
with gr.Row():
|
48 |
-
clr_btn = gr.ClearButton([text, output]
|
49 |
-
btn = gr.Button("Submit")
|
50 |
btn.click(fn=chat, inputs=text, outputs=output)
|
51 |
|
52 |
|
|
|
45 |
output = gr.Textbox(lines=4, label="Output", max_lines=4, show_copy_button=True)
|
46 |
|
47 |
with gr.Row():
|
48 |
+
clr_btn = gr.ClearButton([text, output])
|
49 |
+
btn = gr.Button("Submit", variant="primary")
|
50 |
btn.click(fn=chat, inputs=text, outputs=output)
|
51 |
|
52 |
|