Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -120,11 +120,14 @@ def start_quiz(name):
|
|
120 |
# Create the Gradio interface
|
121 |
with gr.Blocks() as iface:
|
122 |
gr.Markdown("# Listening Cloze Test Instructions")
|
123 |
-
gr.Markdown("
|
|
|
124 |
|
125 |
-
For example, if you hear "Yesterday, Alex ___ to the store," and the beep sound is where the blank is, you should write "went" if that is the verb you heard
|
126 |
|
127 |
-
Are you ready? Let's begin!**
|
|
|
|
|
128 |
name_input = gr.Textbox(label="Enter your name")
|
129 |
start_button = gr.Button("Start Quiz")
|
130 |
question_audio = gr.Audio(interactive=False, autoplay=True)
|
|
|
120 |
# Create the Gradio interface
|
121 |
with gr.Blocks() as iface:
|
122 |
gr.Markdown("# Listening Cloze Test Instructions")
|
123 |
+
gr.Markdown("""
|
124 |
+
**You will hear a recording of a story. There are 7 blanks in the text where you need to write the correct form of the verb you hear. Whenever you hear a beep sound, it means there is a blank space to fill in. Write the correct verb form you hear in the blank space. Remember, you do not need to write the entire sentence, just the verb.**
|
125 |
|
126 |
+
**For example, if you hear "Yesterday, Alex ___ to the store," and the beep sound is where the blank is, you should write "went" if that is the verb you heard.**
|
127 |
|
128 |
+
**Are you ready? Let's begin!**
|
129 |
+
""")
|
130 |
+
|
131 |
name_input = gr.Textbox(label="Enter your name")
|
132 |
start_button = gr.Button("Start Quiz")
|
133 |
question_audio = gr.Audio(interactive=False, autoplay=True)
|