Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -376,6 +376,9 @@ input[type="radio"]:checked::after {
|
|
| 376 |
apply_model = gr.Dropdown(models,
|
| 377 |
value="meta-llama/Meta-Llama-3-70B-Instruct",
|
| 378 |
label="Choose the Model",
|
|
|
|
|
|
|
|
|
|
| 379 |
# elem_classes="no-background"
|
| 380 |
)
|
| 381 |
apply_button = gr.Button("Apply MetaPrompt")
|
|
|
|
| 376 |
apply_model = gr.Dropdown(models,
|
| 377 |
value="meta-llama/Meta-Llama-3-70B-Instruct",
|
| 378 |
label="Choose the Model",
|
| 379 |
+
container=False, # This removes the container around the dropdown
|
| 380 |
+
scale=1, # Controls the width relative to other components
|
| 381 |
+
min_width=300 # Sets minimum width in pixels
|
| 382 |
# elem_classes="no-background"
|
| 383 |
)
|
| 384 |
apply_button = gr.Button("Apply MetaPrompt")
|