Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -61,6 +61,13 @@ with gr.Blocks() as demo:
|
|
61 |
</p>
|
62 |
"""
|
63 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
with gr.Tab('One Image'):
|
65 |
model_choice = gr.Dropdown(models, label = f'Choose a model from the {len(models)} available! Try clearing the box and typing on it to filter them!', value = models[0], filterable = True)
|
66 |
txt_input = gr.Textbox(label = 'Your prompt:')
|
|
|
61 |
</p>
|
62 |
"""
|
63 |
)
|
64 |
+
gr.HTML(
|
65 |
+
"""
|
66 |
+
<div>
|
67 |
+
<p> <center>For more than 900 models visit the <a href="https://huggingface.co/spaces/Yntec/PrintingPress">Printing Press</a>!</center>
|
68 |
+
</p></div>
|
69 |
+
"""
|
70 |
+
)
|
71 |
with gr.Tab('One Image'):
|
72 |
model_choice = gr.Dropdown(models, label = f'Choose a model from the {len(models)} available! Try clearing the box and typing on it to filter them!', value = models[0], filterable = True)
|
73 |
txt_input = gr.Textbox(label = 'Your prompt:')
|