hanbinChen commited on
Commit
3923dc8
·
1 Parent(s): 9f14eca
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,14 +8,14 @@ with gr.Blocks() as demo:
8
  with gr.Group():
9
  with gr.Row():
10
  gr.Markdown("### Why do you want to join our company?")
11
- gr.Audio("/Users/hanbin/workspace/interview/WhyCompany.mp3", label="Play audio", interactive=False)
12
  gr.Textbox(label="Your Answer", lines=3, placeholder="Type your answer here...")
13
 
14
  # Question 2
15
  with gr.Group():
16
  with gr.Row():
17
  gr.Markdown("### Tell me about yourself and your career goals.")
18
- gr.Audio("/Users/hanbin/workspace/interview/youAndCareer.mp3", label="Play audio", interactive=False)
19
  gr.Textbox(label="Your Answer", lines=3, placeholder="Type your answer here...")
20
 
21
 
 
8
  with gr.Group():
9
  with gr.Row():
10
  gr.Markdown("### Why do you want to join our company?")
11
+ gr.Audio("WhyCompany.mp3", label="Play audio", interactive=False)
12
  gr.Textbox(label="Your Answer", lines=3, placeholder="Type your answer here...")
13
 
14
  # Question 2
15
  with gr.Group():
16
  with gr.Row():
17
  gr.Markdown("### Tell me about yourself and your career goals.")
18
+ gr.Audio("youAndCareer.mp3", label="Play audio", interactive=False)
19
  gr.Textbox(label="Your Answer", lines=3, placeholder="Type your answer here...")
20
 
21