Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -43,6 +43,13 @@ def gen_fn(model_str, prompt):
|
|
43 |
|
44 |
|
45 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
with gr.Tab('Printing Press'):
|
47 |
model_choice2 = gr.Dropdown(models, label = 'Choose model', value = models[0], filterable = False)
|
48 |
txt_input2 = gr.Textbox(label = 'Prompt text')
|
|
|
43 |
|
44 |
|
45 |
with gr.Blocks() as demo:
|
46 |
+
gr.HTML(
|
47 |
+
"""
|
48 |
+
<div>
|
49 |
+
<p> <center><img src="https://cdn-uploads.huggingface.co/production/uploads/63239b8370edc53f51cd5d42/lo4Tw0iJ9AM-yDRx2oeca.png" style="height:128px; width:482px; padding-top:0px;" span title="Free ai art image generator Printing Press"></center>
|
50 |
+
</p>
|
51 |
+
"""
|
52 |
+
)
|
53 |
with gr.Tab('Printing Press'):
|
54 |
model_choice2 = gr.Dropdown(models, label = 'Choose model', value = models[0], filterable = False)
|
55 |
txt_input2 = gr.Textbox(label = 'Prompt text')
|