Rooni commited on
Commit
6929f7b
1 Parent(s): d4e1a5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -200,8 +200,8 @@ css = """
200
 
201
  with gr.Blocks(css=css) as demo:
202
  with gr.Row():
203
- with gr.Column(scale=6):
204
- model = gr.Dropdown(interactive=True,value="absolutereality_v181.safetensors [3d9d4d2b]", show_label=True, label="Модель", choices=prodia_client.list_models())
205
 
206
  with gr.Tabs() as tabs:
207
 
 
200
 
201
  with gr.Blocks(css=css) as demo:
202
  with gr.Row():
203
+ with gr.Collapsible(label="Выбор модели", default_open=True):
204
+ model = gr.Radio(interactive=True, value="absolutereality_v181.safetensors [3d9d4d2b]", show_label=True, label="Модель", choices=prodia_client.list_models())
205
 
206
  with gr.Tabs() as tabs:
207