https://github.com/tomhea/whatsapp-summary
use LLM on your whatsapp chats to produce summaries of your life
https://github.com/tomhea/whatsapp-summary
Last synced: 10 months ago
JSON representation
use LLM on your whatsapp chats to produce summaries of your life
- Host: GitHub
- URL: https://github.com/tomhea/whatsapp-summary
- Owner: tomhea
- Created: 2023-05-13T11:08:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-13T14:22:46.000Z (about 3 years ago)
- Last Synced: 2025-07-30T07:58:33.704Z (11 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Whatsapp Time Period Summery
This project tries to use LLM on your whatsapp chats and to produce summaries of your life in a specific time-frame. Imagine that you could answer "What did I do in June 2021", or on "What did I do on my 20th-birthday week".
The function that we are after is:
```python
def get_whatsapp_summary(chat_path: Path, from_date: datetime, to_date: datetime) -> str:
...
```