Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -277,26 +277,25 @@ Name for your new endpoint""")
|
|
277 |
)
|
278 |
|
279 |
with gr.Row():
|
280 |
-
with gr.
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
with gr.Column(scale=2):
|
300 |
gr.Markdown("""### Security Level""")
|
301 |
security_selector = gr.Radio(
|
302 |
choices=["Protected", "Public", "Private"],
|
|
|
277 |
)
|
278 |
|
279 |
with gr.Row():
|
280 |
+
with gr.Column():
|
281 |
+
gr.Markdown("""### Min Number of Nodes""")
|
282 |
+
min_node_selector = gr.Number(
|
283 |
+
value=1,
|
284 |
+
interactive=True,
|
285 |
+
show_label=False,
|
286 |
+
elem_classes=["no-label", "small-big"]
|
287 |
+
)
|
288 |
+
|
289 |
+
with gr.Column():
|
290 |
+
gr.Markdown("""### Max Number of Nodes""")
|
291 |
+
max_node_selector = gr.Number(
|
292 |
+
value=1,
|
293 |
+
interactive=True,
|
294 |
+
show_label=False,
|
295 |
+
elem_classes=["no-label", "small-big"]
|
296 |
+
)
|
297 |
+
|
298 |
+
with gr.Column():
|
|
|
299 |
gr.Markdown("""### Security Level""")
|
300 |
security_selector = gr.Radio(
|
301 |
choices=["Protected", "Public", "Private"],
|