You are browsing as a guest. Sign up (or log in) to start making projects!

1h 54m 5s logged

Initializing the project

  • Created a virtual environment .venv/ so that all necessary python modules and packages are cleanly installed together.
  • Created a requirements.txt, where I put all the python modules I import in the project so that people can reuse it.
  • Created a piper_voices/ directory and downloaded a medium voice via python -m piper.download_voices en_US-lessac-medium
  • Created 4 different files:
Tiny_Jarvis/
├── ai.py   # the AI chatbot
├── main.py   # the main script
├── OLED.py    # The visuals!
└──  speaker.py    # the audio
  • Wrote the basic code for each of those files. For the moment, I concentrate on making importable functions that function indepedently, and will link them together in main.py later on.
  • Created a README.md. It’s empty for now, will fill it in later.
1
37

Comments 0

No comments yet. Be the first!