Spaces:
Running on Zero
Running on Zero
update app
Browse files
app.py
CHANGED
|
@@ -737,14 +737,15 @@ class LightingControl3D(gr.HTML):
|
|
| 737 |
**kwargs
|
| 738 |
)
|
| 739 |
|
| 740 |
-
css
|
| 741 |
#col-container { max-width: 1200px; margin: 0 auto; }
|
| 742 |
.dark .progress-text { color: white !important; }
|
| 743 |
#lighting-3d-control { min-height: 450px; }
|
| 744 |
.slider-row { display: flex; gap: 10px; align-items: center; }
|
| 745 |
#main-title h1 {font-size: 2.4em !important;}
|
| 746 |
-
|
| 747 |
-
|
|
|
|
| 748 |
gr.Markdown("# **Qwen-Image-Edit-2511-3D-Lighting-Control**", elem_id="main-title")
|
| 749 |
gr.Markdown("Control lighting directions using the **3D viewport** or **sliders**. Use [Multi-Angle-Lighting](https://huggingface.co/dx8152/Qwen-Edit-2509-Multi-Angle-Lighting) LoRA for precise lighting control, paired with [Rapid-AIO-V19](https://huggingface.co/prithivMLmods/Qwen-Image-Edit-Rapid-AIO-V19).")
|
| 750 |
|
|
|
|
| 737 |
**kwargs
|
| 738 |
)
|
| 739 |
|
| 740 |
+
css="""
|
| 741 |
#col-container { max-width: 1200px; margin: 0 auto; }
|
| 742 |
.dark .progress-text { color: white !important; }
|
| 743 |
#lighting-3d-control { min-height: 450px; }
|
| 744 |
.slider-row { display: flex; gap: 10px; align-items: center; }
|
| 745 |
#main-title h1 {font-size: 2.4em !important;}
|
| 746 |
+
"""
|
| 747 |
+
|
| 748 |
+
with gr.Blocks() as demo:
|
| 749 |
gr.Markdown("# **Qwen-Image-Edit-2511-3D-Lighting-Control**", elem_id="main-title")
|
| 750 |
gr.Markdown("Control lighting directions using the **3D viewport** or **sliders**. Use [Multi-Angle-Lighting](https://huggingface.co/dx8152/Qwen-Edit-2509-Multi-Angle-Lighting) LoRA for precise lighting control, paired with [Rapid-AIO-V19](https://huggingface.co/prithivMLmods/Qwen-Image-Edit-Rapid-AIO-V19).")
|
| 751 |
|