Update app.py
Browse files
app.py
CHANGED
|
@@ -206,7 +206,7 @@ css = """
|
|
| 206 |
}
|
| 207 |
"""
|
| 208 |
|
| 209 |
-
with gr.Blocks(
|
| 210 |
|
| 211 |
with gr.Column(elem_id="col-container"):
|
| 212 |
gr.Markdown(f"""# FLUX.2 Klein [dev]
|
|
@@ -324,4 +324,4 @@ FLUX.2 Klein [dev] is a distilled model capable of generating, editing and combi
|
|
| 324 |
outputs=[result, seed]
|
| 325 |
)
|
| 326 |
|
| 327 |
-
demo.launch()
|
|
|
|
| 206 |
}
|
| 207 |
"""
|
| 208 |
|
| 209 |
+
with gr.Blocks() as demo:
|
| 210 |
|
| 211 |
with gr.Column(elem_id="col-container"):
|
| 212 |
gr.Markdown(f"""# FLUX.2 Klein [dev]
|
|
|
|
| 324 |
outputs=[result, seed]
|
| 325 |
)
|
| 326 |
|
| 327 |
+
demo.launch(css=css)
|