Transcript Summarizer is a CLI tool that quickly turns call transcripts into concise meeting minutes, highlighting key points and actions. Ideal for saving time and capturing essential details from any text-based transcript.
To run this project, you need to have Python version 3.6 or above installed on your system.
- Download Python
- Download Visual Studio Code
- OpenAI Account for API key
- Transcript from teams meeting
-
Use pip to install requirements.txt
pip install -r requirements.txt
-
Create a new file
.env
. Copy all data from the env example and paste it in.env
. -
Add your API key to
.env
OPENAI_KEY=sk-your-openai-api-key
-
Paste the transcript file for which you want meeting minutes in input folder. Set the name as
your-file-name.txt
. -
In main function, replace the variable
filename
with the name of your transcript file (set in input folder). -
Run the program by pressing the run button in VS Code. Alternatively, execute the following command in the root directory:
python -u "./main.py"