Vasudevakrishna commited on
Commit
d5c0426
·
verified ·
1 Parent(s): d6b9c70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,7 +6,8 @@ from utils import generate_gradio_images
6
  iface = gr.Interface(
7
  fn=generate_gradio_images, # Set to None since we won't use a function
8
  inputs=[
9
- gr.Textbox("Enter Prompt")
 
10
  ],
11
  outputs=gr.Image() # Gradio Image component for displaying images
12
  )
 
6
  iface = gr.Interface(
7
  fn=generate_gradio_images, # Set to None since we won't use a function
8
  inputs=[
9
+ gr.Textbox("Enter Prompt"),
10
+ gr.Number("Time Stamps", default=1, max=50)
11
  ],
12
  outputs=gr.Image() # Gradio Image component for displaying images
13
  )