Spaces:
Sleeping
Sleeping
Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Smart Tutor AI
|
| 3 |
+
emoji: 🎓
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.44.0
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
short_description: An intelligent study assistant built with CrewAI and Gradio
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Smart Tutor AI 🎓
|
| 15 |
+
|
| 16 |
+
An intelligent study assistant built with **CrewAI** and **Gradio**.
|
| 17 |
+
|
| 18 |
+
## Features
|
| 19 |
+
- **Smart Summarization**: Get concise summaries from your documents.
|
| 20 |
+
- **Auto Quiz Generation**: Generate multiple-choice questions grounded in your text.
|
| 21 |
+
- **Intelligent Tutoring**: Get graded feedback with detailed explanations for incorrect answers.
|
| 22 |
+
|
| 23 |
+
## Setup for Hugging Face
|
| 24 |
+
1. Create a new Space on Hugging Face.
|
| 25 |
+
2. Select **Gradio** as the SDK.
|
| 26 |
+
3. Go to **Settings** -> **Variables and secrets**.
|
| 27 |
+
4. Add a new secret:
|
| 28 |
+
- Name: `OPENAI_API_KEY`
|
| 29 |
+
- Value: `your_openai_api_key_here`
|
| 30 |
+
5. Upload all files from this repository.
|
| 31 |
+
|
| 32 |
+
## Local Setup
|
| 33 |
+
1. Clone the repository.
|
| 34 |
+
2. Install dependencies: `pip install -r requirements.txt`.
|
| 35 |
+
3. Create a `.env` file and add your `OPENAI_API_KEY`.
|
| 36 |
+
4. Run the app: `python app.py`.
|