Spaces:
Sleeping
Sleeping
Rename app title to Quiz Generator V3
Browse filesCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 📚
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Quiz Generator V3
|
| 3 |
emoji: 📚
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
ui/app.py
CHANGED
|
@@ -22,8 +22,8 @@ SAVE_OUTPUTS = True
|
|
| 22 |
def create_ui():
|
| 23 |
"""Create the Gradio UI."""
|
| 24 |
get_run_manager().save_outputs = SAVE_OUTPUTS
|
| 25 |
-
with gr.Blocks(title="
|
| 26 |
-
gr.Markdown("#
|
| 27 |
gr.Markdown("Upload course materials and generate learning objectives and quiz questions.")
|
| 28 |
|
| 29 |
with gr.Tab("Generate Learning Objectives"):
|
|
|
|
| 22 |
def create_ui():
|
| 23 |
"""Create the Gradio UI."""
|
| 24 |
get_run_manager().save_outputs = SAVE_OUTPUTS
|
| 25 |
+
with gr.Blocks(title="Quiz Generator V3") as app:
|
| 26 |
+
gr.Markdown("# Quiz Generator V3")
|
| 27 |
gr.Markdown("Upload course materials and generate learning objectives and quiz questions.")
|
| 28 |
|
| 29 |
with gr.Tab("Generate Learning Objectives"):
|