Spaces:
Sleeping
Sleeping
Commit ·
9f14eca
1
Parent(s): ad2f18f
init
Browse files- README.md +11 -0
- WhyCompany.mp3 +0 -0
- app.py +22 -0
- requirements.txt +1 -0
- youAndCareer.mp3 +0 -0
README.md
CHANGED
|
@@ -11,3 +11,14 @@ license: mit
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 14 |
+
|
| 15 |
+
使用 uv requirements.txt 安装依赖项。
|
| 16 |
+
|
| 17 |
+
运行 `python app.py` 启动应用程序。
|
| 18 |
+
|
| 19 |
+
# 文件
|
| 20 |
+
“Tell us about yourself and what motivates you in your career.”
|
| 21 |
+
- youAndCareer.mp3
|
| 22 |
+
|
| 23 |
+
“Why are you interested in working at this company?”
|
| 24 |
+
- WhyCompany.mp3
|
WhyCompany.mp3
ADDED
|
Binary file (40.1 kB). View file
|
|
|
app.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
with gr.Blocks() as demo:
|
| 4 |
+
gr.Markdown("# Interview Questions")
|
| 5 |
+
|
| 6 |
+
with gr.Column():
|
| 7 |
+
# Question 1
|
| 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 |
+
|
| 22 |
+
demo.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
gradio==5.49.1
|
youAndCareer.mp3
ADDED
|
Binary file (51.8 kB). View file
|
|
|