Spaces:
Running
Running
fill_height=True
Browse files
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 = []
|