Spaces:
Running
on
Zero
Running
on
Zero
vinesmsuic
commited on
Commit
•
7b740cd
1
Parent(s):
b286f94
rename Direct Chat to playground
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ def build_combine_demo(models, elo_results_file, leaderboard_table_file):
|
|
24 |
with gr.Tab("Generation Arena (side-by-side)", id=1):
|
25 |
build_side_by_side_ui_named(models)
|
26 |
|
27 |
-
with gr.Tab("Generation
|
28 |
build_single_model_ui(models, add_promotion_links=True)
|
29 |
if elo_results_file:
|
30 |
with gr.Tab("Generation Leaderboard", id=3):
|
@@ -38,7 +38,7 @@ def build_combine_demo(models, elo_results_file, leaderboard_table_file):
|
|
38 |
with gr.Tab("Edition Arena (side-by-side)", id=6):
|
39 |
build_side_by_side_ui_named_ie(models)
|
40 |
|
41 |
-
with gr.Tab("Edition
|
42 |
build_single_model_ui_ie(models, add_promotion_links=True)
|
43 |
if elo_results_file:
|
44 |
with gr.Tab("Edition Leaderboard", id=8):
|
@@ -52,7 +52,7 @@ def build_combine_demo(models, elo_results_file, leaderboard_table_file):
|
|
52 |
with gr.Tab("Video Generation Arena (side-by-side)", id=11):
|
53 |
build_side_by_side_ui_named_vg(models)
|
54 |
|
55 |
-
with gr.Tab("Video Generation
|
56 |
build_single_model_ui_vg(models, add_promotion_links=True)
|
57 |
if elo_results_file and 'video_generation' in elo_results_file:
|
58 |
with gr.Tab("Video Generation Leaderboard", id=13):
|
|
|
24 |
with gr.Tab("Generation Arena (side-by-side)", id=1):
|
25 |
build_side_by_side_ui_named(models)
|
26 |
|
27 |
+
with gr.Tab("Generation Playground", id=2): #Direct Chat
|
28 |
build_single_model_ui(models, add_promotion_links=True)
|
29 |
if elo_results_file:
|
30 |
with gr.Tab("Generation Leaderboard", id=3):
|
|
|
38 |
with gr.Tab("Edition Arena (side-by-side)", id=6):
|
39 |
build_side_by_side_ui_named_ie(models)
|
40 |
|
41 |
+
with gr.Tab("Edition Playground", id=7): #Direct Chat
|
42 |
build_single_model_ui_ie(models, add_promotion_links=True)
|
43 |
if elo_results_file:
|
44 |
with gr.Tab("Edition Leaderboard", id=8):
|
|
|
52 |
with gr.Tab("Video Generation Arena (side-by-side)", id=11):
|
53 |
build_side_by_side_ui_named_vg(models)
|
54 |
|
55 |
+
with gr.Tab("Video Generation Playground", id=12): #Direct Chat
|
56 |
build_single_model_ui_vg(models, add_promotion_links=True)
|
57 |
if elo_results_file and 'video_generation' in elo_results_file:
|
58 |
with gr.Tab("Video Generation Leaderboard", id=13):
|