Navya-Sree commited on
Commit
10844ac
·
verified ·
1 Parent(s): 377d9ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -21
README.md CHANGED
@@ -12,29 +12,25 @@ short_description: Streamlit template space
12
  ---
13
  # AI-Powered Reminder System
14
 
15
- Advanced reminder application with:
16
- - Voice note recording
17
- - AI-powered insights
18
- - Calendar view
19
- - Priority management
20
- - Speech-to-text & text-to-speech
21
 
22
- ## Features
23
- 1. **Voice Reminders**: Record voice notes for tasks
24
- 2. **AI Analysis**: Get intelligent suggestions for your reminders
25
- 3. **Calendar Integration**: View reminders by date
26
- 4. **Priority Management**: Set Low/Medium/High priority
27
- 5. **Speech Conversion**: Voice-to-text and text-to-voice
 
 
28
 
29
- ## Installation
30
- ```bash
31
- git clone https://huggingface.co/spaces/<your-username>/reminder-app
32
- cd reminder-app
33
- pip install -r requirements.txt
34
 
35
- # Welcome to Streamlit!
36
 
37
- Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
 
38
 
39
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
40
- forums](https://discuss.streamlit.io).
 
 
12
  ---
13
  # AI-Powered Reminder System
14
 
15
+ To run this app on Hugging Face Spaces:
 
 
 
 
 
16
 
17
+ 1. Create a new Space with **Docker** as the SDK
18
+ 2. Add these files to your repository:
19
+ - `run_app.py` (main entry point)
20
+ - `app.py` (main application)
21
+ - `requirements.txt`
22
+ 3. Configure the Space with these settings:
23
+ - Hardware: CPU Basic
24
+ - Dockerfile: Use the following:
25
 
26
+ ```Dockerfile
27
+ FROM python:3.9-slim
 
 
 
28
 
29
+ WORKDIR /app
30
 
31
+ COPY requirements.txt .
32
+ RUN pip install --no-cache-dir -r requirements.txt
33
 
34
+ COPY . .
35
+
36
+ CMD ["python", "run_app.py"]