Beispiel #1
0
 def segue_connection(self):
     return RandomTuple(self.phrase_reader(self.connection_path))
Beispiel #2
0
 def negative_sentiment_phrases(self):
     return RandomTuple(
         self.phrase_reader(self.negative_sentiment_phrases_path))
Beispiel #3
0
 def segues(self):
     return RandomTuple(("talking about ","since you mentioned ","on the topic of "))
Beispiel #4
0
 def unclear(self):
     return RandomTuple(("Oh no, I didn't get what you said. ", "I didn't understand you correctly. ",
                         "Sorry? What did you say? "))
Beispiel #5
0
 def consent(self):
     return RandomTuple(("yes", "I do", "sure", "of course", " go ahead"))
Beispiel #6
0
 def triggers(self):
     return RandomTuple(("talk", "fun", "conversation", "new", "chat"))
Beispiel #7
0
 def segue_jobs(self):
     return RandomTuple(self.phrase_reader(self.jobs_path))
Beispiel #8
0
 def greetings(self):
     return RandomTuple(("hello","hi","greetings", "howdy", "hey", "what's up", "greeting to everyone here",
                         "hi there people", "hello world","gruse gott","wazup wazup wazup","howdy humans",
                         "hey hey hey you there"))
Beispiel #9
0
 def segue_distraction(self):
     return RandomTuple(self.phrase_reader(self.distraction_path))
Beispiel #10
0
 def segue_flattery(self):
     return RandomTuple(self.phrase_reader(self.flattery_path))
Beispiel #11
0
 def segue_answer_avoiding(self):
     return RandomTuple(self.phrase_reader(self.answer_avoiding_path))
Beispiel #12
0
 def answering_start_phrases(self):
     return RandomTuple(self.phrase_reader(self.start_phrases_path))
Beispiel #13
0
 def answering_reenter_phrases(self):
     return RandomTuple(self.phrase_reader(self.reenter_phrases_path))
Beispiel #14
0
 def offer_famous_entities_phrases(self):
     return RandomTuple(
         self.phrase_reader(self.offer_famous_entities_phrases_path))
Beispiel #15
0
 def segue_pickingup(self):
     return RandomTuple(self.phrase_reader(self.pickingup_path))
Beispiel #16
0
 def offer_math_phrases(self):
     return RandomTuple(self.phrase_reader(self.offer_math_phrases_path))
Beispiel #17
0
 def profanity_check_wordlist(self):
     return RandomTuple(self.phrase_reader(self.profanity_check_path))
Beispiel #18
0
 def roboy_names(self):
     return RandomTuple(("roboi", "robot", "boy", "roboboy", "robot", "roboy"))
Beispiel #19
0
 def offer_filter_phrases(self):
     return RandomTuple(self.phrase_reader(self.filter_phrases_path))
Beispiel #20
0
 def denial(self):
     return RandomTuple(("no", "nope", "later", "other time", "not"))
Beispiel #21
0
 def facts_phrases(self):
     return RandomTuple(self.phrase_reader(self.facts_phrases_path))
Beispiel #22
0
 def farewells(self):
     return RandomTuple(("ciao", "goodbye", "cheerio", "bye", "see you", "farewell", "bye-bye"))
Beispiel #23
0
 def roboy_intent_phrases(self):
     return RandomTuple(self.phrase_reader(self.roboy_intent_phrases_path))
Beispiel #24
0
 def facts_intro(self):
     return RandomTuple(("did you know ", "did you know that ", "i read that ", "i heard that ",
                         "have you heard this: "))
Beispiel #25
0
 def jokes_phrases(self):
     return RandomTuple(self.phrase_reader(self.jokes_phrases_path))
Beispiel #26
0
 def dead_ros(self):
     return RandomTuple(("Oh no, where is my ROS connection? I need it. ",
                         "I was looking for my ROS master everywhere but I can find it. ",
                         "I think I have no ROS connection. ",
                         "Hello? Hello? Any ROS master out there? Hmm, I can't hear anybody. "))
Beispiel #27
0
 def parser_error_phrases(self):
     return RandomTuple(self.phrase_reader(self.parser_error_phrases_path))