Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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(
|
|
|
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)
|