A simple commandline tool to help create technical documentation from audio / text. This is meant to help save time.
OpenAI token, so a paid OpenAI account
pip -m venv venv
source venv/bin/activate
make install
You can create transcriptions from audio by copying the audio file into the script's directory and running
make transcribe
This will create a text.txt
file containing the transcription. Be sure to double check the transcription before
creating the documentation.
Note: The first time you run this command will take a short while. The whisper model is downloaded first.
Running
make create_doc
will read the text.txt
file in the script's directory and create a new file with the created documentation.
The file name is fixed to doc.txt
.