Spaces:
Runtime error
Runtime error
Commit
·
057ebe8
1
Parent(s):
b4e0f77
Fix issue with unrecognized keyword
Browse files
app.py
CHANGED
|
@@ -301,7 +301,7 @@ css = """
|
|
| 301 |
}
|
| 302 |
"""
|
| 303 |
|
| 304 |
-
with gr.Blocks(
|
| 305 |
with gr.Column(elem_id="col-container"):
|
| 306 |
gr.Markdown(
|
| 307 |
"""# FLUX.2 [dev] Text-to-Image
|
|
@@ -413,4 +413,4 @@ FLUX.2 [dev] is a 32B model rectified flow capable of generating, editing and co
|
|
| 413 |
)
|
| 414 |
|
| 415 |
if __name__ == "__main__":
|
| 416 |
-
demo.launch()
|
|
|
|
| 301 |
}
|
| 302 |
"""
|
| 303 |
|
| 304 |
+
with gr.Blocks() as demo:
|
| 305 |
with gr.Column(elem_id="col-container"):
|
| 306 |
gr.Markdown(
|
| 307 |
"""# FLUX.2 [dev] Text-to-Image
|
|
|
|
| 413 |
)
|
| 414 |
|
| 415 |
if __name__ == "__main__":
|
| 416 |
+
demo.launch(css=css)
|