Commit
·
75dd496
1
Parent(s):
49385f2
Update app.py
Browse files
app.py
CHANGED
@@ -214,9 +214,9 @@ with gr.Blocks(theme = 'carlosrosash/bellay_test') as demo:
|
|
214 |
temperature_slider = gr.Slider(label="Temperature", value=0.7, minimum=0.05, maximum=1.0, step=0.05, interactive=True)
|
215 |
with gr.Row():
|
216 |
with gr.Column():
|
217 |
-
clear_button = gr.Button("Clear")
|
218 |
with gr.Column():
|
219 |
-
submit_button = gr.Button("Submit")
|
220 |
with gr.Column():
|
221 |
output_text = gr.Textbox(label="Response", type="text", lines=10)
|
222 |
|
|
|
214 |
temperature_slider = gr.Slider(label="Temperature", value=0.7, minimum=0.05, maximum=1.0, step=0.05, interactive=True)
|
215 |
with gr.Row():
|
216 |
with gr.Column():
|
217 |
+
clear_button = gr.Button("Clear", variant = "primary")
|
218 |
with gr.Column():
|
219 |
+
submit_button = gr.Button("Submit", variant = "secondary")
|
220 |
with gr.Column():
|
221 |
output_text = gr.Textbox(label="Response", type="text", lines=10)
|
222 |
|