Spaces:
Sleeping
Sleeping
Commit
Β·
3dee4bf
1
Parent(s):
541732b
add columns to search and and slider
Browse files
app.py
CHANGED
|
@@ -197,17 +197,19 @@ with demo:
|
|
| 197 |
|
| 198 |
# control panel interface
|
| 199 |
with gr.Row():
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
|
|
|
|
|
|
| 211 |
|
| 212 |
with gr.Row():
|
| 213 |
with gr.Column(scale=1):
|
|
|
|
| 197 |
|
| 198 |
# control panel interface
|
| 199 |
with gr.Row():
|
| 200 |
+
with gr.Column(scale=1):
|
| 201 |
+
search_bar = gr.Textbox(
|
| 202 |
+
label="Model π€",
|
| 203 |
+
info="π Search for a model name",
|
| 204 |
+
elem_id="search-bar",
|
| 205 |
+
)
|
| 206 |
+
with gr.Column(scale=1):
|
| 207 |
+
score_slider = gr.Slider(
|
| 208 |
+
label="Average Open LLM Score π",
|
| 209 |
+
info="ποΈ Slide to minimum Average Open LLM score",
|
| 210 |
+
value=0.0,
|
| 211 |
+
elem_id="threshold-slider",
|
| 212 |
+
)
|
| 213 |
|
| 214 |
with gr.Row():
|
| 215 |
with gr.Column(scale=1):
|