Rooni commited on
Commit
386c8cb
·
1 Parent(s): 0bd1072

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -15
app.py CHANGED
@@ -17,21 +17,20 @@ footer {visibility: hidden !important;}
17
  with gr.Blocks(css=css) as vui:
18
  with gr.Tabs() as tabs:
19
  with gr.Row():
20
- with gr.Column(scale=3):
21
- with gr.Tab("Вкладка 1", id='vkl1'):
22
- with gr.Row():
23
- with gr.Column(scale=3):
24
- enter_one = gr.Textbox(placeholder=вод текста 1", show_label=False, lines=3)
25
- with gr.Tab("Вкладка 2", id='vkl2'):
26
- with gr.Row():
27
- with gr.Column(scale=3):
28
- with gr.Row():
29
- with gr.Accordion(label="Выпадающий список", open=False):
30
- num = gr.Radio(interactive=True, value="1", show_label=False, choices=["1", "2"])
31
- with gr.Column():
32
- vkl2_text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
33
- with gr.Column(scale=2):
34
- vkl2_text_output = gr.Textbox()
35
 
36
  vkl2_text_button.click(test, inputs=[num, enter_one], outputs=vkl2_text_output)
37
 
 
17
  with gr.Blocks(css=css) as vui:
18
  with gr.Tabs() as tabs:
19
  with gr.Row():
20
+ with gr.Tab("Вкладка 1", id='vkl1'):
21
+ with gr.Row():
22
+ with gr.Column(scale=3):
23
+ enter_one = gr.Textbox(placeholder="Ввод текста 1", show_label=False, lines=3)
24
+ with gr.Tab("Вкладка 2", id='vkl2'):
25
+ with gr.Row():
26
+ with gr.Column(scale=3):
27
+ with gr.Row():
28
+ with gr.Accordion(label="Выпадающий список", open=False):
29
+ num = gr.Radio(interactive=True, value="1", show_label=False, choices=["1", "2"])
30
+ with gr.Column():
31
+ vkl2_text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
32
+ with gr.Column(scale=2):
33
+ vkl2_text_output = gr.Textbox()
 
34
 
35
  vkl2_text_button.click(test, inputs=[num, enter_one], outputs=vkl2_text_output)
36