Skip to content

Commit fc7bb70

Browse files
committed
Update README with missing things
1 parent ad0b758 commit fc7bb70

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

examples/apps/msg-use/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pip install -U browser-use
2424

2525
Export your Gemini API key, get it from: [Google AI Studio](https://makersuite.google.com/app/apikey)
2626
```
27-
export GEMINI_API_KEY='your-gemini-api-key-here'
27+
export GOOGLE_API_KEY='your-gemini-api-key-here'
2828
```
2929

3030
Clone the repo and cd into the app folder
@@ -37,14 +37,14 @@ cd browser-use/examples/apps/msg-use
3737

3838
First-time setup requires QR code scanning:
3939
```bash
40-
python whatsapp_login.py
40+
python login.py
4141
```
4242
- Scan QR code when browser opens
4343
- Session will be saved for future use
4444

4545
## Normal Usage
4646

47-
1. **Edit your schedule** in `schedule.txt`:
47+
1. **Edit your schedule** in `messages.txt`:
4848
```
4949
- Send "Hi" to Magnus on the 09.09 at 18:15
5050
- Tell hinge date (Camila) at 20:00 that I miss her
@@ -53,19 +53,19 @@ python whatsapp_login.py
5353

5454
2. **Test mode** - See what will be sent:
5555
```bash
56-
python whatsapp_scheduler.py --test
56+
python scheduler.py --test
5757
```
5858

5959
3. **Run scheduler**:
6060
```bash
61-
python whatsapp_scheduler.py
61+
python scheduler.py
6262
```
6363

6464
## Programmatic Usage
6565

6666
```python
6767
import asyncio
68-
from whatsapp_scheduler import schedule_messages
68+
from scheduler import schedule_messages
6969

7070
async def main():
7171
messages = [
@@ -99,9 +99,9 @@ Example scheduling output:
9999

100100
## Files
101101

102-
- `whatsapp_scheduler.py` - Main scheduler script
103-
- `whatsapp_login.py` - One-time login setup
104-
- `schedule.txt` - Your message schedule in natural language
102+
- `scheduler.py` - Main scheduler script
103+
- `login.py` - One-time login setup
104+
- `messages.txt` - Your message schedule in natural language
105105

106106
## License
107107

0 commit comments

Comments
 (0)