Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -310,10 +310,10 @@ with demo:
|
|
| 310 |
gr.Markdown('''
|
| 311 |
### You can test by following examples:
|
| 312 |
''')
|
| 313 |
-
|
| 314 |
-
|
| 315 |
-
|
| 316 |
-
|
| 317 |
-
|
| 318 |
|
| 319 |
demo.launch(debug=True)
|
|
|
|
| 310 |
gr.Markdown('''
|
| 311 |
### You can test by following examples:
|
| 312 |
''')
|
| 313 |
+
examples = gr.Examples(examples=
|
| 314 |
+
[ "a person jogs in place, slowly at first, then increases speed. they then back up and squat down.",
|
| 315 |
+
"a man steps forward and does a handstand",
|
| 316 |
+
"a man rises from the ground, walks in a circle and sits back down on the ground"],
|
| 317 |
+
label="Examples", inputs=[text_prompt])
|
| 318 |
|
| 319 |
demo.launch(debug=True)
|