Spaces:
Running
on
Zero
Running
on
Zero
ai-forever
commited on
Commit
•
d6c2b30
1
Parent(s):
7b1a1a0
Update app.py
Browse files
app.py
CHANGED
@@ -119,15 +119,15 @@ with gr.Blocks() as demo:
|
|
119 |
with gr.Row():
|
120 |
with gr.Column():
|
121 |
# image = gr.Image(label="Upload your image", type="pil")
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
|
132 |
# with gr.Accordion("Advanced options", open=False):
|
133 |
# seed = gr.Slider(label="Seed", value=42, randomize=True, minimum=0, maximum=max_64_bit_int, step=1)
|
|
|
119 |
with gr.Row():
|
120 |
with gr.Column():
|
121 |
# image = gr.Image(label="Upload your image", type="pil")
|
122 |
+
video = gr.Video()
|
123 |
+
prompt = gr.Text(
|
124 |
+
label="Prompt",
|
125 |
+
show_label=False,
|
126 |
+
max_lines=1,
|
127 |
+
placeholder="Enter your prompt",
|
128 |
+
container=False,
|
129 |
+
)
|
130 |
+
generate_btn = gr.Button("Generate")
|
131 |
|
132 |
# with gr.Accordion("Advanced options", open=False):
|
133 |
# seed = gr.Slider(label="Seed", value=42, randomize=True, minimum=0, maximum=max_64_bit_int, step=1)
|