Update app.py
Browse files
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.
|
| 86 |
-
label="
|
| 87 |
-
|
| 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)
|