meeting minutes
1.0.0
This project is a powerful tool that harnesses the of OpenAI's Whisper ASR and GPT-4 models to automate the process of generating meeting minutes from audio recordings, as well as text summary and key point extraction.
This Python-based application transcribes audio, provides summaries, extracts key points and action items, and performs sentiment analysis.
You should have a basic understanding of Python and an OpenAI API key. You can get an API key here. This project was built using Python 3.11.5.
Create a virtual environment and install the requirements:
python -m venv venv
source venv/bin/activate
pip install openai
pip install python-docx
pip install python-dotenv
Add your OpenAI API key to the .env
file.
transcription.py
sentiment_analysis.py
sentiment_analysis.py
meeting_minutes.py
save_as_docx.py
MIT