abidlabs HF Staff commited on
Commit
b4c9c8b
·
verified ·
1 Parent(s): 2ffcaa3

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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=1):
12
  for component in flow.inputs:
13
  component.render()
14
- with gr.Column(scale=3):
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],