Nymbo commited on
Commit
0e16491
1 Parent(s): 95e708c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -135,7 +135,7 @@ with gr.Blocks(css=css) as demo:
135
  init_image_state = gr.State()
136
  with gr.Column(elem_id="container"):
137
 
138
- #TITLE AND SUBTITLE OF PAGE
139
 
140
  gr.Markdown(
141
  """Sissy Diffusion XL Turbo
@@ -145,6 +145,9 @@ with gr.Blocks(css=css) as demo:
145
  """,
146
  elem_id="intro",
147
  )
 
 
 
148
  with gr.Row():
149
  prompt = gr.Textbox(
150
  placeholder="Enter a prompt",
@@ -159,6 +162,9 @@ with gr.Blocks(css=css) as demo:
159
  label="Webcam",
160
  type="pil",
161
  )
 
 
 
162
  with gr.Column():
163
  image = gr.Image(type="filepath")
164
  with gr.Accordion("Advanced Options", open=False):
@@ -180,13 +186,16 @@ with gr.Blocks(css=css) as demo:
180
  step=1,
181
  )
182
 
 
 
183
  with gr.Accordion("Help and Directions"):
184
  gr.Markdown(
185
- """ Running SDXL Turbo `Alyxsissy`
186
  ## How do I use it?
187
  ### Start typing your prompt in the text box, and the model will generate images constantly as you type.
188
  ### you can also upload or paste an image, and generate variations based on your image, and prompt.
189
  ## Advanced Options
 
190
  """
191
  )
192
 
 
135
  init_image_state = gr.State()
136
  with gr.Column(elem_id="container"):
137
 
138
+ # TITLE AND SUBTITLE OF PAGE
139
 
140
  gr.Markdown(
141
  """Sissy Diffusion XL Turbo
 
145
  """,
146
  elem_id="intro",
147
  )
148
+
149
+ # PROMPT INPUT, UPLOAD IMAGE, GENERATE BUTTON, AND IMAGE OUTPUT
150
+
151
  with gr.Row():
152
  prompt = gr.Textbox(
153
  placeholder="Enter a prompt",
 
162
  label="Webcam",
163
  type="pil",
164
  )
165
+
166
+ # ADVANCED OPTIONS MENU
167
+
168
  with gr.Column():
169
  image = gr.Image(type="filepath")
170
  with gr.Accordion("Advanced Options", open=False):
 
186
  step=1,
187
  )
188
 
189
+ # HELP AND DIRECTIONS MENU
190
+
191
  with gr.Accordion("Help and Directions"):
192
  gr.Markdown(
193
+ """ # Running SDXL Turbo `Alyxsissy`
194
  ## How do I use it?
195
  ### Start typing your prompt in the text box, and the model will generate images constantly as you type.
196
  ### you can also upload or paste an image, and generate variations based on your image, and prompt.
197
  ## Advanced Options
198
+ ###
199
  """
200
  )
201