SLAPaper commited on
Commit
73943f4
1 Parent(s): 99e8a6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ demo = gr.Interface(
45
  fn=super_prompt,
46
  inputs=[
47
  gr.Textbox(label="input text"),
48
- gr.Slider(label="seed", minimum=0, maximum=2**32, step=1),
49
  gr.Slider(label="max_new_tokens", minimum=0, maximum=375, step=1),
50
  gr.Textbox(label="custom prompt", placeholder="leave empty to use default")],
51
  outputs=[gr.Textbox(label="output", lines=6)],
 
45
  fn=super_prompt,
46
  inputs=[
47
  gr.Textbox(label="input text"),
48
+ gr.Slider(label="seed", minimum=0, maximum=2**32-1, step=1),
49
  gr.Slider(label="max_new_tokens", minimum=0, maximum=375, step=1),
50
  gr.Textbox(label="custom prompt", placeholder="leave empty to use default")],
51
  outputs=[gr.Textbox(label="output", lines=6)],