Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,10 +4,50 @@ emoji: π
|
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: red
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 6.6.0
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: red
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: "6.6.0"
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
+
short_description: AI academic tools with SQLite database & user authentication
|
| 12 |
+
tags:
|
| 13 |
+
- education
|
| 14 |
+
- students
|
| 15 |
+
- essay
|
| 16 |
+
- pdf
|
| 17 |
+
- quiz
|
| 18 |
+
- translation
|
| 19 |
+
- urdu
|
| 20 |
+
- authentication
|
| 21 |
+
- database
|
| 22 |
+
- sqlite
|
| 23 |
---
|
| 24 |
|
| 25 |
+
# π Student AI Suite
|
| 26 |
+
|
| 27 |
+
**AI-powered academic platform with persistent user database**
|
| 28 |
+
|
| 29 |
+
A complete student productivity suite featuring essay generation, PDF summarization, smart quizzes, and Urdu translation β all with secure user accounts and persistent data storage.
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## ποΈ Database Features
|
| 34 |
+
|
| 35 |
+
| Feature | Technology | Description |
|
| 36 |
+
|---------|-----------|-------------|
|
| 37 |
+
| **SQLite Database** | `sqlite3` | Persistent local storage |
|
| 38 |
+
| **User Accounts** | SHA-256 + Salt | Secure password hashing |
|
| 39 |
+
| **Sessions** | Token-based | 24-hour secure sessions |
|
| 40 |
+
| **Activity Logging** | Analytics-ready | Track usage (optional) |
|
| 41 |
+
| **Preferences** | Per-user | Default settings storage |
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
## π Database Schema
|
| 46 |
+
|
| 47 |
+
### Tables
|
| 48 |
+
|
| 49 |
+
```sql
|
| 50 |
+
users # User accounts & profiles
|
| 51 |
+
sessions # Active login sessions
|
| 52 |
+
activity_logs # Usage analytics (optional)
|
| 53 |
+
user_preferences # Personal default settings
|