-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcues.py
90 lines (77 loc) · 2.15 KB
/
cues.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
wake_word_cues = [
"Ready when you are!",
"Your little friend's waiting!",
"I'm all ears!",
"I'm online and ready to roll!",
"Guess who's awake? It's me!",
"I'm up and active!",
"Powered on and pumped!",
"Just booted up and raring to go!",
"Tuned in and ready!",
"Ears on standby!",
"I'm alive and kicking!",
"Ready for some fun!",
"Eyes open, circuits buzzing!",
"Ready to go!",
"Back in action and feeling good!",
"I'm here and alert!",
"All set and waiting!",
"Let's have some fun!",
"I'm on and ready!",
"Eager and waiting!"
]
wake_word_dict = {cue: idx for idx, cue in enumerate(wake_word_cues, 1)}
audio_received_cues = [
"Okey-dokey...",
"Heard that!",
"Gotcha!",
"Hmm, let's see...",
]
audio_received_dict = {cue: idx for idx, cue in enumerate(audio_received_cues, 1)}
awaiting_response_cues = [
"Ummm...",
"Hmm...",
"Er...",
"Ah...",
"Oh...",
"Mmm...",
"Huh...",
"Eh...",
"Well...",
"Aha...",
"Let's see...",
"Hang on...",
"Wait...",
"Thinking...",
"Pondering...",
"Uh-huh...",
"Erm..."
]
awaiting_response_dict = {cue: idx for idx, cue in enumerate(awaiting_response_cues, 1)}
chat_mode_activated_cues = [
"Sure thing! Let's chat away.",
"Chat mode is on! What's on your mind?",
"Alright! I'm all ears. Let's chat.",
"Yay! I love our chat sessions. Go ahead.",
"Chat time! Tell me everything.",
"Okay! I'm ready for our chat adventure.",
"Sounds fun! Let's dive into our chat.",
"You got it! Let's chat up a storm.",
"Awesome choice! I'm excited to chat with you.",
"You said the magic words! Let's chat.",
"You've got my full attention. Let's chat!"
]
chat_mode_activated_dict = {cue: idx for idx, cue in enumerate(chat_mode_activated_cues, 1)}
stop_chat_cues = [
"Chat's on break!",
"Taking a pause!",
"Chat nap time!",
"See you soon!",
"Chat time-out!",
"Break time, buddy!",
"Chat's resting!",
"Later, friend!",
"Tiny chat break!",
"Be back soon!"
]
stop_chat_dict = {cue: idx for idx, cue in enumerate(stop_chat_cues, 1)}