Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -282,8 +282,6 @@ css = """
|
|
282 |
# Gradio interface
|
283 |
with gr.Blocks(theme=theme, css=css) as app:
|
284 |
gr.HTML("<center><h6>🎨 Image Studio</h6></center>")
|
285 |
-
# with gr.Tab("Text to Image"):
|
286 |
-
|
287 |
with gr.Tab("Flip Image"):
|
288 |
with gr.Row():
|
289 |
image_input = gr.Image(type="numpy", label="Upload Image")
|
@@ -324,5 +322,7 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
324 |
inputs=[image_input, filter_type],
|
325 |
outputs=image_output
|
326 |
)
|
|
|
|
|
327 |
|
328 |
app.launch(share=True)
|
|
|
282 |
# Gradio interface
|
283 |
with gr.Blocks(theme=theme, css=css) as app:
|
284 |
gr.HTML("<center><h6>🎨 Image Studio</h6></center>")
|
|
|
|
|
285 |
with gr.Tab("Flip Image"):
|
286 |
with gr.Row():
|
287 |
image_input = gr.Image(type="numpy", label="Upload Image")
|
|
|
322 |
inputs=[image_input, filter_type],
|
323 |
outputs=image_output
|
324 |
)
|
325 |
+
with gr.Tab("Image"):
|
326 |
+
gr.load("models/XLabs-AI/flux-RealismLora").launch()
|
327 |
|
328 |
app.launch(share=True)
|