zenafey commited on
Commit
d606b0c
·
1 Parent(s): 0eee734

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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="badly drawn")
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="badly drawn")
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