Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -8,11 +8,11 @@ with gr.Blocks() as app:
|
|
| 8 |
task_box = gr.Textbox(label="🕺 Task", value="flow.task")
|
| 9 |
with gr.Row():
|
| 10 |
if flow.inputs:
|
| 11 |
-
with gr.Column(scale=
|
| 12 |
for component in flow.inputs:
|
| 13 |
component.render()
|
| 14 |
-
with gr.Column(scale=
|
| 15 |
-
gr.Image(value="recording.gif")
|
| 16 |
|
| 17 |
@gr.on(
|
| 18 |
triggers=[app.load] + [input.change for input in flow.inputs],
|
|
|
|
| 8 |
task_box = gr.Textbox(label="🕺 Task", value="flow.task")
|
| 9 |
with gr.Row():
|
| 10 |
if flow.inputs:
|
| 11 |
+
with gr.Column(scale=2):
|
| 12 |
for component in flow.inputs:
|
| 13 |
component.render()
|
| 14 |
+
with gr.Column(scale=5):
|
| 15 |
+
gr.Image(label="Recording", value="recording.gif")
|
| 16 |
|
| 17 |
@gr.on(
|
| 18 |
triggers=[app.load] + [input.change for input in flow.inputs],
|