Exemple #1
0
 def luigi_bye(ctx: rs.ContextWrapper):
     interloc.handle_single_interlocutor_input(ctx, "bye")
Exemple #2
0
 def roboy_input(ctx: ContextWrapper):
     handle_single_interlocutor_input(ctx,
                                      ctx[recognized_speech.id()].text)
Exemple #3
0
 def luigi_hi(ctx: rs.ContextWrapper):
     ravestate_ontology.initialized.wait()
     interloc.handle_single_interlocutor_input(ctx, "hi")
Exemple #4
0
    def console_input(ctx: ContextWrapper):

        while not ctx.shutting_down():
            input_value = input("> ")
            handle_single_interlocutor_input(ctx, input_value)