Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -174,13 +174,23 @@ with block:
|
|
174 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
175 |
with gr.TabItem(" π AutoEval-Video Benchmark", elem_id="AutoEval-Video-tab-table", id=0):
|
176 |
with gr.Row():
|
|
|
177 |
with gr.Accordion("Citation", open=False):
|
178 |
-
citation_button = gr.
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
|
185 |
gr.Markdown(
|
186 |
TABLE_INTRODUCTION
|
|
|
174 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
175 |
with gr.TabItem(" π AutoEval-Video Benchmark", elem_id="AutoEval-Video-tab-table", id=0):
|
176 |
with gr.Row():
|
177 |
+
|
178 |
with gr.Accordion("Citation", open=False):
|
179 |
+
citation_button = gr.Box(
|
180 |
+
gr.Textbox(
|
181 |
+
value=CITATION_BUTTON_TEXT,
|
182 |
+
label=CITATION_BUTTON_LABEL,
|
183 |
+
interactive=False,
|
184 |
+
elem_id="citation-button",
|
185 |
+
),
|
186 |
+
show_copy_button=True
|
187 |
+
)
|
188 |
+
# citation_button = gr.Textbox(
|
189 |
+
# value=CITATION_BUTTON_TEXT,
|
190 |
+
# label=CITATION_BUTTON_LABEL,
|
191 |
+
# interactive=False,
|
192 |
+
# elem_id="citation-button",
|
193 |
+
# ).style(show_copy_button=True)
|
194 |
|
195 |
gr.Markdown(
|
196 |
TABLE_INTRODUCTION
|