Pamudu13 commited on
Commit
df0e1d3
·
verified ·
1 Parent(s): 0babec3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -518,7 +518,7 @@ with gr.Blocks(
518
  members = get_trello_members()
519
 
520
  with gr.Tab("Voice Input"):
521
- with gr.Box(elem_classes="input-container"):
522
  audio_input = gr.Audio(
523
  label="Record or Upload Audio",
524
  sources=["microphone", "upload"],
@@ -549,7 +549,7 @@ with gr.Blocks(
549
  audio_button = gr.Button("Create Task", elem_classes="primary")
550
 
551
  with gr.Tab("Text Input"):
552
- with gr.Box(elem_classes="input-container"):
553
  text_input = gr.Textbox(
554
  lines=3,
555
  placeholder="Describe your task here (e.g., 'Need to prepare quarterly report with sales data by next Friday')",
@@ -566,7 +566,7 @@ with gr.Blocks(
566
  )
567
  text_button = gr.Button("Create Task", elem_classes="primary")
568
 
569
- with gr.Box(elem_classes="output-markdown"):
570
  output = gr.Markdown(
571
  label="Task Details",
572
  value="Task details will appear here..."
 
518
  members = get_trello_members()
519
 
520
  with gr.Tab("Voice Input"):
521
+ with gr.Column(elem_classes="input-container"):
522
  audio_input = gr.Audio(
523
  label="Record or Upload Audio",
524
  sources=["microphone", "upload"],
 
549
  audio_button = gr.Button("Create Task", elem_classes="primary")
550
 
551
  with gr.Tab("Text Input"):
552
+ with gr.Column(elem_classes="input-container"):
553
  text_input = gr.Textbox(
554
  lines=3,
555
  placeholder="Describe your task here (e.g., 'Need to prepare quarterly report with sales data by next Friday')",
 
566
  )
567
  text_button = gr.Button("Create Task", elem_classes="primary")
568
 
569
+ with gr.Column(elem_classes="output-markdown"):
570
  output = gr.Markdown(
571
  label="Task Details",
572
  value="Task details will appear here..."