salomonsky commited on
Commit
56f793a
1 Parent(s): 0198afd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -66,10 +66,8 @@ with gr.Blocks(css=CSS, js=JS, theme="Nymbo/Nymbo_Theme") as demo:
66
  with gr.Group():
67
  prompt = gr.Textbox(label="Prompt")
68
  basemodel_choice = gr.Dropdown(label="Base Model", choices=["black-forest-labs/FLUX.1-schnell", "black-forest-labs/FLUX.1-DEV"], value="black-forest-labs/FLUX.1-schnell")
69
- lora_add = gr.Textbox(label="Add Flux LoRA", info="Modelo Lora", lines=1, value="XLabs-AI/flux-RealismLora")
70
- lora_word = gr.Textbox(label="Add Flux LoRA Trigger Word", info="Add the Trigger Word", lines=1, value="")
71
- lora_model_choice = gr.Dropdown(label="LORA Model", choices=["Shakker-Labs/FLUX.1-dev-LoRA-add-details", "Otro modelo LORA"])
72
- process_lora = gr.Checkbox(label="Process LORA", value=True)
73
  upscale_factor = gr.Radio(label="UpScale Factor", choices=[2, 4, 8], value=2, scale=2)
74
  process_upscale = gr.Checkbox(label="Process Upscale", value=False)
75
 
 
66
  with gr.Group():
67
  prompt = gr.Textbox(label="Prompt")
68
  basemodel_choice = gr.Dropdown(label="Base Model", choices=["black-forest-labs/FLUX.1-schnell", "black-forest-labs/FLUX.1-DEV"], value="black-forest-labs/FLUX.1-schnell")
69
+ lora_model_choice = gr.Dropdown(label="LORA Model", choices=["Shakker-Labs/FLUX.1-dev-LoRA-add-details", "XLabs-AI/flux-RealismLora"])
70
+ process_lora = gr.Checkbox(label="Process LORA", value=False)
 
 
71
  upscale_factor = gr.Radio(label="UpScale Factor", choices=[2, 4, 8], value=2, scale=2)
72
  process_upscale = gr.Checkbox(label="Process Upscale", value=False)
73