Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,12 +25,12 @@ with gr.Blocks(css=css) as vui:
|
|
25 |
with gr.Row():
|
26 |
with gr.Accordion(label="Выпадающий список", open=False):
|
27 |
num = gr.Radio(interactive=True, value="1", show_label=False, choices=["1", "2"])
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
|
33 |
-
vkl2_text_button.click(test, inputs=[num, enter_one], outputs=vkl2_text_output)
|
34 |
|
35 |
|
36 |
|
|
|
25 |
with gr.Row():
|
26 |
with gr.Accordion(label="Выпадающий список", open=False):
|
27 |
num = gr.Radio(interactive=True, value="1", show_label=False, choices=["1", "2"])
|
28 |
+
|
29 |
+
vkl2_text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
|
30 |
+
|
31 |
+
vkl2_text_output = gr.Textbox()
|
32 |
|
33 |
+
vkl2_text_button.click(test, inputs=[num, enter_one], outputs=vkl2_text_output)
|
34 |
|
35 |
|
36 |
|