Rooni commited on
Commit
73af1d0
·
1 Parent(s): ac2109e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -10,11 +10,12 @@ footer {visibility: hidden !important;}
10
  """
11
 
12
  with gr.Blocks(css=css) as ui:
13
- with gr.Tab("Генерация", id='vkl1'):
14
  with gr.Row():
15
  prompt = gr.Textbox(label="Prompt", lines=3)
16
- with gr.Tab("Параметры", id='vkl2'):
17
- gr.Markdown("## Скоро...")
 
18
 
19
  text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
20
 
 
10
  """
11
 
12
  with gr.Blocks(css=css) as ui:
13
+ with gr.Tab("Генерация"):
14
  with gr.Row():
15
  prompt = gr.Textbox(label="Prompt", lines=3)
16
+ with gr.Tab("Параметры"):
17
+ with gr.Row():
18
+ gr.Markdown("## Скоро...")
19
 
20
  text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
21