Update app.py
Browse files
app.py
CHANGED
|
@@ -241,7 +241,7 @@ def repeat_infer(
|
|
| 241 |
return result, seed, image_path, enhanced_prompt
|
| 242 |
|
| 243 |
|
| 244 |
-
with gr.Blocks(theme=gr.themes.Origin(
|
| 245 |
with gr.Column(elem_id="col-container"):
|
| 246 |
gr.Markdown(" # Text-to-Text-to-Image StableDiffusion 3.5 Medium (with refine)")
|
| 247 |
expanded_prompt_output = gr.Textbox(label="Expanded Prompt", lines=5) # Add this line
|
|
|
|
| 241 |
return result, seed, image_path, enhanced_prompt
|
| 242 |
|
| 243 |
|
| 244 |
+
with gr.Blocks(theme=gr.themes.Origin()) as demo:
|
| 245 |
with gr.Column(elem_id="col-container"):
|
| 246 |
gr.Markdown(" # Text-to-Text-to-Image StableDiffusion 3.5 Medium (with refine)")
|
| 247 |
expanded_prompt_output = gr.Textbox(label="Expanded Prompt", lines=5) # Add this line
|