Nekochu commited on
Commit
2bd2612
·
1 Parent(s): d2ae079

allow custom LoRA values in dropdown (API clients)

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -666,6 +666,7 @@ def gradio_main():
666
  lora_select = gr.Dropdown(
667
  label="LoRA", choices=_list_lora_choices(),
668
  value="None (no LoRA)", scale=1,
 
669
  )
670
  lm_model_select = gr.Dropdown(
671
  label="LM Model", choices=_lm_model_choices(),
 
666
  lora_select = gr.Dropdown(
667
  label="LoRA", choices=_list_lora_choices(),
668
  value="None (no LoRA)", scale=1,
669
+ allow_custom_value=True,
670
  )
671
  lm_model_select = gr.Dropdown(
672
  label="LM Model", choices=_lm_model_choices(),