Host Your Own Journaling App with OpenAI RAG Summarizer
- A Python-based web application for logging daily life events, thoughts, and happenings.
- Stores log entries in a local SQLite database.
- Generates summaries and artistic images based on the logged entries using OpenAI's GPT-3.5-turbo and DALL-E models.
- Provides options to view summaries for today, this month, or this year, along with a generated image representation.
- Allows viewing all log entries ever created.
A Python-based web application for logging and summarizing daily life events, thoughts, and happenings.
- Log daily life events, thoughts, and happenings through a user-friendly interface.
- Store log entries in a local SQLite database.
- Generate summaries of logged entries for today, this month, or this year using OpenAI's GPT-3.5-turbo model.
- Create artistic image representations of the summaries using OpenAI's DALL-E model.
- View all log entries ever created.
- Python 3.x
- Flask
- OpenAI Python library
- SQLite3
-
Clone the repository:
git clone https://github.com/raghavan/Life-Logs.git
-
Set up your OpenAI API key:
- Sign up for an OpenAI account and obtain an API key.
- Replace
"YOUR_OPENAI_API_KEY"
inapp.py
with your actual OpenAI API key.
-
Run the application:
python app.py
-
Access the application in your web browser at
http://localhost:5000
. -
Use the provided interface to log your daily life events, thoughts, and happenings.
-
Select a period (today, this month, or this year) and click "Get Summary" to generate a summary and an artistic image representation of the logged entries.
-
View all your log entries in the "All Entries" section.
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License.
Feel free to customize the README file based on your specific project details, such as adding more sections, including usage examples, or providing additional information about the application.