Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ with gr.Blocks() as demo:
|
|
54 |
"""
|
55 |
)
|
56 |
with gr.Tab('One Image'):
|
57 |
-
model_choice = gr.Dropdown(models, label = 'Choose a model from the
|
58 |
txt_input = gr.Textbox(label = 'Your prompt:')
|
59 |
|
60 |
max_imagesone = 1
|
@@ -81,7 +81,7 @@ with gr.Blocks() as demo:
|
|
81 |
"""
|
82 |
)
|
83 |
with gr.Tab('Up To Six'):
|
84 |
-
model_choice2 = gr.Dropdown(models, label = 'Choose a model from the
|
85 |
txt_input2 = gr.Textbox(label = 'Your prompt:')
|
86 |
|
87 |
max_images = 6
|
|
|
54 |
"""
|
55 |
)
|
56 |
with gr.Tab('One Image'):
|
57 |
+
model_choice = gr.Dropdown(models, label = 'Choose a model from the 809 available! Try clearing the box and typing on it to filter them!', value = models[0], filterable = True)
|
58 |
txt_input = gr.Textbox(label = 'Your prompt:')
|
59 |
|
60 |
max_imagesone = 1
|
|
|
81 |
"""
|
82 |
)
|
83 |
with gr.Tab('Up To Six'):
|
84 |
+
model_choice2 = gr.Dropdown(models, label = 'Choose a model from the 809 available! Try clearing the box and typing on it to filter them!', value = models[0], filterable = True)
|
85 |
txt_input2 = gr.Textbox(label = 'Your prompt:')
|
86 |
|
87 |
max_images = 6
|