imthanhlv commited on
Commit
9d9a404
·
verified ·
1 Parent(s): f54fc0f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -96,5 +96,15 @@ with gr.Blocks() as demo:
96
  concurrency_limit=1
97
  )
98
 
 
 
 
 
 
 
 
 
 
 
99
  demo.queue(max_size=5)
100
  demo.launch(share=True)
 
96
  concurrency_limit=1
97
  )
98
 
99
+ gr.Dataset(
100
+ components=[prompt_input, use_fixed_seed, gif_output],
101
+ samples=[
102
+ ["A woman with light skin, wearing a blue jacket and a black hat with a veil, looks down and to her right, then back up as she speaks; she has brown hair styled in an updo, light brown eyebrows, and is wearing a white collared shirt under her jacket; the camera remains stationary on her face as she speaks; the background is out of focus, but shows trees and people in period clothing; the scene is captured in real-life footage.", False, "examples/woman.webp"],
103
+ ["A sleek white car skids into a narrow alley on wet pavement, its rear tires releasing a thin cloud of smoky exhaust as it accelerates past flickering neon signs. Rain cascades from the eaves. The camera swoops low and follows behind, capturing towering skyscraper reflections in puddles and the car’s headlights. Lightning flashes overhead, intensifying the gritty atmosphere", True, "examples/car.webp"]
104
+ ],
105
+ label="Example Inputs and Outputs",
106
+ type="index",
107
+ )
108
+
109
  demo.queue(max_size=5)
110
  demo.launch(share=True)