Yogya12 commited on
Commit
4cd67a4
Β·
1 Parent(s): e401ac2
Files changed (1) hide show
  1. README.md +22 -20
README.md CHANGED
@@ -1,4 +1,3 @@
1
- # πŸ“˜ EduMate AI β€” Your Academic Companion
2
  ---
3
  title: EduMate AI
4
  emoji: πŸŽ“
@@ -9,43 +8,46 @@ app_file: app.py
9
  pinned: false
10
  ---
11
 
 
12
 
13
  EduMate AI is an all-in-one academic assistant built with Gradio and powerful language models (via Groq LLaMA 3). It supports:
14
 
15
- - πŸ“š AI Chatbot for homework help
16
- - πŸ“ Smart Note Generator
17
- - 🌐 Real-Time Translator + Voice (Edge TTS)
18
- - 🎀 Text-to-Speech with multiple characters
19
- - πŸ” Login, Signup, OTP, and Password Reset
20
- - πŸ’¬ Chat History with Delete option
21
- - πŸ“„ PDF Export for Notes
22
 
23
  ---
24
 
25
  ## πŸš€ Features
26
 
27
- - ✍️ **Chatbot** β€” Ask academic questions & get relevant answers
28
- - πŸ“„ **Notes Generator** β€” Create neat bullet-point academic notes
29
- - πŸ—£οΈ **Translate & Speak** β€” Translate text + hear it in different voices
30
- - 🧠 **TTS Characters** β€” Multiple speaking voices across languages
31
- - πŸ”’ **Auth System** β€” Email OTP, signup/login, and forgot password
32
- - 🧾 **Chat History** β€” Saves and replays chats per user
33
- - πŸ“€ **Export PDF** β€” Export notes directly as a PDF
34
 
35
  ---
36
 
37
  ## πŸ”§ Tech Stack
38
 
39
- - `Gradio` for UI and backend routing
40
- - `Groq` + `transformers` for LLM chat/note generation
41
- - `edge-tts` + `deep-translator` for voice + translation
42
- - `SQLite` + `bcrypt` for user auth
43
- - `reportlab` for PDF export
44
 
45
  ---
46
 
47
  ## πŸ“¦ Setup (Locally)
48
 
49
  ```bash
 
 
50
  pip install -r requirements.txt
51
  python app.py
 
 
1
  ---
2
  title: EduMate AI
3
  emoji: πŸŽ“
 
8
  pinned: false
9
  ---
10
 
11
+ # πŸ“˜ EduMate AI β€” Your Academic Companion
12
 
13
  EduMate AI is an all-in-one academic assistant built with Gradio and powerful language models (via Groq LLaMA 3). It supports:
14
 
15
+ - πŸ“š AI Chatbot for homework help
16
+ - πŸ“ Smart Note Generator
17
+ - 🌐 Real-Time Translator + Voice (Edge TTS)
18
+ - 🎀 Text-to-Speech with multiple characters
19
+ - πŸ” Login, Signup, OTP, and Password Reset
20
+ - πŸ’¬ Chat History with Delete option
21
+ - πŸ“„ PDF Export for Notes
22
 
23
  ---
24
 
25
  ## πŸš€ Features
26
 
27
+ - ✍️ **Chatbot** β€” Ask academic questions & get relevant answers
28
+ - πŸ“„ **Notes Generator** β€” Create neat bullet-point academic notes
29
+ - πŸ—£οΈ **Translate & Speak** β€” Translate text + hear it in different voices
30
+ - 🧠 **TTS Characters** β€” Multiple speaking voices across languages
31
+ - πŸ”’ **Auth System** β€” Email OTP, signup/login, and forgot password
32
+ - 🧾 **Chat History** β€” Saves and replays chats per user
33
+ - πŸ“€ **Export PDF** β€” Export notes directly as a PDF
34
 
35
  ---
36
 
37
  ## πŸ”§ Tech Stack
38
 
39
+ - `Gradio` for UI and backend routing
40
+ - `Groq` + `transformers` for LLM chat/note generation
41
+ - `edge-tts` + `deep-translator` for voice + translation
42
+ - `SQLite` + `bcrypt` for user auth
43
+ - `reportlab` for PDF export
44
 
45
  ---
46
 
47
  ## πŸ“¦ Setup (Locally)
48
 
49
  ```bash
50
+ git clone https://huggingface.co/spaces/your-username/edumate-ai
51
+ cd edumate-ai
52
  pip install -r requirements.txt
53
  python app.py