Update app.py
Browse files
app.py
CHANGED
@@ -284,15 +284,17 @@ with gr.Blocks(css=css) as demo:
|
|
284 |
output_markdown = gr.Markdown(label="Output")
|
285 |
with gr.Row():
|
286 |
with gr.Column():
|
287 |
-
|
288 |
-
|
|
|
|
|
289 |
with gr.Column():
|
290 |
vote_markdown = gr.Markdown(label="Output")
|
291 |
with gr.Row():
|
292 |
inputs = gr.Textbox(type="text", label="Your feedback")
|
293 |
feedback_markdown = gr.Markdown(label="Output")
|
294 |
with gr.Row():
|
295 |
-
feedback_btn = gr.Button(value="Feedback
|
296 |
feedback_temp = gr.Markdown(label="Output")
|
297 |
gr.Examples(
|
298 |
examples=[
|
|
|
284 |
output_markdown = gr.Markdown(label="Output")
|
285 |
with gr.Row():
|
286 |
with gr.Column():
|
287 |
+
with gr.Column():
|
288 |
+
upvote_button = gr.Button("π")
|
289 |
+
with gr.Column():
|
290 |
+
downvote_button = gr.Button("π")
|
291 |
with gr.Column():
|
292 |
vote_markdown = gr.Markdown(label="Output")
|
293 |
with gr.Row():
|
294 |
inputs = gr.Textbox(type="text", label="Your feedback")
|
295 |
feedback_markdown = gr.Markdown(label="Output")
|
296 |
with gr.Row():
|
297 |
+
feedback_btn = gr.Button(value="Feedback")
|
298 |
feedback_temp = gr.Markdown(label="Output")
|
299 |
gr.Examples(
|
300 |
examples=[
|