Spaces:
Running
Running
Update app.py
Browse filesadd dataset request tab
app.py
CHANGED
@@ -12,6 +12,11 @@ from src.about import (
|
|
12 |
LLM_BENCHMARKS_TEXT,
|
13 |
TITLE,
|
14 |
)
|
|
|
|
|
|
|
|
|
|
|
15 |
from src.display.css_html_js import custom_css
|
16 |
from src.display.utils import (
|
17 |
BENCHMARK_COLS,
|
@@ -98,6 +103,9 @@ with demo:
|
|
98 |
with gr.TabItem("๐ About", elem_id="llm-benchmark-tab-table", id=2):
|
99 |
gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
|
100 |
|
|
|
|
|
|
|
101 |
with gr.TabItem("๐ Submit here! ", elem_id="llm-benchmark-tab-table", id=3):
|
102 |
with gr.Column():
|
103 |
with gr.Row():
|
|
|
12 |
LLM_BENCHMARKS_TEXT,
|
13 |
TITLE,
|
14 |
)
|
15 |
+
|
16 |
+
from src.data_request import(
|
17 |
+
DATASET_REQUEST_TEXT
|
18 |
+
)
|
19 |
+
|
20 |
from src.display.css_html_js import custom_css
|
21 |
from src.display.utils import (
|
22 |
BENCHMARK_COLS,
|
|
|
103 |
with gr.TabItem("๐ About", elem_id="llm-benchmark-tab-table", id=2):
|
104 |
gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
|
105 |
|
106 |
+
with gr.TabItem("๐ Dataset Request", elem_id="dataset-request-tab", id=2): # New tab
|
107 |
+
gr.Markdown(DATASET_REQUEST_TEXT, elem_classes="markdown-text")
|
108 |
+
|
109 |
with gr.TabItem("๐ Submit here! ", elem_id="llm-benchmark-tab-table", id=3):
|
110 |
with gr.Column():
|
111 |
with gr.Row():
|