Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -149,12 +149,12 @@ def build_demo(TYPES):
|
|
| 149 |
|
| 150 |
with gr.Column():
|
| 151 |
with gr.Accordion("🔑 Ground-Truth Answer", open=True, elem_classes="accordion-label"):
|
| 152 |
-
gold_answer = gr.HTML("", elem_id="
|
| 153 |
gold_answer.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
| 154 |
|
| 155 |
with gr.Column():
|
| 156 |
with gr.Accordion("Correctness", open=True, elem_classes="accordion-label"):
|
| 157 |
-
correctness = gr.HTML("", elem_id="
|
| 158 |
correctness.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
| 159 |
|
| 160 |
# Display chat history when button is clicked
|
|
|
|
| 149 |
|
| 150 |
with gr.Column():
|
| 151 |
with gr.Accordion("🔑 Ground-Truth Answer", open=True, elem_classes="accordion-label"):
|
| 152 |
+
gold_answer = gr.HTML("", elem_id="markdown-text-tiny")
|
| 153 |
gold_answer.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
| 154 |
|
| 155 |
with gr.Column():
|
| 156 |
with gr.Accordion("Correctness", open=True, elem_classes="accordion-label"):
|
| 157 |
+
correctness = gr.HTML("", elem_id="markdown-text-tiny")
|
| 158 |
correctness.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
| 159 |
|
| 160 |
# Display chat history when button is clicked
|