hysts HF staff commited on
Commit
9ebd691
1 Parent(s): 7360ef0

fill_height=True

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
utils.py CHANGED
@@ -14,7 +14,7 @@ def get_app(
14
  def update_model(new_model: str) -> list[gr.Column]:
15
  return [gr.Column(visible=model_name == new_model) for model_name in models]
16
 
17
- with gr.Blocks() as demo:
18
  model = gr.Dropdown(label=dropdown_label, choices=models, value=default_model)
19
 
20
  columns = []
 
14
  def update_model(new_model: str) -> list[gr.Column]:
15
  return [gr.Column(visible=model_name == new_model) for model_name in models]
16
 
17
+ with gr.Blocks(fill_height=True) as demo:
18
  model = gr.Dropdown(label=dropdown_label, choices=models, value=default_model)
19
 
20
  columns = []