This is a voice assistant that utilizes the powerful GPT-3.5 language model. When you want to use it, just say 'Hola gpt' and ask it whatever you want.
git clone https://github.com/pablodorrio/gpt-voice-assistant
For Linux and macOS users:
echo 'export OPENAI_API_KEY="YOUR_OPENAI_API_KEY"' >> ~/.bash_profile
echo 'python3 THE_ROUTE_OF_THE_MAIN_FILE' >> ~/.bash_profile
For Windows users:
- Press Windows + R, type taskschd.msc and press Enter.
- Select create task.
- In the "General" section, in the "Name" box, type "gpt-voice-assistant" and select the option "Run only when the user is logged in".
- In the "Actions" section, press "New" and in the "Program or script" box type "python THE_ROUTE_OF_THE_MAIN_FILE" and press "Accept".
- In the "Conditions" section uncheck all options and press "Accept".
For Linux and macOS users:
export OPENAI_API_KEY="YOUR_OPENAI_API_KEY"
For Windows users:
$Env:OPENAI_API_KEY="YOUR_OPENAI_API_KEY"
The assistant is launched each time you Log in so it will already be available for use.
For Linux and macOS users:
python3 src/main.py
For Windows users:
python .\src\main.py
Say "Hola gpt" to start the voice recognition and ask the questions you want.
Say "Adiós gpt" when you want to stop using the assistant.
Say "Apagar gpt" to permanently turn off the assistant (it will no longer start even if you say "Hola gpt").
Currently, the assistant is only guaranteed to work correctly in Spanish. However, support for many more languages is coming soon (see the issues for more information).
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.