gokaygokay commited on
Commit
8a3fbac
·
verified ·
1 Parent(s): ad4797c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -137,7 +137,7 @@ custom_css = """
137
  """
138
 
139
  # Gradio Interface
140
- with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="gray")) as demo:
141
  gr.Markdown("# VLM Captioner + Prompt Enhancer + SD3 Image Generator")
142
 
143
  with gr.Row():
@@ -177,4 +177,4 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="gray")) a
177
  outputs=[output_image, final_prompt, used_seed]
178
  )
179
 
180
- demo.launch(css=custom_css)
 
137
  """
138
 
139
  # Gradio Interface
140
+ with gr.Blocks(css=custom_css, theme=gr.themes.Soft(primary_hue="blue", secondary_hue="gray")) as demo:
141
  gr.Markdown("# VLM Captioner + Prompt Enhancer + SD3 Image Generator")
142
 
143
  with gr.Row():
 
177
  outputs=[output_image, final_prompt, used_seed]
178
  )
179
 
180
+ demo.launch(debug=True)