Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -71,8 +71,8 @@ with gr.Blocks(theme=theme) as demo:
|
|
71 |
with gr.Tab(label="text2img"):
|
72 |
with gr.Row():
|
73 |
with gr.Column():
|
74 |
-
prompt = gr.Textbox(label="Prompt", lines=2)
|
75 |
-
negative = gr.Textbox(label="Negative Prompt", lines=3, placeholder="
|
76 |
|
77 |
with gr.Row():
|
78 |
steps = gr.Slider(label="Steps", value=30, step=1, maximum=50, minimum=1, interactive=True)
|
@@ -115,10 +115,10 @@ with gr.Blocks(theme=theme) as demo:
|
|
115 |
with gr.Tab(label="img2img"):
|
116 |
with gr.Row():
|
117 |
with gr.Column():
|
118 |
-
prompt = gr.Textbox(label="Prompt", lines=2)
|
119 |
|
120 |
with gr.Row():
|
121 |
-
negative = gr.Textbox(label="Negative Prompt", lines=3, placeholder="
|
122 |
init_image = gr.Textbox(label="Init Image Url", lines=2, placeholder="https://cdn.openai.com/API/images/guides/image_generation_simple.webp")
|
123 |
|
124 |
|
|
|
71 |
with gr.Tab(label="text2img"):
|
72 |
with gr.Row():
|
73 |
with gr.Column():
|
74 |
+
prompt = gr.Textbox(label="Prompt", lines=2, placeholder="puppies in a cloud, 4k")
|
75 |
+
negative = gr.Textbox(label="Negative Prompt", lines=3, placeholder="Add words you don't want to show up in your art...")
|
76 |
|
77 |
with gr.Row():
|
78 |
steps = gr.Slider(label="Steps", value=30, step=1, maximum=50, minimum=1, interactive=True)
|
|
|
115 |
with gr.Tab(label="img2img"):
|
116 |
with gr.Row():
|
117 |
with gr.Column():
|
118 |
+
prompt = gr.Textbox(label="Prompt", lines=2, placeholder="puppies in a cloud, 4k")
|
119 |
|
120 |
with gr.Row():
|
121 |
+
negative = gr.Textbox(label="Negative Prompt", lines=3, placeholder="Add words you don't want to show up in your art...")
|
122 |
init_image = gr.Textbox(label="Init Image Url", lines=2, placeholder="https://cdn.openai.com/API/images/guides/image_generation_simple.webp")
|
123 |
|
124 |
|