-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandAlternates.py
More file actions
90 lines (82 loc) · 3.41 KB
/
Copy pathCommandAlternates.py
File metadata and controls
90 lines (82 loc) · 3.41 KB
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
CommandAlternates = {
# CAN YOU HEAR ME
"can your hear it": "can you hear me",
"are you listening": "can you hear me",
"are you working": "can you hear me",
"listening test": "can you hear me",
# WHAT TIME IS IT
"we're time is it": "what time is it",
"what time is it right now": "what time is it",
"what the time": "what time is it",
"what the time right now": "what time is it",
"what's the time": "what time is it",
"what's the time right now": "what time is it",
"what's the current time": "what time is it",
"give me the time": "what time is it",
# GIVE ME THE HEADLINES
"get the news": "give me the headlines",
"what's in the news": "give me the headlines",
"what's in the news today": "give me the headlines",
"which in the news": "give me the headlines",
"what are the headlines": "give me the headlines",
"what are the headlines today": "give me the headlines",
"one are the headlines today": "give me the headlines",
"one of the headlines today": "give me the headlines",
"headlines": "give me the headlines",
# GET CRYPTO PRICES
"the crypto prices": "get crypto prices",
"crypto prices": "get crypto prices",
"crypto": "get crypto prices",
"crypto value": "get crypto prices",
"crypto values": "get crypto prices",
"crypto report": "get crypto prices",
# SEND A TEST EMAIL
"do an email test": "send a test email",
"email test": "send a test email",
"send me an email": "send a test email",
"send an email": "send a test email",
# SHUT DOWN
"close program": "shut down",
"stop program": "shut down",
"turn off": "shut down",
# SEVEN DAY FORECAST
"weather forecast": "seven day forecast",
"what's the weather forecast": "seven day forecast",
"how's the weather for the next seven days": "seven day forecast",
"give me the weather report": "seven day forecast",
"what's the seven day forecast": "seven day forecast",
# SINGLE DAY FORECAST
"single day forecasts": "single day forecast",
"weather forecast today": "single day forecast",
"weather forecasts today": "single day forecast",
"what's the weather": "single day forecast",
"what's the weather today": "single day forecast",
"what's today's weather": "single day forecast",
"how's the weather today": "single day forecast",
"give me the weather report for today": "single day forecast",
"what's the weather": "single day forecast",
}
PartialAlternates = {
# SET AN ALARM FOR
"set a timer for": "set an alarm for",
"set an alarm for": "set an alarm for",
"set alarm for": "set an alarm for",
"set an alone for": "set an alarm for",
"set alone for": "set an alarm for",
"send an alarm for": "set an alarm for",
"send alarm for": "set an alarm for",
"set an no i'm for": "set an alarm for",
"set no i'm for": "set an alarm for",
"said an alarm for": "set an alarm for",
"said no alarm for": "set an alarm for",
"said no i'm for": "set an alarm for",
"said no arm for": "set an alarm for",
"said alarm for": "set an alarm for",
"set miller for": "set an alarm for",
"said in the line for": "set an alarm for",
"said no i am for": "set an alarm for",
"an alarm for": "set an alarm for",
"alarm for": "set an alarm for",
"sudden alarm for": "set an alarm for",
"said malone for ": "set an alarm for"
}