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()