prithivMLmods commited on
Commit
8df6082
·
verified ·
1 Parent(s): 9952ae8

update app

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -238,7 +238,7 @@ css="""
238
  """
239
 
240
 
241
- with gr.Blocks(css=css, theme=orange_red_theme) as demo:
242
  with gr.Column(elem_id="col-container"):
243
  gr.Markdown("# **Qwen-Image-Edit-2509-LoRAs-Fast-Fusion**", elem_id="main-title")
244
  gr.Markdown("Perform diverse image edits using specialized [LoRA](https://huggingface.co/models?other=base_model:adapter:Qwen/Qwen-Image-Edit-2509) adapters for the [Qwen-Image-Edit](https://huggingface.co/Qwen/Qwen-Image-Edit-2509) model.")
@@ -297,4 +297,4 @@ with gr.Blocks(css=css, theme=orange_red_theme) as demo:
297
  outputs=[output_image, seed]
298
  )
299
 
300
- demo.launch(mcp_server=True, ssr_mode=False, show_error=True)
 
238
  """
239
 
240
 
241
+ with gr.Blocks() as demo:
242
  with gr.Column(elem_id="col-container"):
243
  gr.Markdown("# **Qwen-Image-Edit-2509-LoRAs-Fast-Fusion**", elem_id="main-title")
244
  gr.Markdown("Perform diverse image edits using specialized [LoRA](https://huggingface.co/models?other=base_model:adapter:Qwen/Qwen-Image-Edit-2509) adapters for the [Qwen-Image-Edit](https://huggingface.co/Qwen/Qwen-Image-Edit-2509) model.")
 
297
  outputs=[output_image, seed]
298
  )
299
 
300
+ demo.launch(css=css, theme=orange_red_theme, mcp_server=True, ssr_mode=False, show_error=True)