File size: 808 Bytes
9f14eca
 
 
 
 
 
 
 
 
29e79f6
3923dc8
9f14eca
 
 
 
 
29e79f6
3923dc8
9f14eca
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import gradio as gr

with gr.Blocks() as demo:
    gr.Markdown("# Interview Questions")

    with gr.Column():
        # Question 1
        with gr.Group():
            with gr.Row():
                gr.Markdown("### Why are you interested in working at this company?")
                gr.Audio("WhyCompany.mp3", label="Play audio", interactive=False)
            gr.Textbox(label="Your Answer", lines=3, placeholder="Type your answer here...")

        # Question 2
        with gr.Group():
            with gr.Row():
                gr.Markdown("### Tell us about yourself and what motivates you in your career.")
                gr.Audio("youAndCareer.mp3", label="Play audio", interactive=False)
            gr.Textbox(label="Your Answer", lines=3, placeholder="Type your answer here...")


demo.launch()