Add Description
Browse files
app.py
CHANGED
@@ -71,7 +71,9 @@ def clear_quiz():
|
|
71 |
return [[], ""] + [gr.update(visible=False, value=None) for _ in range(MAX_ANS_COMP)] + [""]
|
72 |
|
73 |
with gr.Blocks() as app:
|
74 |
-
gr.Markdown("# QuizWhiz Quiz
|
|
|
|
|
75 |
with gr.Row():
|
76 |
grade = gr.Dropdown(choices=[6], label="Grade", value=6)
|
77 |
num_questions = gr.Dropdown(choices=[5, 10, 15, 20], label="Number of Questions", value=5)
|
|
|
71 |
return [[], ""] + [gr.update(visible=False, value=None) for _ in range(MAX_ANS_COMP)] + [""]
|
72 |
|
73 |
with gr.Blocks() as app:
|
74 |
+
gr.Markdown("# QuizWhiz: Your Quiz Master")
|
75 |
+
gr.Markdown("Welcome to the ultimate trivia challenge! Whether you're a curious kid or a lifelong learner, this app is designed to test your knowledge and keep your mind sharp.")
|
76 |
+
gr.Markdown("Press Generate to generate quiz questions. Press Submit once you are done answering. Press Clear to clear the questions.")
|
77 |
with gr.Row():
|
78 |
grade = gr.Dropdown(choices=[6], label="Grade", value=6)
|
79 |
num_questions = gr.Dropdown(choices=[5, 10, 15, 20], label="Number of Questions", value=5)
|