Spaces:
Running
Running
Commit
·
c435fcc
1
Parent(s):
8c46e7b
small rename
Browse files
main.py
CHANGED
|
@@ -388,8 +388,7 @@ def main():
|
|
| 388 |
}
|
| 389 |
}
|
| 390 |
"""
|
| 391 |
-
|
| 392 |
-
with demo:
|
| 393 |
gr.HTML(TITLE)
|
| 394 |
|
| 395 |
# -- Introduction
|
|
@@ -486,7 +485,7 @@ def main():
|
|
| 486 |
with gr.Row(), gr.Accordion("📂 Version History", open=False):
|
| 487 |
gr.Markdown(VERSION_HISTORY_BUTTON_TEXT, elem_classes="markdown-text")
|
| 488 |
|
| 489 |
-
|
| 490 |
|
| 491 |
|
| 492 |
if __name__ == "__main__":
|
|
|
|
| 388 |
}
|
| 389 |
}
|
| 390 |
"""
|
| 391 |
+
with gr.Blocks(css=css, js=js_func, title="TabArena") as website:
|
|
|
|
| 392 |
gr.HTML(TITLE)
|
| 393 |
|
| 394 |
# -- Introduction
|
|
|
|
| 485 |
with gr.Row(), gr.Accordion("📂 Version History", open=False):
|
| 486 |
gr.Markdown(VERSION_HISTORY_BUTTON_TEXT, elem_classes="markdown-text")
|
| 487 |
|
| 488 |
+
website.launch(show_error=True, ssr_mode=False, debug=True)
|
| 489 |
|
| 490 |
|
| 491 |
if __name__ == "__main__":
|