jbilcke-hf HF Staff commited on
Commit
77f454d
·
1 Parent(s): 7fe48db
documentation/example_gradio_space_for_huggingface/app.py CHANGED
@@ -512,10 +512,10 @@ with gr.Blocks(title="Video Generation API") as app:
512
 
513
  seed = gr.Slider(
514
  label="Generation Seed (-1 for random)",
515
- minimum=-1,
516
- maximum=2147483647, # 2^31 - 1
517
  step=1,
518
- value=-1
519
  )
520
 
521
  enable_cpu_offload = gr.Checkbox(
 
512
 
513
  seed = gr.Slider(
514
  label="Generation Seed (-1 for random)",
515
+ minimum=0,
516
+ maximum=4294967295, # 2^32 - 1
517
  step=1,
518
+ value=0
519
  )
520
 
521
  enable_cpu_offload = gr.Checkbox(