Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -131,6 +131,8 @@ with gr.Blocks() as app:
|
|
131 |
submit_btn_long.click(fn=predict_correct_answer, inputs=[long_question_input, answer1_input, answer2_input],
|
132 |
outputs=[correct_answer_output, score_output])
|
133 |
|
134 |
-
|
|
|
|
|
135 |
if __name__ == "__main__":
|
136 |
app.launch()
|
|
|
131 |
submit_btn_long.click(fn=predict_correct_answer, inputs=[long_question_input, answer1_input, answer2_input],
|
132 |
outputs=[correct_answer_output, score_output])
|
133 |
|
134 |
+
long_examples = 'long_examples'
|
135 |
+
gr.Examples(long_example,[long_question_input, answer1_input, answer2_input]
|
136 |
+
|
137 |
if __name__ == "__main__":
|
138 |
app.launch()
|