Neurone.py 236 B

12345678910
  1. class Neurone:
  2. def __init__(self):
  3. # Here we load the stt and tts from settings
  4. self.stt = "snowboy"
  5. self.tts = ""
  6. def say(self, message):
  7. # here we use the tts to make jarvis talk
  8. pass