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