Commit
•
6f8c407
1
Parent(s):
0fa41ed
switch order of rating buttons
Browse files
app.py
CHANGED
@@ -232,8 +232,8 @@ with gr.Blocks() as iface:
|
|
232 |
output = gr.Markdown(label="Generated Data")
|
233 |
|
234 |
with gr.Row():
|
235 |
-
thumbs_up = gr.Button("👍 Thumbs Up", interactive=False)
|
236 |
thumbs_down = gr.Button("👎 Thumbs Down", interactive=False)
|
|
|
237 |
|
238 |
feedback_output = gr.Markdown(label="Feedback Status")
|
239 |
|
|
|
232 |
output = gr.Markdown(label="Generated Data")
|
233 |
|
234 |
with gr.Row():
|
|
|
235 |
thumbs_down = gr.Button("👎 Thumbs Down", interactive=False)
|
236 |
+
thumbs_up = gr.Button("👍 Thumbs Up", interactive=False)
|
237 |
|
238 |
feedback_output = gr.Markdown(label="Feedback Status")
|
239 |
|