def stop(self, m=None): """The user has asked to exit the application. Example: Stop. """ return MachineResponse(self.helper.stop())
def recite(self, m=None): """Speak out the latest image caption. Example: Tell what you saw. """ return MachineResponse(self.helper.recite())
def help(self, m=None): """The user has asked for help using the application. Example: Help. """ return MachineResponse(self.helper.help())
def caption(self, m=None): """Read an incoming image and process a caption asynchronously. Example: Look around you. """ return MachineResponse(self.helper.caption())
def where(self, m=None): """Check the robots map find the closest place. Example: Where place are you. """ return MachineResponse(self.helper.where())
def learn(self, m=None): """Learn the robots position as the given name. Example: This location is my "Office". """ return MachineResponse(self.helper.learn(m.input))
def navigate(self, m=None): """The user asked to navigate to a location. Example: Navigate to the "Office". """ return MachineResponse(self.helper.navigate(m.input))
def welcome(self, m=None): """Provide useful info when the app starts. """ return MachineResponse(self.helper.welcome())