ifire commited on
Commit
556dab2
1 Parent(s): eacd4b4

Update interactive parameter in app.py

Browse files

The commit updates the interactive parameter in the app.py file, changing it from True to False. This change disables interactivity for the "Min Length" input field.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -70,7 +70,7 @@ with gr.Blocks(theme=theme, analytics_enabled=False,css=css) as demo:
70
  maximum=100,
71
  value=60,
72
  step=1,
73
- interactive=True,
74
  label="Min Length",
75
  )
76
 
 
70
  maximum=100,
71
  value=60,
72
  step=1,
73
+ interactive=False,
74
  label="Min Length",
75
  )
76