Replies: 1 comment
-
Fun fact, if you feed the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First, thank you, @savbell, for maintaining such a great app as a perfect replacement for windows win+h key but with powerful OpenAI's models.
I found a way to make a binary out of it using pyinstaller. Here is the step:
pip install pyinstaller webrtcvad
to install missing modules before packaging with pyinstallerpyinstaller --name whisper-writer src/main.py
, you should get something like this indist/whisper-writer
.src/config_schema.yaml
file into thedist/whisper-writer/_internal
folderdist/whisper-writer/src
as it is needed for whisper writer to saveconfig.yaml
fileconfig.yaml
file intodist/whisper-writer/src/config.yaml
env
file pops up if you set your own OpenAI key.config.yaml
file is already generated. Next time the app will run with theconfig.yaml
.Beta Was this translation helpful? Give feedback.
All reactions