habulaj commited on
Commit
3ebfaf4
·
verified ·
1 Parent(s): 5d5441c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -5
app.py CHANGED
@@ -229,11 +229,22 @@ with gr.Blocks(theme=theme, css="style.css") as demo:
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')
 
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
+ # Adicione o conteúdo do tab Txt2Img aqui
234
+ pass
235
+
236
+ with gr.Tab("Img2Img"):
237
+ # Adicione o conteúdo do tab Img2Img aqui
238
+ pass
239
+
240
+ with gr.Tab("Controlnet"):
241
+ # Adicione o conteúdo do tab Controlnet aqui
242
+ pass
243
+
244
+ with gr.Tab("Inpaint"):
245
+ # Adicione o conteúdo do tab Inpaint aqui
246
+ pass
247
+
248
  with gr.Group():
249
  model = gr.Text(label='Model', placeholder='e.g. stabilityai/stable-diffusion-xl-base-1.0')
250
  vaecall = gr.Text(label='VAE', placeholder='e.g. madebyollin/sdxl-vae-fp16-fix')