Spaces:
Paused
Paused
montyanderson
commited on
Commit
•
98511b0
1
Parent(s):
810d812
`app.py`: powered by prodia
Browse files
app.py
CHANGED
@@ -104,8 +104,15 @@ css = """
|
|
104 |
"""
|
105 |
|
106 |
with gr.Blocks(css=css) as demo:
|
107 |
-
|
|
|
|
|
|
|
|
|
108 |
|
|
|
|
|
|
|
109 |
with gr.Tab("txt2img"):
|
110 |
with gr.Row():
|
111 |
with gr.Column(scale=6, min_width=600):
|
|
|
104 |
"""
|
105 |
|
106 |
with gr.Blocks(css=css) as demo:
|
107 |
+
|
108 |
+
|
109 |
+
with gr.Row():
|
110 |
+
with gr.Column(scale=6):
|
111 |
+
model = gr.Dropdown(interactive=True,value="v1-5-pruned-emaonly.safetensors [d7049739]", show_label=True, label="Stable Diffusion Checkpoint", choices=prodia_client.list_models())
|
112 |
|
113 |
+
with gr.Column(scale=1):
|
114 |
+
gr.Markdown(value="AUTOMATIC1111 Stable Diffusion Web UI.<br>Powered by [Prodia](https://prodia.com).")
|
115 |
+
|
116 |
with gr.Tab("txt2img"):
|
117 |
with gr.Row():
|
118 |
with gr.Column(scale=6, min_width=600):
|