habulaj commited on
Commit
864a3e0
β€’
1 Parent(s): bba43fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -223,11 +223,17 @@ with gr.Blocks(theme=theme, css="style.css") as demo:
223
  gr.HTML()
224
  gr.Markdown("""# Squaad AI πŸ§™
225
  ### Run Stable Diffusion for free, in seconds
226
- <small>Squaad AI was a free Artificial Intelligence website that brought together the best of the AI world in one place. Unfortunately, it had to cease operations after facing compatibility issues. This space is intended to make its legacy available as open source and allow anyone to run SD in a simple and free way.</small>.
227
 
228
  <div style="display: flex; align-items: center;">
229
  <a target="_blank" href="https://discord.gg/CqXVwGDqFC"><img src="https://img.shields.io/badge/discord-join%20now-blue.svg?logo=discord" alt="discord.gg/CqXVwGDqFC"></a>
230
  </div>""", elem_id="main_title")
 
 
 
 
 
 
231
  with gr.Group():
232
  model = gr.Text(label='Model', placeholder='e.g. stabilityai/stable-diffusion-xl-base-1.0')
233
  vaecall = gr.Text(label='VAE', placeholder='e.g. madebyollin/sdxl-vae-fp16-fix')
 
223
  gr.HTML()
224
  gr.Markdown("""# Squaad AI πŸ§™
225
  ### Run Stable Diffusion for free, in seconds
226
+ <small>Squaad AI was a free Artificial Intelligence website that brought together the best of the AI world in one place. Unfortunately, it had to cease operations after facing compatibility issues. This space is intended to make its legacy available as open source and allow anyone to run SD in a simple and free way.</small>
227
 
228
  <div style="display: flex; align-items: center;">
229
  <a target="_blank" href="https://discord.gg/CqXVwGDqFC"><img src="https://img.shields.io/badge/discord-join%20now-blue.svg?logo=discord" alt="discord.gg/CqXVwGDqFC"></a>
230
  </div>""", elem_id="main_title")
231
+
232
+ with gr.Tab("Txt2Img"):
233
+ with gr.Tab("Img2Img"):
234
+ with gr.Tab("Controlnet"):
235
+ with gr.Tab("Inpaint"):
236
+
237
  with gr.Group():
238
  model = gr.Text(label='Model', placeholder='e.g. stabilityai/stable-diffusion-xl-base-1.0')
239
  vaecall = gr.Text(label='VAE', placeholder='e.g. madebyollin/sdxl-vae-fp16-fix')