Upload 3 files
Browse files- README.md +25 -6
- app.py +1 -0
- requirements.txt +2 -0
README.md
CHANGED
|
@@ -1,12 +1,31 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Think For Me EDU
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: "3.50.2"
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# π§ Think For Me EDU
|
| 13 |
+
|
| 14 |
+
AI-powered math tutor and classroom toolkit for teachers and students.
|
| 15 |
+
|
| 16 |
+
## Features
|
| 17 |
+
|
| 18 |
+
- π¨βπ« Teacher dashboard with student tracking
|
| 19 |
+
- π§βπ Student XP & progress saving
|
| 20 |
+
- π§ͺ Assignment generator powered by AI
|
| 21 |
+
- π Real-time data for classrooms
|
| 22 |
+
- βοΈ School-specific settings
|
| 23 |
+
|
| 24 |
+
## Getting Started
|
| 25 |
+
|
| 26 |
+
1. Upload this app to Hugging Face Spaces
|
| 27 |
+
2. Add your OpenAI API key in Settings > Secrets:
|
| 28 |
+
```
|
| 29 |
+
OPENAI_API_KEY = your_openai_key_here
|
| 30 |
+
```
|
| 31 |
+
3. Set SDK to Gradio, Python 3.10
|
app.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# Your app.py will go here
|
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
openai==0.28
|
| 2 |
+
gradio
|