Spaces:
Sleeping
Sleeping
controllers/gra_06_video/video.py
CHANGED
@@ -60,8 +60,8 @@ examples = [
|
|
60 |
with gr.Blocks() as gradio_interface:
|
61 |
gr.Markdown(DESCRIPTION)
|
62 |
with gr.Group():
|
63 |
-
with gr.Box()
|
64 |
-
with gr.Row(elem_id='prompt-container')
|
65 |
prompt = gr.Text(
|
66 |
label='Prompt',
|
67 |
show_label=False,
|
@@ -94,6 +94,7 @@ with gr.Blocks() as gradio_interface:
|
|
94 |
step=1,
|
95 |
value=25)
|
96 |
|
|
|
97 |
inputs = [
|
98 |
prompt,
|
99 |
seed,
|
|
|
60 |
with gr.Blocks() as gradio_interface:
|
61 |
gr.Markdown(DESCRIPTION)
|
62 |
with gr.Group():
|
63 |
+
with gr.Column(): # `gr.Box()` → `gr.Column()` に変更
|
64 |
+
with gr.Row(elem_id='prompt-container'): # `.style()` を削除
|
65 |
prompt = gr.Text(
|
66 |
label='Prompt',
|
67 |
show_label=False,
|
|
|
94 |
step=1,
|
95 |
value=25)
|
96 |
|
97 |
+
|
98 |
inputs = [
|
99 |
prompt,
|
100 |
seed,
|