J.A.V.R.I.S is a Python-based voice assistant that responds to spoken commands to perform tasks like opening websites, telling the time, launching applications, playing music, and chatting using OpenAIβs GPT-3.
- ποΈ Voice input using Google SpeechRecognition
- π¬ GPT-3 powered conversational replies
- π Voice output via macOS TTS (
say
command) - π Opens sites like YouTube, Google, Wikipedia
- π Tells current time and automates basic tasks
- Python
- OpenAI API (
text-davinci-003
) - SpeechRecognition
- OS-level automation (macOS)
- Clone the repo
- Install dependencies:
pip install openai SpeechRecognition
- Add your OpenAI API key in
config.py
- Run:
python main.py
Currently supports macOS only (due to say
and app paths).