Upload 2 files
Browse files- README.md +27 -9
- requirements.txt +5 -0
README.md
CHANGED
|
@@ -1,15 +1,33 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
-
python_version: '3.12'
|
| 9 |
app_file: app.py
|
| 10 |
-
pinned:
|
| 11 |
license: mit
|
| 12 |
-
short_description: An app to record your journal and get a small reflectlection
|
| 13 |
---
|
| 14 |
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|