Leteint commited on
Commit
7dca7ac
·
verified ·
1 Parent(s): f0edecc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -80,12 +80,12 @@ with gr.Blocks(title="Flux Schnell + LoRA") as demo:
80
  lora_input = gr.Textbox(
81
  label="Repo HuggingFace LoRA",
82
  placeholder="ex: stabilityai/stable-diffusion-xl-base-1.0",
83
- value=""
84
  )
85
- subfolder_input = gr.Textbox(
86
- label="Sous-dossier (optionnel)",
87
- placeholder="ex: anime (pour XLabs-AI)",
88
- value=""
89
  )
90
  load_btn = gr.Button("Charger LoRA", variant="secondary")
91
  status = gr.Textbox(label="Status", interactive=False)
 
80
  lora_input = gr.Textbox(
81
  label="Repo HuggingFace LoRA",
82
  placeholder="ex: stabilityai/stable-diffusion-xl-base-1.0",
83
+ value="XLabs-AI/flux-lora-collection"
84
  )
85
+ subfolder_input = gr.Dropdown(
86
+ label="Style LoRA",
87
+ choices=["realism", "anime", "scenery", "art", "disney"],
88
+ value="realism"
89
  )
90
  load_btn = gr.Button("Charger LoRA", variant="secondary")
91
  status = gr.Textbox(label="Status", interactive=False)