Example #1
0
    def __init__(self):
        RestConfiguration.__init__(self, "google")
        self._launch_text = GoogleConfiguration.DEFAULT_LAUNCH_TEXT
        self._launch_srai = None

        self._quit_text = GoogleConfiguration.DEFAULT_QUIT_TEXT
        self._quit_srai = None

        self._help_text = GoogleConfiguration.DEFAULT_HELP_TEXT
        self._help_srai = None

        self._error_text = GoogleConfiguration.DEFAULT_ERROR_TEXT
        self._error_srai = None
Example #2
0
    def __init__(self):
        RestConfiguration.__init__(self, "alexa")
        self._launch_text = AlexaConfiguration.DEFAULT_LAUNCH_TEXT
        self._launch_srai = None

        self._stop_text = AlexaConfiguration.DEFAULT_STOP_TEXT
        self._stop_srai = None

        self._cancel_text = AlexaConfiguration.DEFAULT_CANCEL_TEXT
        self._cancel_srai = None

        self._help_text = AlexaConfiguration.DEFAULT_HELP_TEXT
        self._help_srai = None

        self._error_text = AlexaConfiguration.DEFAULT_ERROR_TEXT
        self._error_srai = None

        self._leave_intents = AlexaConfiguration.DEFAULT_LEAVE_INTENT

        self._intent_map_file = None
Example #3
0
 def __init__(self):
     RestConfiguration.__init__(self, "kik")
     self._bot_name = "program-y"
     self._webhook = "https://localhost:5000"
     self._unknown_command = "Unknown command"
     self._unknown_command_srai = None
Example #4
0
 def __init__(self, name):
     self._workers = 4
     RestConfiguration.__init__(self, name)
Example #5
0
 def __init__(self):
     RestConfiguration.__init__(self, "line")
     self._unknown_command = "Unknown command"
     self._unknown_command_srai = None
Example #6
0
 def __init__(self):
     RestConfiguration.__init__(self, "facebook")
Example #7
0
 def __init__(self):
     RestConfiguration.__init__(self, "viber")
     self._name = None
     self._avatar = None
     self._webhook = None
Example #8
0
 def __init__(self):
     RestConfiguration.__init__(self, "kik")
     self._bot_name = "program-y"
     self._webhook = "https://localhost:5000"
     self._unknown_command = "Unknown command"
     self._unknown_command_srai = None
Example #9
0
 def __init__(self, name):
     self._workers = 4
     RestConfiguration.__init__(self, name)
Example #10
0
 def __init__(self):
     RestConfiguration.__init__(self, "facebook")
Example #11
0
 def __init__(self):
     RestConfiguration.__init__(self, "webchat")
     self._cookie_id = "ProgramYSession"
     self._cookie_expires = 90
Example #12
0
 def __init__(self):
     RestConfiguration.__init__(self, "microsoft")
     self._new_user_text = MicrosoftConfiguration.NEW_USER_TEXT
     self._new_user_srai = None
Example #13
0
 def __init__(self):
     RestConfiguration.__init__(self, "webchat")
     self._cookie_id = "ProgramYSession"
     self._cookie_expires = 90
Example #14
0
 def __init__(self):
     RestConfiguration.__init__(self, "line")
     self._unknown_command = "Unknown command"
     self._unknown_command_srai = None
Example #15
0
 def __init__(self):
     RestConfiguration.__init__(self, "twilio")
Example #16
0
 def __init__(self):
     RestConfiguration.__init__(self, "twilio")
Example #17
0
 def __init__(self):
     RestConfiguration.__init__(self, "alexa")
     self._ask_debug_level = logging.ERROR