class Neurone:
    def __init__(self):
        # Here we load the stt and tts from settings
        self.stt = "snowboy"
        self.tts = ""

    def say(self, message):
        # here we use the tts to make jarvis talk
        pass