Spaces:
Sleeping
Sleeping
Add Hugging Face Spaces configuration
Browse files- Add HF Spaces YAML front matter to README.md (sdk: gradio, sdk_version: 5.32.1)
- Remove share=False from app.launch() so HF Spaces controls server binding
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# AI Course Assessment Generator
|
| 2 |
|
| 3 |
An AI-powered tool that creates learning objectives and multiple-choice quiz questions from course materials. Supports both **automatic generation** from uploaded content and **manual entry** of learning objectives, producing fully enriched outputs with correct and incorrect answer suggestions ready for quiz generation.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AI Course Assessment Generator
|
| 3 |
+
emoji: 📚
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 5.32.1
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
# AI Course Assessment Generator
|
| 14 |
|
| 15 |
An AI-powered tool that creates learning objectives and multiple-choice quiz questions from course materials. Supports both **automatic generation** from uploaded content and **manual entry** of learning objectives, producing fully enriched outputs with correct and incorrect answer suggestions ready for quiz generation.
|
app.py
CHANGED
|
@@ -13,4 +13,4 @@ if not os.getenv("OPENAI_API_KEY"):
|
|
| 13 |
if __name__ == "__main__":
|
| 14 |
# Create and launch the Gradio UI
|
| 15 |
app = create_ui()
|
| 16 |
-
app.launch(
|
|
|
|
| 13 |
if __name__ == "__main__":
|
| 14 |
# Create and launch the Gradio UI
|
| 15 |
app = create_ui()
|
| 16 |
+
app.launch()
|