developing in python I'd like to play an audio clip after the text speech here, I'd like a straightforward hello world type example of this.
def handle(self, handler_input): # type: (HandlerInput) -> Response speak_output = utils.todays_saint_name() return ( handler_input.response_builder .speak(speak_output) #I'd like to play an audio file here .response )