ArijitMishra commited on
Commit
b0e108e
Β·
verified Β·
1 Parent(s): 49aeb61

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +27 -9
  2. requirements.txt +5 -0
README.md CHANGED
@@ -1,15 +1,33 @@
1
  ---
2
- title: VoiceJournalReflection
3
- emoji: πŸ“Š
4
- colorFrom: purple
5
- colorTo: purple
6
  sdk: gradio
7
- sdk_version: 6.18.0
8
- python_version: '3.12'
9
  app_file: app.py
10
- pinned: false
11
  license: mit
12
- short_description: An app to record your journal and get a small reflectlection
13
  ---
14
 
15
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Voice Journal
3
+ emoji: πŸŽ™οΈ
4
+ colorFrom: green
5
+ colorTo: gray
6
  sdk: gradio
7
+ sdk_version: 4.44.0
 
8
  app_file: app.py
9
+ pinned: true
10
  license: mit
 
11
  ---
12
 
13
+ # πŸŽ™οΈ Voice Journal
14
+
15
+ **Speak your day. Get it reflected back.**
16
+
17
+ A voice journaling app built for the [Build Small Hackathon](https://huggingface.co/build-small-hackathon).
18
+
19
+ Record a voice note about anything β€” how your day went, what's on your mind, something that happened.
20
+ A small AI model listens and gently reflects it back to you with a mood summary, a pattern it noticed, and a question to sit with.
21
+
22
+ ## How it works
23
+
24
+ 1. Click the microphone and record your journal entry
25
+ 2. Hit **Reflect β†’**
26
+ 3. Read your transcription and the reflection
27
+
28
+ ## Stack
29
+
30
+ - **Whisper base** (~140M params) β€” transcription
31
+ - **Qwen2.5-7B-Instruct** β€” reflection
32
+ - **Gradio** β€” UI
33
+ - No cloud APIs β€” everything runs on the Space hardware
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ gradio>=4.0.0
2
+ openai-whisper
3
+ transformers>=4.40.0
4
+ accelerate
5
+ torch