Vector857 commited on
Commit
b4e0db9
Β·
verified Β·
1 Parent(s): d5971c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -596,6 +596,15 @@ with gr.Blocks(title="D-REX Studio") as app:
596
  custom_lora_info = gr.HTML(visible=False)
597
  custom_lora_remove = gr.Button("Remove custom LoRA", visible=False, size="sm", variant="secondary")
598
 
 
 
 
 
 
 
 
 
 
599
  # ── RIGHT PANEL ──
600
  with gr.Column(scale=5):
601
 
 
596
  custom_lora_info = gr.HTML(visible=False)
597
  custom_lora_remove = gr.Button("Remove custom LoRA", visible=False, size="sm", variant="secondary")
598
 
599
+ with gr.Tab("Image Tools"):
600
+ with gr.Row():
601
+ input_tool_img = gr.Image(label="Upload Image for Tools", type="pil")
602
+
603
+ with gr.Row():
604
+ upscale_btn = gr.Button("πŸš€ Upscale (2x)", variant="secondary")
605
+ face_swap_btn = gr.Button("🎭 Face Swap", variant="secondary")
606
+
607
+ output_tool_img = gr.Image(label="Result")
608
  # ── RIGHT PANEL ──
609
  with gr.Column(scale=5):
610