Spaces:
Runtime error
Runtime error
Commit
·
810d812
1
Parent(s):
5a59c11
`app.py`: move prompt input
Browse files
app.py
CHANGED
|
@@ -104,10 +104,11 @@ css = """
|
|
| 104 |
"""
|
| 105 |
|
| 106 |
with gr.Blocks(css=css) as demo:
|
|
|
|
|
|
|
| 107 |
with gr.Tab("txt2img"):
|
| 108 |
with gr.Row():
|
| 109 |
with gr.Column(scale=6, min_width=600):
|
| 110 |
-
model = gr.Dropdown(interactive=True,value="v1-5-pruned-emaonly.safetensors [d7049739]", show_label=True, label="Stable Diffusion Checkpoint", choices=prodia_client.list_models())
|
| 111 |
prompt = gr.Textbox("puppies in a cloud, 4k", placeholder="Prompt", show_label=False, lines=3)
|
| 112 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3)
|
| 113 |
with gr.Column(equal_height=True):
|
|
|
|
| 104 |
"""
|
| 105 |
|
| 106 |
with gr.Blocks(css=css) as demo:
|
| 107 |
+
model = gr.Dropdown(interactive=True,value="v1-5-pruned-emaonly.safetensors [d7049739]", show_label=True, label="Stable Diffusion Checkpoint", choices=prodia_client.list_models())
|
| 108 |
+
|
| 109 |
with gr.Tab("txt2img"):
|
| 110 |
with gr.Row():
|
| 111 |
with gr.Column(scale=6, min_width=600):
|
|
|
|
| 112 |
prompt = gr.Textbox("puppies in a cloud, 4k", placeholder="Prompt", show_label=False, lines=3)
|
| 113 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3)
|
| 114 |
with gr.Column(equal_height=True):
|