Jae-Won Chung commited on
Commit
ac66c98
1 Parent(s): d25986a

Add emojis

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -534,12 +534,12 @@ with gr.Blocks(css=custom_css) as block:
534
  energy_comparison_message = gr.HTML(visible=False)
535
 
536
  with gr.Row():
537
- worth_energy_vote_btn = gr.Button(value="The better response was worth the extra energy.", visible=False)
538
- notworth_energy_vote_btn = gr.Button(value="Not really worth it.", visible=False)
539
  energy_vote_btn_list: list[gr.component.Component] = [worth_energy_vote_btn, notworth_energy_vote_btn]
540
 
541
  with gr.Row():
542
- play_again_btn = gr.Button("Play again!", visible=False)
543
 
544
  gr.Markdown(open("docs/colosseum_bottom.md").read())
545
 
 
534
  energy_comparison_message = gr.HTML(visible=False)
535
 
536
  with gr.Row():
537
+ worth_energy_vote_btn = gr.Button(value="The better response was worth 👍 the extra energy.", visible=False)
538
+ notworth_energy_vote_btn = gr.Button(value="Not really worth it. 👎", visible=False)
539
  energy_vote_btn_list: list[gr.component.Component] = [worth_energy_vote_btn, notworth_energy_vote_btn]
540
 
541
  with gr.Row():
542
+ play_again_btn = gr.Button("Play again!", visible=False, elem_classes=["btn-submit"])
543
 
544
  gr.Markdown(open("docs/colosseum_bottom.md").read())
545