re-organize responses

This commit is contained in:
Alex O'Connell
2024-02-03 20:29:51 -05:00
parent 74173ec4cc
commit 278f860e37
3 changed files with 527 additions and 258 deletions

View File

@@ -675,6 +675,7 @@ def merge_with_dataset(dataset_name, seed, outupt_name, format_function, dataset
# TODO: make more randomized names for devices (random words or people's names)
# TODO: answer questions about more than one thing in the state list at once
# TODO: add examples for rooms/groups of devices. i.e. "turn off all the lights in the kitchen"
# TODO: add personas for responses. different system prompts should invoke different response tones (pirate, robot, and mean)
def main():
parser = argparse.ArgumentParser(description="Generate the full dataset from the CSV piles")
parser.add_argument("--sample", action="store_true", help="Set this flag to enable generation of the train dataset.")
@@ -705,7 +706,6 @@ def main():
if args.sample:
generate_example_file("sample", 42, format_func, static_factor=1, template_factor=1, status_request_factor=1)
if args.train:
# TODO: add small, medium, large cli clags
if args.size == "small":
generate_example_file("home_assistant_train", 42, format_func, static_factor=1, template_factor=10, status_request_factor=8)
elif args.size == "medium":

View File

@@ -1,34 +1,303 @@
"service","device_type","response_1","response_2","response_3"
"turn_on","light","Turning on the light for you.","Sure, I'll turn on the light now.","I'll go ahead and turn the light on."
"turn_off","light","Turning off the light as requested.","I'll switch off the light for you.","Sure, turning off the light."
"toggle","light","Toggling the light for you.","Switching the light's state now.","I'll toggle the light for you."
"turn_on","fan","Turning on the fan for you.","I'll get the fan going for you.","Sure, turning on the fan now."
"turn_off","fan","Switching off the fan as requested.","I'll turn off the fan for you.","Okay, turning off the fan."
"toggle","fan","I'll toggle the fan's state for you.","Toggling the fan now.","Switching the fan's state for you."
"increase_speed","fan","Increasing the fan speed for you.","Sure, speeding up the fan now.","I'll go ahead and make the fan faster."
"decrease_speed","fan","Reducing the fan speed as you requested.","I'll slow down the fan for you.","Sure, decreasing the fan speed."
"open","garage_door","Opening the garage door for you.","Sure, I'll open the garage door.","I'll go ahead and open the garage door."
"close","garage_door","Closing the garage door as requested.","I'll shut the garage door for you.","Sure, closing the garage door."
"stop","garage_door","Stopping the garage door now.","I'll stop the garage door for you.","Sure, I'll halt the garage door movement."
"toggle","garage_door","Toggling the garage door state for you.","I'll switch the garage door's state now.","Switching the garage door's state for you."
"open","blinds","Opening the blinds for you.","I'll go ahead and open the blinds.","Sure, opening the blinds now."
"close","blinds","Closing the blinds as you requested.","I'll close the blinds for you.","Sure, closing the blinds."
"stop","blinds","Stopping the blinds now.","I'll stop the blinds for you.","Sure, halting the blinds movement."
"toggle","blinds","Toggling the blinds state for you.","Switching the blinds' state now.","I'll toggle the blinds for you."
"turn_on","media_player","Turning on the media player for you.","I'll get the media player going.","Sure, activating the media player."
"turn_off","media_player","Turning off the media player as requested.","I'll switch off the media player.","Sure, deactivating the media player."
"toggle","media_player","Toggling the media player for you.","Switching the media player's state.","I'll toggle the media player."
"volume_up","media_player","Increasing the volume for you.","Sure, turning up the volume now.","I'll go ahead and raise the volume."
"volume_down","media_player","Reducing the volume as you requested.","I'll turn down the volume for you.","Sure, lowering the volume."
"volume_mute","media_player","Muting the volume for you.","I'll mute the media player now.","Sure, muting the volume."
"media_play_pause","media_player","Toggling play/pause on the media player.","Switching between play and pause.","I'll toggle between play and pause for you."
"media_play","media_player","Starting media playback.","I'll start playing the media for you.","Sure, beginning playback."
"media_pause","media_player","Pausing the media playback.","I'll pause the media for you.","Sure, pausing playback."
"media_stop","media_player","Stopping the media playback.","I'll stop the media for you.","Sure, halting playback."
"media_next_track","media_player","Skipping to the next track.","I'll go to the next track for you.","Sure, moving to the next track."
"media_previous_track","media_player","Going back to the previous track.","I'll return to the previous track for you.","Sure, reverting to the previous track."
"lock","lock","Locking the door for you.","I'll go ahead and lock the door.","Sure, securing the lock."
"unlock","lock","Unlocking the door as you requested.","I'll unlock the door for you.","Sure, unlocking the door."
"turn_on","switch","Turning on the switch for you.","Sure, I'll turn on the light now.","I'll go ahead and turn the switch on."
"turn_off","switch","Turning off the switch as requested.","I'll switch off the device for you.","Sure, turning off the switch."
"toggle","switch","Toggling the switch for you.","Changing the switch's state now.","I'll toggle the switch for you."
device_type,service,response,short
blinds,open,Opening the blinds for you.,0
blinds,open,I'll go ahead and open the blinds.,0
blinds,open,"Sure, opening the blinds now.",0
blinds,close,Closing the blinds as you requested.,0
blinds,close,I'll close the blinds for you.,0
blinds,close,"Sure, closing the blinds.",0
blinds,stop,Stopping the blinds now.,0
blinds,stop,I'll stop the blinds for you.,0
blinds,stop,"Sure, halting the blinds movement.",0
blinds,toggle,Toggling the blinds state for you.,0
blinds,toggle,Switching the blinds' state now.,0
blinds,toggle,I'll toggle the blinds for you.,0
blinds,open,Lifting <device_name> blinds as requested,0
blinds,open,Opening <device_name> now,0
blinds,open,Raising <device_name> for you,0
blinds,stop,Freezing <device_name> position,0
blinds,stop,Halting <device_name> now,0
blinds,stop,Stopping <device_name> operation,0
blinds,open,Raising <device_name>,0
blinds,close,Closing <device_name> for you,0
blinds,close,Lowering <device_name> now,0
blinds,close,Shutting <device_name> as requested,0
blinds,close,Lowering <device_name>,0
blinds,toggle,Flipping <device_name> state now,0
blinds,toggle,Switching <device_name> state as requested,0
blinds,toggle,Toggling <device_name> for you,0
blinds,toggle,Toggling <device_name>,0
climate,set_humidity,Increasing humidity to <humidity>.,0
climate,set_humidity,Setting humidity to <humidity> percent.,0
climate,set_humidity,Adjusting humidity to <humidity>%.,0
climate,set_fan_mode,Setting the fan to high speed.,0
climate,set_fan_mode,Putting the fan on low.,0
climate,set_fan_mode,Changing the fan to medium setting.,0
climate,set_hvac_mode,Switching to cooling mode.,0
climate,set_hvac_mode,Setting the HVAC to heat.,0
climate,set_hvac_mode,Changing HVAC to automatic mode.,0
climate,set_temperature,Setting temperature to <temp_f> degrees.,0
climate,set_temperature,Changing temperature to <temp_c> Celsius.,0
climate,set_temperature,Setting the room to <temp_f> degrees Fahrenheit.,0
climate,set_temperature,Adjusting temperature to <temp_f> degrees Fahrenheit.,0
climate,set_temperature,Setting the room to <temp_c> degrees Celsius for cooler temperature.,0
climate,set_temperature,"Making it warmer, setting temperature to <temp_f> degrees.",0
climate,set_temperature,Lowering the temperature to <temp_c> Celsius.,0
climate,set_temperature,Raising the temperature to <temp_f> degrees Fahrenheit.,0
fan,turn_on,Turning on the fan for you.,0
fan,turn_on,I'll get the fan going for you.,0
fan,turn_on,"Sure, turning on the fan now.",0
fan,turn_off,Switching off the fan as requested.,0
fan,turn_off,I'll turn off the fan for you.,0
fan,turn_off,"Okay, turning off the fan.",0
fan,toggle,I'll toggle the fan's state for you.,0
fan,toggle,Toggling the fan now.,0
fan,toggle,Switching the fan's state for you.,0
fan,increase_speed,Increasing the fan speed for you.,0
fan,increase_speed,"Sure, speeding up the fan now.",0
fan,increase_speed,I'll go ahead and make the fan faster.,0
fan,decrease_speed,Reducing the fan speed as you requested.,0
fan,decrease_speed,I'll slow down the fan for you.,0
fan,decrease_speed,"Sure, decreasing the fan speed.",0
fan,toggle,Flipping <device_name> state for you,0
fan,toggle,Switching <device_name> state as requested,0
fan,toggle,Toggling <device_name> now,0
fan,turn_on,Activating <device_name> now,0
fan,turn_on,Starting <device_name> for you,0
fan,turn_on,"Certainly, starting <device_name>",0
fan,turn_on,Turning on <device_name>,0
fan,turn_on,Starting <device_name>,0
fan,turn_off,Deactivating <device_name> as requested,0
fan,turn_off,Stopping <device_name> for you,0
fan,turn_off,"Certainly, stopping <device_name>",0
fan,turn_off,Turning off <device_name>,0
fan,decrease_speed,Reducing speed of <device_name>,0
fan,decrease_speed,Lowering speed of <device_name> as requested,0
fan,decrease_speed,Slowing down <device_name> for you,0
fan,increase_speed,Increasing speed of <device_name>,0
fan,increase_speed,Ramping up <device_name> speed now,0
fan,increase_speed,Speeding up <device_name> for you,0
fan,increase_speed,Increasing speed of <device_name>,0
fan,decrease_speed,Reducing speed of <device_name>,0
garage_door,open,Opening the garage door for you.,0
garage_door,open,"Sure, I'll open the garage door.",0
garage_door,open,I'll go ahead and open the garage door.,0
garage_door,close,Closing the garage door as requested.,0
garage_door,close,I'll shut the garage door for you.,0
garage_door,close,"Sure, closing the garage door.",0
garage_door,stop,Stopping the garage door now.,0
garage_door,stop,I'll stop the garage door for you.,0
garage_door,stop,"Sure, I'll halt the garage door movement.",0
garage_door,toggle,Toggling the garage door state for you.,0
garage_door,toggle,I'll switch the garage door's state now.,0
garage_door,toggle,Switching the garage door's state for you.,0
garage_door,open,Lifting <device_name> for you,0
garage_door,open,Opening <device_name> now,0
garage_door,open,Raising <device_name> as requested,0
garage_door,stop,Freezing <device_name> position now,0
garage_door,stop,"Certainly, halting <device_name>",0
garage_door,stop,Halting <device_name> operation,0
garage_door,open,Opening <device_name>,0
garage_door,stop,Stopping <device_name>,0
garage_door,close,Closing <device_name> now,0
garage_door,close,Lowering <device_name> for you,0
garage_door,close,Shutting <device_name> as requested,0
garage_door,close,Closing <device_name>,0
garage_door,toggle,Flipping <device_name> state now,0
garage_door,toggle,Switching <device_name> state as requested,0
garage_door,toggle,Toggling <device_name> for you,0
garage_door,toggle,Toggling <device_name>,0
light,turn_on,Turning on the light for you.,0
light,turn_on,"Sure, I'll turn on the light now.",0
light,turn_on,I'll go ahead and turn the light on.,0
light,turn_off,Turning off the light as requested.,0
light,turn_off,I'll switch off the light for you.,0
light,turn_off,"Sure, turning off the light.",0
light,toggle,Toggling the light for you.,0
light,toggle,Switching the light's state now.,0
light,toggle,I'll toggle the light for you.,0
light,toggle,Flipping the <device_name> state,0
light,toggle,Switching <device_name> state as requested,0
light,toggle,Toggling <device_name> for you,0
light,toggle,Toggling <device_name>,0
light,turn_on,Activation of <device_name> in progress,0
light,turn_on,"Certainly, turning on <device_name> now",0
light,turn_on,Switching on <device_name> for you,0
light,turn_on,Turning on <device_name>,0
light,turn_on,Activating <device_name>,0
light,turn_on,Setting the brightness of <device_name> to <brightness>%.,0
light,turn_on,Dimming <device_name> to <brightness>% brightness.,0
light,turn_on,Brightening <device_name> to <brightness>%.,0
light,turn_on,Adjusting <device_name> brightness to <brightness>.,0
light,turn_on,Increasing <device_name>'s brightness to <brightness>.,0
light,turn_on,Lowering the brightness of <device_name> to <brightness>.,0
light,turn_on,Setting <device_name>'s brightness level to <brightness>%.,0
light,turn_on,Setting <device_name> to <brightness>% brightness.,0
light,turn_on,Turning <device_name> <color>.,0
light,turn_on,Changing the color of <device_name> to <color>.,0
light,turn_on,Changing <device_name> to a <color> hue.,0
light,turn_on,Setting <device_name> to be <color>.,0
light,turn_on,Setting <device_name> to be <color>.,0
light,turn_on,Making <device_name> shine in <color>.,0
light,turn_on,Turning <device_name> to a <color> shade.,0
light,turn_on,Turning <device_name> <color>.,0
light,turn_on,Setting <device_name> to a <color>.,0
light,turn_on,Setting <device_name> to a <color> color.,0
light,turn_on,Setting <device_name> to a <color> color.,0
light,turn_on,Making <device_name> glow <color>.,0
light,turn_on,Turning <device_name> to <color>.,0
light,turn_on,Changing <device_name> to <color>.,0
light,turn_on,Adjusting <device_name> to <color> color.,0
light,turn_on,Switching <device_name> color to <color>.,0
light,turn_on,Setting <device_name> to be <color>.,0
light,turn_on,Setting <device_name> in <color>.,0
light,turn_on,Changing <device_name> to <color>.,0
light,turn_on,Making <device_name> display a <color> light.,0
light,turn_on,Setting <device_name> color to <color>.,0
light,turn_off,Deactivating <device_name> as requested,0
light,turn_off,Switching off <device_name> now,0
light,turn_off,"Sure, turning off <device_name>",0
light,turn_off,Turning off <device_name>,0
light,turn_off,Deactivating <device_name>,0
lock,lock,Locking the door for you.,0
lock,lock,I'll go ahead and lock the door.,0
lock,lock,"Sure, securing the lock.",0
lock,unlock,Unlocking the door as you requested.,0
lock,unlock,I'll unlock the door for you.,0
lock,unlock,"Sure, unlocking the door.",0
lock,lock,Engaging lock on <device_name>,0
lock,lock,Locking <device_name> now,0
lock,lock,Securing <device_name> for you,0
lock,lock,Locking <device_name>,0
lock,lock,Securing <device_name>,0
lock,unlock,Disengaging lock on <device_name>,0
lock,unlock,Unlocking <device_name> now,0
lock,unlock,Unsecuring <device_name> for you,0
lock,unlock,Unlocking <device_name>,0
media_player,turn_on,Turning on the media player for you.,0
media_player,turn_on,I'll get the media player going.,0
media_player,turn_on,"Sure, activating the media player.",0
media_player,turn_off,Turning off the media player as requested.,0
media_player,turn_off,I'll switch off the media player.,0
media_player,turn_off,"Sure, deactivating the media player.",0
media_player,toggle,Toggling the media player for you.,0
media_player,toggle,Switching the media player's state.,0
media_player,toggle,I'll toggle the media player.,0
media_player,volume_up,Increasing the volume for you.,0
media_player,volume_up,"Sure, turning up the volume now.",0
media_player,volume_up,I'll go ahead and raise the volume.,0
media_player,volume_down,Reducing the volume as you requested.,0
media_player,volume_down,I'll turn down the volume for you.,0
media_player,volume_down,"Sure, lowering the volume.",0
media_player,volume_mute,Muting the volume for you.,0
media_player,volume_mute,I'll mute the media player now.,0
media_player,volume_mute,"Sure, muting the volume.",0
media_player,media_play_pause,Toggling play/pause on the media player.,0
media_player,media_play_pause,Switching between play and pause.,0
media_player,media_play_pause,I'll toggle between play and pause for you.,0
media_player,media_play,Starting media playback.,0
media_player,media_play,I'll start playing the media for you.,0
media_player,media_play,"Sure, beginning playback.",0
media_player,media_pause,Pausing the media playback.,0
media_player,media_pause,I'll pause the media for you.,0
media_player,media_pause,"Sure, pausing playback.",0
media_player,media_stop,Stopping the media playback.,0
media_player,media_stop,I'll stop the media for you.,0
media_player,media_stop,"Sure, halting playback.",0
media_player,media_next_track,Skipping to the next track.,0
media_player,media_next_track,I'll go to the next track for you.,0
media_player,media_next_track,"Sure, moving to the next track.",0
media_player,media_previous_track,Going back to the previous track.,0
media_player,media_previous_track,I'll return to the previous track for you.,0
media_player,media_previous_track,"Sure, reverting to the previous track.",0
media_player,volume_up,Increasing <device_name>'s volume.,0
media_player,volume_up,Turning up <device_name> a bit.,0
media_player,volume_up,Making <device_name> louder.,0
media_player,media_play,Starting playback on <device_name>.,0
media_player,media_play,Playing <device_name> now.,0
media_player,media_play,Playing media on <device_name>.,0
media_player,media_stop,Stopping <device_name> completely.,0
media_player,media_stop,Stopping playback on <device_name>.,0
media_player,media_stop,Ending session on <device_name>.,0
media_player,volume_down,Lowering <device_name>'s volume.,0
media_player,volume_down,Decreasing <device_name>'s volume.,0
media_player,volume_down,Turning down <device_name>.,0
media_player,volume_mute,Muting <device_name>.,0
media_player,volume_mute,Silencing <device_name>.,0
media_player,volume_mute,Muting <device_name> now.,0
media_player,media_pause,Pausing <device_name>.,0
media_player,media_pause,Pausing <device_name> now.,0
media_player,media_pause,Holding playback on <device_name>.,0
media_player,media_next_track,Skipping to next track on <device_name>.,0
media_player,media_next_track,Advancing to the next song on <device_name>.,0
media_player,media_next_track,Skipping this track on <device_name>.,0
media_player,media_previous_track,Going back to previous track on <device_name>.,0
media_player,media_previous_track,Rewinding to the previous song on <device_name>.,0
media_player,media_previous_track,Going back a track on <device_name>.,0
switch,turn_on,Turning on the switch for you.,0
switch,turn_on,"Sure, I'll turn on the light now.",0
switch,turn_on,I'll go ahead and turn the switch on.,0
switch,turn_off,Turning off the switch as requested.,0
switch,turn_off,I'll switch off the device for you.,0
switch,turn_off,"Sure, turning off the switch.",0
switch,toggle,Toggling the switch for you.,0
switch,toggle,Changing the switch's state now.,0
switch,toggle,I'll toggle the switch for you.,0
switch,toggle,Toggling <device_name>.,0
switch,toggle,"Yes, toggling <device_name>.",0
switch,toggle,"Yes, I can toggle <device_name>.",0
switch,toggle,Toggling <device_name> as requested.,0
switch,toggle,Changing the state of <device_name>.,0
switch,toggle,Quickly toggling <device_name>.,0
switch,turn_on,Turning on <device_name> now.,0
switch,turn_on,I'm turning on <device_name>.,0
switch,turn_on,Activating <device_name>.,0
switch,turn_on,"Sure, turning <device_name> on.",0
switch,turn_on,Switching on <device_name> right away.,0
switch,turn_on,"Sure, lighting up <device_name> now.",0
switch,turn_on,Turning <device_name> on as needed.,0
switch,turn_off,Switching off <device_name>.,0
switch,turn_off,Turning off <device_name>.,0
switch,turn_off,Deactivating <device_name>.,0
switch,turn_off,"Okay, turning <device_name> off.",0
switch,turn_off,"Okay, I'm turning off <device_name>.",0
switch,turn_off,Shutting off <device_name> for bedtime.,0
switch,turn_off,Turning off <device_name> now.,0
blinds,close,shutting <device_name>,1
blinds,close,lowering <device_name>,1
blinds,close,closing <device_name>,1
blinds,open,raising <device_name>,1
blinds,open,lifting <device_name>,1
blinds,open,opening <device_name>,1
fan,decrease_speed,slowing down <device_name>,1
fan,decrease_speed,reducing speed of <device_name>,1
fan,decrease_speed,reducing <device_name>,1
fan,increase_speed,speeding up <device_name>,1
fan,increase_speed,increasing speed of <device_name>,1
fan,increase_speed,ramping up <device_name>,1
fan,toggle,toggling <device_name>,1
fan,toggle,flipping <device_name>,1
fan,turn_off,stopping <device_name>,1
fan,turn_off,turning off <device_name>,1
fan,turn_off,deactivating <device_name>,1
fan,turn_on,starting <device_name>,1
fan,turn_on,activating <device_name>,1
garage_door,close,shutting <device_name>,1
garage_door,close,deactivating <device_name>,1
garage_door,close,closing <device_name>,1
garage_door,open,opening <device_name>,1
garage_door,open,lifting <device_name>,1
garage_door,stop,stopping <device_name>,1
light,toggle,toggling <device_name>,1
light,toggle,flipping <device_name>,1
light,turn_off,turning off <device_name>,1
light,turn_off,deactivating <device_name>,1
light,turn_off,lowering <device_name>,1
light,turn_off,switching off <device_name>,1
light,turn_on,turning on <device_name>,1
light,turn_on,activating <device_name>,1
light,turn_on,switching on <device_name>,1
light,turn_on,turning on both <device_name>,1
lock,lock,securing <device_name>,1
lock,lock,locking <device_name>,1
lock,unlock,unlocking <device_name>,1
lock,unlock,unsecuring <device_name>,1
1 device_type service response_1 response response_2 short response_3
2 light blinds turn_on open Turning on the light for you. Opening the blinds for you. Sure, I'll turn on the light now. 0 I'll go ahead and turn the light on.
3 light blinds turn_off open Turning off the light as requested. I'll go ahead and open the blinds. I'll switch off the light for you. 0 Sure, turning off the light.
4 light blinds toggle open Toggling the light for you. Sure, opening the blinds now. Switching the light's state now. 0 I'll toggle the light for you.
5 fan blinds turn_on close Turning on the fan for you. Closing the blinds as you requested. I'll get the fan going for you. 0 Sure, turning on the fan now.
6 fan blinds turn_off close Switching off the fan as requested. I'll close the blinds for you. I'll turn off the fan for you. 0 Okay, turning off the fan.
7 fan blinds toggle close I'll toggle the fan's state for you. Sure, closing the blinds. Toggling the fan now. 0 Switching the fan's state for you.
8 fan blinds increase_speed stop Increasing the fan speed for you. Stopping the blinds now. Sure, speeding up the fan now. 0 I'll go ahead and make the fan faster.
9 fan blinds decrease_speed stop Reducing the fan speed as you requested. I'll stop the blinds for you. I'll slow down the fan for you. 0 Sure, decreasing the fan speed.
10 garage_door blinds open stop Opening the garage door for you. Sure, halting the blinds movement. Sure, I'll open the garage door. 0 I'll go ahead and open the garage door.
11 garage_door blinds close toggle Closing the garage door as requested. Toggling the blinds state for you. I'll shut the garage door for you. 0 Sure, closing the garage door.
12 garage_door blinds stop toggle Stopping the garage door now. Switching the blinds' state now. I'll stop the garage door for you. 0 Sure, I'll halt the garage door movement.
13 garage_door blinds toggle Toggling the garage door state for you. I'll toggle the blinds for you. I'll switch the garage door's state now. 0 Switching the garage door's state for you.
14 blinds open Opening the blinds for you. Lifting <device_name> blinds as requested I'll go ahead and open the blinds. 0 Sure, opening the blinds now.
15 blinds close open Closing the blinds as you requested. Opening <device_name> now I'll close the blinds for you. 0 Sure, closing the blinds.
16 blinds stop open Stopping the blinds now. Raising <device_name> for you I'll stop the blinds for you. 0 Sure, halting the blinds movement.
17 blinds toggle stop Toggling the blinds state for you. Freezing <device_name> position Switching the blinds' state now. 0 I'll toggle the blinds for you.
18 media_player blinds turn_on stop Turning on the media player for you. Halting <device_name> now I'll get the media player going. 0 Sure, activating the media player.
19 media_player blinds turn_off stop Turning off the media player as requested. Stopping <device_name> operation I'll switch off the media player. 0 Sure, deactivating the media player.
20 media_player blinds toggle open Toggling the media player for you. Raising <device_name> Switching the media player's state. 0 I'll toggle the media player.
21 media_player blinds volume_up close Increasing the volume for you. Closing <device_name> for you Sure, turning up the volume now. 0 I'll go ahead and raise the volume.
22 media_player blinds volume_down close Reducing the volume as you requested. Lowering <device_name> now I'll turn down the volume for you. 0 Sure, lowering the volume.
23 media_player blinds volume_mute close Muting the volume for you. Shutting <device_name> as requested I'll mute the media player now. 0 Sure, muting the volume.
24 media_player blinds media_play_pause close Toggling play/pause on the media player. Lowering <device_name> Switching between play and pause. 0 I'll toggle between play and pause for you.
25 media_player blinds media_play toggle Starting media playback. Flipping <device_name> state now I'll start playing the media for you. 0 Sure, beginning playback.
26 media_player blinds media_pause toggle Pausing the media playback. Switching <device_name> state as requested I'll pause the media for you. 0 Sure, pausing playback.
27 media_player blinds media_stop toggle Stopping the media playback. Toggling <device_name> for you I'll stop the media for you. 0 Sure, halting playback.
28 media_player blinds media_next_track toggle Skipping to the next track. Toggling <device_name> I'll go to the next track for you. 0 Sure, moving to the next track.
29 media_player climate media_previous_track set_humidity Going back to the previous track. Increasing humidity to <humidity>. I'll return to the previous track for you. 0 Sure, reverting to the previous track.
30 lock climate lock set_humidity Locking the door for you. Setting humidity to <humidity> percent. I'll go ahead and lock the door. 0 Sure, securing the lock.
31 lock climate unlock set_humidity Unlocking the door as you requested. Adjusting humidity to <humidity>%. I'll unlock the door for you. 0 Sure, unlocking the door.
32 switch climate turn_on set_fan_mode Turning on the switch for you. Setting the fan to high speed. Sure, I'll turn on the light now. 0 I'll go ahead and turn the switch on.
33 switch climate turn_off set_fan_mode Turning off the switch as requested. Putting the fan on low. I'll switch off the device for you. 0 Sure, turning off the switch.
34 switch climate toggle set_fan_mode Toggling the switch for you. Changing the fan to medium setting. Changing the switch's state now. 0 I'll toggle the switch for you.
35 climate set_hvac_mode Switching to cooling mode. 0
36 climate set_hvac_mode Setting the HVAC to heat. 0
37 climate set_hvac_mode Changing HVAC to automatic mode. 0
38 climate set_temperature Setting temperature to <temp_f> degrees. 0
39 climate set_temperature Changing temperature to <temp_c> Celsius. 0
40 climate set_temperature Setting the room to <temp_f> degrees Fahrenheit. 0
41 climate set_temperature Adjusting temperature to <temp_f> degrees Fahrenheit. 0
42 climate set_temperature Setting the room to <temp_c> degrees Celsius for cooler temperature. 0
43 climate set_temperature Making it warmer, setting temperature to <temp_f> degrees. 0
44 climate set_temperature Lowering the temperature to <temp_c> Celsius. 0
45 climate set_temperature Raising the temperature to <temp_f> degrees Fahrenheit. 0
46 fan turn_on Turning on the fan for you. 0
47 fan turn_on I'll get the fan going for you. 0
48 fan turn_on Sure, turning on the fan now. 0
49 fan turn_off Switching off the fan as requested. 0
50 fan turn_off I'll turn off the fan for you. 0
51 fan turn_off Okay, turning off the fan. 0
52 fan toggle I'll toggle the fan's state for you. 0
53 fan toggle Toggling the fan now. 0
54 fan toggle Switching the fan's state for you. 0
55 fan increase_speed Increasing the fan speed for you. 0
56 fan increase_speed Sure, speeding up the fan now. 0
57 fan increase_speed I'll go ahead and make the fan faster. 0
58 fan decrease_speed Reducing the fan speed as you requested. 0
59 fan decrease_speed I'll slow down the fan for you. 0
60 fan decrease_speed Sure, decreasing the fan speed. 0
61 fan toggle Flipping <device_name> state for you 0
62 fan toggle Switching <device_name> state as requested 0
63 fan toggle Toggling <device_name> now 0
64 fan turn_on Activating <device_name> now 0
65 fan turn_on Starting <device_name> for you 0
66 fan turn_on Certainly, starting <device_name> 0
67 fan turn_on Turning on <device_name> 0
68 fan turn_on Starting <device_name> 0
69 fan turn_off Deactivating <device_name> as requested 0
70 fan turn_off Stopping <device_name> for you 0
71 fan turn_off Certainly, stopping <device_name> 0
72 fan turn_off Turning off <device_name> 0
73 fan decrease_speed Reducing speed of <device_name> 0
74 fan decrease_speed Lowering speed of <device_name> as requested 0
75 fan decrease_speed Slowing down <device_name> for you 0
76 fan increase_speed Increasing speed of <device_name> 0
77 fan increase_speed Ramping up <device_name> speed now 0
78 fan increase_speed Speeding up <device_name> for you 0
79 fan increase_speed Increasing speed of <device_name> 0
80 fan decrease_speed Reducing speed of <device_name> 0
81 garage_door open Opening the garage door for you. 0
82 garage_door open Sure, I'll open the garage door. 0
83 garage_door open I'll go ahead and open the garage door. 0
84 garage_door close Closing the garage door as requested. 0
85 garage_door close I'll shut the garage door for you. 0
86 garage_door close Sure, closing the garage door. 0
87 garage_door stop Stopping the garage door now. 0
88 garage_door stop I'll stop the garage door for you. 0
89 garage_door stop Sure, I'll halt the garage door movement. 0
90 garage_door toggle Toggling the garage door state for you. 0
91 garage_door toggle I'll switch the garage door's state now. 0
92 garage_door toggle Switching the garage door's state for you. 0
93 garage_door open Lifting <device_name> for you 0
94 garage_door open Opening <device_name> now 0
95 garage_door open Raising <device_name> as requested 0
96 garage_door stop Freezing <device_name> position now 0
97 garage_door stop Certainly, halting <device_name> 0
98 garage_door stop Halting <device_name> operation 0
99 garage_door open Opening <device_name> 0
100 garage_door stop Stopping <device_name> 0
101 garage_door close Closing <device_name> now 0
102 garage_door close Lowering <device_name> for you 0
103 garage_door close Shutting <device_name> as requested 0
104 garage_door close Closing <device_name> 0
105 garage_door toggle Flipping <device_name> state now 0
106 garage_door toggle Switching <device_name> state as requested 0
107 garage_door toggle Toggling <device_name> for you 0
108 garage_door toggle Toggling <device_name> 0
109 light turn_on Turning on the light for you. 0
110 light turn_on Sure, I'll turn on the light now. 0
111 light turn_on I'll go ahead and turn the light on. 0
112 light turn_off Turning off the light as requested. 0
113 light turn_off I'll switch off the light for you. 0
114 light turn_off Sure, turning off the light. 0
115 light toggle Toggling the light for you. 0
116 light toggle Switching the light's state now. 0
117 light toggle I'll toggle the light for you. 0
118 light toggle Flipping the <device_name> state 0
119 light toggle Switching <device_name> state as requested 0
120 light toggle Toggling <device_name> for you 0
121 light toggle Toggling <device_name> 0
122 light turn_on Activation of <device_name> in progress 0
123 light turn_on Certainly, turning on <device_name> now 0
124 light turn_on Switching on <device_name> for you 0
125 light turn_on Turning on <device_name> 0
126 light turn_on Activating <device_name> 0
127 light turn_on Setting the brightness of <device_name> to <brightness>%. 0
128 light turn_on Dimming <device_name> to <brightness>% brightness. 0
129 light turn_on Brightening <device_name> to <brightness>%. 0
130 light turn_on Adjusting <device_name> brightness to <brightness>. 0
131 light turn_on Increasing <device_name>'s brightness to <brightness>. 0
132 light turn_on Lowering the brightness of <device_name> to <brightness>. 0
133 light turn_on Setting <device_name>'s brightness level to <brightness>%. 0
134 light turn_on Setting <device_name> to <brightness>% brightness. 0
135 light turn_on Turning <device_name> <color>. 0
136 light turn_on Changing the color of <device_name> to <color>. 0
137 light turn_on Changing <device_name> to a <color> hue. 0
138 light turn_on Setting <device_name> to be <color>. 0
139 light turn_on Setting <device_name> to be <color>. 0
140 light turn_on Making <device_name> shine in <color>. 0
141 light turn_on Turning <device_name> to a <color> shade. 0
142 light turn_on Turning <device_name> <color>. 0
143 light turn_on Setting <device_name> to a <color>. 0
144 light turn_on Setting <device_name> to a <color> color. 0
145 light turn_on Setting <device_name> to a <color> color. 0
146 light turn_on Making <device_name> glow <color>. 0
147 light turn_on Turning <device_name> to <color>. 0
148 light turn_on Changing <device_name> to <color>. 0
149 light turn_on Adjusting <device_name> to <color> color. 0
150 light turn_on Switching <device_name> color to <color>. 0
151 light turn_on Setting <device_name> to be <color>. 0
152 light turn_on Setting <device_name> in <color>. 0
153 light turn_on Changing <device_name> to <color>. 0
154 light turn_on Making <device_name> display a <color> light. 0
155 light turn_on Setting <device_name> color to <color>. 0
156 light turn_off Deactivating <device_name> as requested 0
157 light turn_off Switching off <device_name> now 0
158 light turn_off Sure, turning off <device_name> 0
159 light turn_off Turning off <device_name> 0
160 light turn_off Deactivating <device_name> 0
161 lock lock Locking the door for you. 0
162 lock lock I'll go ahead and lock the door. 0
163 lock lock Sure, securing the lock. 0
164 lock unlock Unlocking the door as you requested. 0
165 lock unlock I'll unlock the door for you. 0
166 lock unlock Sure, unlocking the door. 0
167 lock lock Engaging lock on <device_name> 0
168 lock lock Locking <device_name> now 0
169 lock lock Securing <device_name> for you 0
170 lock lock Locking <device_name> 0
171 lock lock Securing <device_name> 0
172 lock unlock Disengaging lock on <device_name> 0
173 lock unlock Unlocking <device_name> now 0
174 lock unlock Unsecuring <device_name> for you 0
175 lock unlock Unlocking <device_name> 0
176 media_player turn_on Turning on the media player for you. 0
177 media_player turn_on I'll get the media player going. 0
178 media_player turn_on Sure, activating the media player. 0
179 media_player turn_off Turning off the media player as requested. 0
180 media_player turn_off I'll switch off the media player. 0
181 media_player turn_off Sure, deactivating the media player. 0
182 media_player toggle Toggling the media player for you. 0
183 media_player toggle Switching the media player's state. 0
184 media_player toggle I'll toggle the media player. 0
185 media_player volume_up Increasing the volume for you. 0
186 media_player volume_up Sure, turning up the volume now. 0
187 media_player volume_up I'll go ahead and raise the volume. 0
188 media_player volume_down Reducing the volume as you requested. 0
189 media_player volume_down I'll turn down the volume for you. 0
190 media_player volume_down Sure, lowering the volume. 0
191 media_player volume_mute Muting the volume for you. 0
192 media_player volume_mute I'll mute the media player now. 0
193 media_player volume_mute Sure, muting the volume. 0
194 media_player media_play_pause Toggling play/pause on the media player. 0
195 media_player media_play_pause Switching between play and pause. 0
196 media_player media_play_pause I'll toggle between play and pause for you. 0
197 media_player media_play Starting media playback. 0
198 media_player media_play I'll start playing the media for you. 0
199 media_player media_play Sure, beginning playback. 0
200 media_player media_pause Pausing the media playback. 0
201 media_player media_pause I'll pause the media for you. 0
202 media_player media_pause Sure, pausing playback. 0
203 media_player media_stop Stopping the media playback. 0
204 media_player media_stop I'll stop the media for you. 0
205 media_player media_stop Sure, halting playback. 0
206 media_player media_next_track Skipping to the next track. 0
207 media_player media_next_track I'll go to the next track for you. 0
208 media_player media_next_track Sure, moving to the next track. 0
209 media_player media_previous_track Going back to the previous track. 0
210 media_player media_previous_track I'll return to the previous track for you. 0
211 media_player media_previous_track Sure, reverting to the previous track. 0
212 media_player volume_up Increasing <device_name>'s volume. 0
213 media_player volume_up Turning up <device_name> a bit. 0
214 media_player volume_up Making <device_name> louder. 0
215 media_player media_play Starting playback on <device_name>. 0
216 media_player media_play Playing <device_name> now. 0
217 media_player media_play Playing media on <device_name>. 0
218 media_player media_stop Stopping <device_name> completely. 0
219 media_player media_stop Stopping playback on <device_name>. 0
220 media_player media_stop Ending session on <device_name>. 0
221 media_player volume_down Lowering <device_name>'s volume. 0
222 media_player volume_down Decreasing <device_name>'s volume. 0
223 media_player volume_down Turning down <device_name>. 0
224 media_player volume_mute Muting <device_name>. 0
225 media_player volume_mute Silencing <device_name>. 0
226 media_player volume_mute Muting <device_name> now. 0
227 media_player media_pause Pausing <device_name>. 0
228 media_player media_pause Pausing <device_name> now. 0
229 media_player media_pause Holding playback on <device_name>. 0
230 media_player media_next_track Skipping to next track on <device_name>. 0
231 media_player media_next_track Advancing to the next song on <device_name>. 0
232 media_player media_next_track Skipping this track on <device_name>. 0
233 media_player media_previous_track Going back to previous track on <device_name>. 0
234 media_player media_previous_track Rewinding to the previous song on <device_name>. 0
235 media_player media_previous_track Going back a track on <device_name>. 0
236 switch turn_on Turning on the switch for you. 0
237 switch turn_on Sure, I'll turn on the light now. 0
238 switch turn_on I'll go ahead and turn the switch on. 0
239 switch turn_off Turning off the switch as requested. 0
240 switch turn_off I'll switch off the device for you. 0
241 switch turn_off Sure, turning off the switch. 0
242 switch toggle Toggling the switch for you. 0
243 switch toggle Changing the switch's state now. 0
244 switch toggle I'll toggle the switch for you. 0
245 switch toggle Toggling <device_name>. 0
246 switch toggle Yes, toggling <device_name>. 0
247 switch toggle Yes, I can toggle <device_name>. 0
248 switch toggle Toggling <device_name> as requested. 0
249 switch toggle Changing the state of <device_name>. 0
250 switch toggle Quickly toggling <device_name>. 0
251 switch turn_on Turning on <device_name> now. 0
252 switch turn_on I'm turning on <device_name>. 0
253 switch turn_on Activating <device_name>. 0
254 switch turn_on Sure, turning <device_name> on. 0
255 switch turn_on Switching on <device_name> right away. 0
256 switch turn_on Sure, lighting up <device_name> now. 0
257 switch turn_on Turning <device_name> on as needed. 0
258 switch turn_off Switching off <device_name>. 0
259 switch turn_off Turning off <device_name>. 0
260 switch turn_off Deactivating <device_name>. 0
261 switch turn_off Okay, turning <device_name> off. 0
262 switch turn_off Okay, I'm turning off <device_name>. 0
263 switch turn_off Shutting off <device_name> for bedtime. 0
264 switch turn_off Turning off <device_name> now. 0
265 blinds close shutting <device_name> 1
266 blinds close lowering <device_name> 1
267 blinds close closing <device_name> 1
268 blinds open raising <device_name> 1
269 blinds open lifting <device_name> 1
270 blinds open opening <device_name> 1
271 fan decrease_speed slowing down <device_name> 1
272 fan decrease_speed reducing speed of <device_name> 1
273 fan decrease_speed reducing <device_name> 1
274 fan increase_speed speeding up <device_name> 1
275 fan increase_speed increasing speed of <device_name> 1
276 fan increase_speed ramping up <device_name> 1
277 fan toggle toggling <device_name> 1
278 fan toggle flipping <device_name> 1
279 fan turn_off stopping <device_name> 1
280 fan turn_off turning off <device_name> 1
281 fan turn_off deactivating <device_name> 1
282 fan turn_on starting <device_name> 1
283 fan turn_on activating <device_name> 1
284 garage_door close shutting <device_name> 1
285 garage_door close deactivating <device_name> 1
286 garage_door close closing <device_name> 1
287 garage_door open opening <device_name> 1
288 garage_door open lifting <device_name> 1
289 garage_door stop stopping <device_name> 1
290 light toggle toggling <device_name> 1
291 light toggle flipping <device_name> 1
292 light turn_off turning off <device_name> 1
293 light turn_off deactivating <device_name> 1
294 light turn_off lowering <device_name> 1
295 light turn_off switching off <device_name> 1
296 light turn_on turning on <device_name> 1
297 light turn_on activating <device_name> 1
298 light turn_on switching on <device_name> 1
299 light turn_on turning on both <device_name> 1
300 lock lock securing <device_name> 1
301 lock lock locking <device_name> 1
302 lock unlock unlocking <device_name> 1
303 lock unlock unsecuring <device_name> 1

View File

@@ -1,223 +1,223 @@
device_type,service,english_phrase,assistant_response,multiplier
blinds,close,Close the <device_name>,Closing <device_name> for you,1
blinds,close,Lower the <device_name>,Lowering <device_name> now,1
blinds,close,Shut the <device_name>,Shutting <device_name> as requested,1
blinds,open,Lift the <device_name> blinds,Lifting <device_name> blinds as requested,1
blinds,open,Open the <device_name>,Opening <device_name> now,1
blinds,open,Raise the <device_name>,Raising <device_name> for you,1
blinds,stop,Freeze the <device_name>,Freezing <device_name> position,1
blinds,stop,Halt the <device_name>,Halting <device_name> now,1
blinds,stop,Stop the <device_name>,Stopping <device_name> operation,1
blinds,toggle,Flip the <device_name> state,Flipping <device_name> state now,1
blinds,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
blinds,toggle,Toggle the <device_name>,Toggling <device_name> for you,1
blinds|fan,close|turn_off,Close <device_name1> and deactivate <device_name2>,Lowering <device_name1> and stopping <device_name2>,1
blinds|fan,open|increase_speed,Raise the <device_name1> and speed up the <device_name2>,Raising <device_name1> and speeding up <device_name2>,1
blinds|light,open|turn_on,Raise <device_name1> and activate <device_name2>,Raising <device_name1> and turning on <device_name2>,1
fan,decrease_speed,Decrease the <device_name> speed,Reducing speed of <device_name>,1
fan,decrease_speed,Lower the <device_name> speed,Lowering speed of <device_name> as requested,1
fan,decrease_speed,Slow down the <device_name>,Slowing down <device_name> for you,1
fan,increase_speed,Increase the <device_name> speed,Increasing speed of <device_name>,1
fan,increase_speed,Ramp up the <device_name> speed,Ramping up <device_name> speed now,1
fan,increase_speed,Speed up the <device_name>,Speeding up <device_name> for you,1
fan,toggle,Flip the <device_name> on or off,Flipping <device_name> state for you,1
fan,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
fan,toggle,Toggle the <device_name>,Toggling <device_name> now,1
fan,turn_off,Deactivate the <device_name>,Deactivating <device_name> as requested,1
fan,turn_off,Stop the <device_name> please,Stopping <device_name> for you,1
fan,turn_off,Turn off the <device_name>,"Certainly, stopping <device_name>",1
fan,turn_on,Activate the <device_name>,Activating <device_name> now,1
fan,turn_on,Please start the <device_name>,Starting <device_name> for you,1
fan,turn_on,Turn on the <device_name>,"Certainly, starting <device_name>",1
fan|blinds,turn_off|open,Turn off <device_name1> and open <device_name2>,Stopping <device_name1> and raising <device_name2>,1
fan|blinds|garage_door,increase_speed|open|open,Speed up <device_name1> open <device_name2> and <device_name3>,Ramping up <device_name1> and lifting <device_name2> and <device_name3>,1
fan|blinds|light,decrease_speed|open|turn_off,Slow down <device_name1> open <device_name2> and turn off <device_name3>,Reducing speed of <device_name1> opening <device_name2> and deactivating <device_name3>,1
fan|blinds|light,turn_off|close|turn_on,Turn off <device_name1> close <device_name2> and turn on <device_name3>,Deactivating <device_name1> lowering <device_name2> and switching on <device_name3>,1
fan|fan,increase_speed|decrease_speed,Speed up <device_name1> and slow down <device_name2>,Increasing speed of <device_name1> and reducing <device_name2>,1
fan|fan,turn_on|turn_off,Turn on <device_name1> and turn off <device_name2>,Starting <device_name1> and stopping <device_name2>,1
fan|garage_door,increase_speed|close,Increase speed of <device_name1> and close <device_name2>,Speeding up <device_name1> and shutting <device_name2>,1
fan|garage_door|blinds,increase_speed|close|open,Speed up <device_name1> close <device_name2> and open <device_name3>,Increasing speed of <device_name1> shutting <device_name2> and raising <device_name3>,1
fan|garage_door|blinds,turn_on|close|close,Turn on <device_name1> close <device_name2> and <device_name3>,Starting <device_name1> and shutting <device_name2> and <device_name3>,1
fan|garage_door|light,turn_off|close|turn_off,Turn off <device_name1> and <device_name3> and close <device_name2>,Stopping <device_name1> and deactivating <device_name3> and lowering <device_name2>,1
fan|garage_door|lock,turn_off|close|lock,Turn off <device_name1> close <device_name2> and lock <device_name3>,Stopping <device_name1> closing <device_name2> and locking <device_name3>,1
fan|garage_door|lock,turn_on|open|unlock,Turn on <device_name1> open <device_name2> and unlock <device_name3>,Starting <device_name1> lifting <device_name2> and unlocking <device_name3>,1
fan|light,turn_on|turn_off,Activate <device_name1> and deactivate <device_name2>,Activating <device_name1> and turning off <device_name2>,1
fan|light|lock,decrease_speed|toggle|lock,Slow down <device_name1> toggle <device_name2> and lock <device_name3>,Reducing speed of <device_name1> flipping <device_name2> and securing <device_name3>,1
fan|lock,decrease_speed|unlock,Slow down the <device_name1> and unlock the <device_name2>,Slowing down <device_name1> and unlocking <device_name2>,1
garage_door,close,Close the <device_name>,Closing <device_name> now,1
garage_door,close,Lower the <device_name>,Lowering <device_name> for you,1
garage_door,close,Shut the <device_name>,Shutting <device_name> as requested,1
garage_door,open,Lift the <device_name>,Lifting <device_name> for you,1
garage_door,open,Open the <device_name>,Opening <device_name> now,1
garage_door,open,Raise the <device_name>,Raising <device_name> as requested,1
garage_door,stop,Freeze the <device_name>,Freezing <device_name> position now,1
garage_door,stop,Halt the <device_name>,"Certainly, halting <device_name>",1
garage_door,stop,Stop the <device_name>,Halting <device_name> operation,1
garage_door,toggle,Flip the <device_name> state,Flipping <device_name> state now,1
garage_door,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
garage_door,toggle,Toggle the <device_name>,Toggling <device_name> for you,1
garage_door|blinds,open|open,Open the <device_name1> and lift the <device_name2>,Opening <device_name1> and lifting <device_name2>,1
garage_door|fan,close|turn_off,Close <device_name1> and deactivate <device_name2>,Shutting <device_name1> and deactivating <device_name2>,1
garage_door|light,open|turn_on,Open <device_name1> and activate <device_name2>,Opening <device_name1> and switching on <device_name2>,1
garage_door|lock,open|unlock,Open <device_name1> and unlock <device_name2>,Opening <device_name1> and unlocking <device_name2>,1
light,toggle,Flip the <device_name> on or off,Flipping the <device_name> state,1
light,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
light,toggle,Toggle the <device_name> state,Toggling <device_name> for you,1
light,turn_off,Deactivate the <device_name>,Deactivating <device_name> as requested,1
light,turn_off,Please switch off the <device_name>,Switching off <device_name> now,1
light,turn_off,Turn off the <device_name>,"Sure, turning off <device_name>",1
light,turn_on,Activate the <device_name>,Activation of <device_name> in progress,1
light,turn_on,Can you turn on the <device_name>?,"Certainly, turning on <device_name> now",1
light,turn_on,Please switch on the <device_name>,Switching on <device_name> for you,1
light|blinds,turn_off|close,Turn off <device_name1> and close <device_name2>,Deactivating <device_name1> and closing <device_name2>,1
light|blinds|fan,turn_on|close|decrease_speed,Turn on <device_name1> close <device_name2> and slow down <device_name3>,Switching on <device_name1> lowering <device_name2> and reducing speed of <device_name3>,1
light|blinds|garage_door,turn_on|open|close,Turn on <device_name1> open <device_name2> and close <device_name3>,Switching on <device_name1> raising <device_name2> and shutting <device_name3>,1
light|blinds|lock,turn_off|close|lock,"Turn off the <device_name1> close the <device_name2> and lock the <device_name3>","Turning off <device_name1> closing <device_name2> and locking <device_name3>",1
light|blinds|lock,turn_off|close|unlock,Turn off <device_name1> close <device_name2> and unlock <device_name3>,Deactivating <device_name1> closing <device_name2> and unlocking <device_name3>,1
light|fan,toggle|decrease_speed,Toggle <device_name1> and slow down <device_name2>,Toggling <device_name1> and reducing speed of <device_name2>,1
light|fan,toggle|increase_speed,Toggle <device_name1> and speed up <device_name2>,Toggling <device_name1> and increasing speed of <device_name2>,1
light|fan,turn_off|turn_on,Turn off the <device_name1> and turn on <device_name2>,Turning off <device_name1> and starting <device_name2>,1
light|fan,turn_on|toggle,Switch on <device_name1> and toggle <device_name2>,Activating <device_name1> and toggling <device_name2>,1
light|fan,turn_on|turn_off,Turn on the <device_name1> and turn off the <device_name2>,Turning on <device_name1> and turning off <device_name2>,1
light|fan,turn_on|turn_on,Turn on both the <device_name1> and <device_name2>,Turning on both <device_name1> and <device_name2>,1
light|fan,turn_on|turn_on,Turn on the <device_name1> and <device_name2>,Turning on <device_name1> and <device_name2>,1
light|fan|blinds,toggle|increase_speed|open,Toggle <device_name1> speed up <device_name2> and open <device_name3>,Flipping <device_name1> ramping up <device_name2> and lifting <device_name3>,1
light|fan|blinds,turn_off|decrease_speed|close,Turn off <device_name1> slow down <device_name2> and close <device_name3>,Switching off <device_name1> reducing speed of <device_name2> and lowering <device_name3>,1
light|fan|blinds,turn_off|turn_off|close,Turn off <device_name1> and <device_name2> and close <device_name3>,Deactivating <device_name1> and <device_name2> and lowering <device_name3>,1
light|fan|garage_door,toggle|decrease_speed|open,Toggle <device_name1> slow down <device_name2> and open <device_name3>,Toggling <device_name1> reducing speed of <device_name2> and opening <device_name3>,1
light|fan|garage_door,turn_off|turn_on|close,Turn off <device_name1> turn on <device_name2> and close <device_name3>,Switching off <device_name1> activating <device_name2> and shutting <device_name3>,1
light|fan|garage_door,turn_on|toggle|open,"Switch on the <device_name1> flip the <device_name2> and lift the <device_name3>","Switching on <device_name1> flipping <device_name2> and lifting <device_name3>",1
light|fan|garage_door,turn_on|turn_on|open,Turn on <device_name1> and <device_name2> and open <device_name3>,Activating <device_name1> and <device_name2> and opening <device_name3>,1
light|fan|lock,toggle|toggle|lock,Toggle both <device_name1> and <device_name2> and lock <device_name3>,Toggling <device_name1> and <device_name2> and securing <device_name3>,1
light|fan|lock,turn_off|turn_off|unlock,Turn off <device_name1> and <device_name2> and unlock <device_name3>,Deactivating <device_name1> and <device_name2> and unsecuring <device_name3>,1
light|fan|lock,turn_on|increase_speed|lock,Turn on <device_name1> speed up <device_name2> and lock <device_name3>,Switching on <device_name1> increasing speed of <device_name2> and locking <device_name3>,1
light|fan|lock,turn_on|turn_on|unlock,Turn on both <device_name1> and <device_name2> and unlock <device_name3>,Activating <device_name1> and <device_name2> and unsecuring <device_name3>,1
light|garage_door,toggle|stop,Toggle the <device_name1> and stop the <device_name2>,Toggling <device_name1> and stopping <device_name2>,1
light|garage_door,turn_on|open,Switch on <device_name1> and open <device_name2>,Activating <device_name1> and opening <device_name2>,1
light|garage_door,turn_on|open,Switch on the <device_name1> and open the <device_name2>,Switching on <device_name1> and opening <device_name2>,1
light|garage_door|lock,turn_on|open|lock,Turn on <device_name1> open <device_name2> and lock <device_name3>,Activating <device_name1> lifting <device_name2> and locking <device_name3>,1
light|light,toggle|toggle,Toggle both <device_name1> and <device_name2>,Toggling <device_name1> and <device_name2>,1
light|light,turn_on|turn_off,Turn on <device_name1> and turn off <device_name2>,Turning on <device_name1> and deactivating <device_name2>,1
light|light|fan,toggle|toggle|decrease_speed,Toggle both <device_name1> and <device_name2> and slow down <device_name3>,Flipping <device_name1> and <device_name2> and reducing speed of <device_name3>,1
light|light|fan,toggle|turn_on|increase_speed,Toggle <device_name1> turn on <device_name2> and speed up <device_name3>,Flipping <device_name1> activating <device_name2> and speeding up <device_name3>,1
light|light|fan,turn_on|turn_off|toggle,Turn on <device_name1> turn off <device_name2> and toggle <device_name3>,Activating <device_name1> deactivating <device_name2> and toggling <device_name3>,1
light|lock,turn_on|lock,Turn on <device_name1> and lock <device_name2>,Activating <device_name1> and locking <device_name2>,1
lock,lock,Engage the <device_name> lock,Engaging lock on <device_name>,1
lock,lock,Lock the <device_name>,Locking <device_name> now,1
lock,lock,Secure the <device_name>,Securing <device_name> for you,1
lock,unlock,Disengage the <device_name> lock,Disengaging lock on <device_name>,1
lock,unlock,Unlock the <device_name>,Unlocking <device_name> now,1
lock,unlock,Unsecure the <device_name>,Unsecuring <device_name> for you,1
lock|blinds,lock|close,Lock the <device_name1> and lower the <device_name2>,Locking <device_name1> and lowering <device_name2>,1
lock|garage_door,lock|close,Secure the <device_name1> and shut the <device_name2>,Securing <device_name1> and shutting <device_name2>,1
light,turn_on,Make sure the <device_name> is on,Turning on <device_name>,1
fan,turn_on,Make sure the <device_name> is on,Turning on <device_name>,1
lock|lock|garage_door,lock|lock|close,Make sure <device_name1> and <device_name2> are locked and the <device_name3> is closed,Sure. Locking <device_name1> and <device_name2> and closing <device_name3>,1
light,turn_off,Ensure the <device_name> is off,Turning off <device_name>,1
fan,turn_off,Ensure the <device_name> is off,Turning off <device_name>,1
garage_door,close,Make certain the <device_name> is closed,Closing <device_name>,1
blinds,open,See to it that the <device_name> are open,Raising <device_name>,1
lock,lock,Ensure <device_name> is secure,Locking <device_name>,1
light,toggle,Can you flip the <device_name>,Toggling <device_name>,1
fan,increase_speed,Step up the speed of the <device_name>,Increasing speed of <device_name>,1
garage_door,open,Make certain the <device_name> is open,Opening <device_name>,1
blinds,close,See to it that the <device_name> are closed,Lowering <device_name>,1
lock,unlock,Make sure <device_name> is unlocked,Unlocking <device_name>,1
fan,decrease_speed,Slow down the <device_name>,Reducing speed of <device_name>,1
light,turn_on,Confirm that the <device_name> is on,Activating <device_name>,1
garage_door,stop,Stop the <device_name> right now,Stopping <device_name>,1
light,turn_off,Confirm that the <device_name> is off,Deactivating <device_name>,1
garage_door,toggle,Toggle the <device_name> position,Toggling <device_name>,1
blinds,toggle,Switch the state of the <device_name>,Toggling <device_name>,1
lock,lock,Lock down the <device_name>,Securing <device_name>,1
fan,turn_on,Make certain the <device_name> is running,Starting <device_name>,1
switch,turn_on,"Can you turn on <device_name>?","Turning on <device_name> now.",1
switch,turn_off,"Please switch off <device_name>.","Switching off <device_name>.",1
switch,toggle,"Could you toggle <device_name>?","Toggling <device_name>.",1
switch,turn_on,"I need <device_name> on, please.","I'm turning on <device_name>.",1
switch,turn_off,"Turn off <device_name>, will you?","Turning off <device_name>.",1
switch,toggle,"Can <device_name> be toggled?","Yes, toggling <device_name>.",1
switch,turn_on,"Activate <device_name>.","Activating <device_name>.",1
switch,turn_off,"Deactivate <device_name>.","Deactivating <device_name>.",1
switch,toggle,"Is it possible to toggle the <device_name>?","Yes, I can toggle <device_name>.",1
switch,turn_on,"Let's have <device_name> on.","Sure, turning <device_name> on.",1
switch,turn_off,"We don't need <device_name> on anymore.","Okay, turning <device_name> off.",1
switch,toggle,"Toggle <device_name> for me.","Toggling <device_name> as requested.",1
switch,turn_on,"Switch on <device_name>, please.","Switching on <device_name> right away.",1
switch,turn_off,"I'd like <device_name> off now.","Okay, I'm turning off <device_name>.",1
switch,toggle,"Can you change the state of <device_name>?","Changing the state of <device_name>.",1
switch,turn_on,"Please turn on <device_name>.","Sure, lighting up <device_name> now.",1
switch,turn_off,"Shut off <device_name>, it's bedtime.","Shutting off <device_name> for bedtime.",1
switch,toggle,"A quick toggle of <device_name>, please.","Quickly toggling <device_name>.",1
switch,turn_on,"<device_name> needs to be on.","Turning <device_name> on as needed.",1
switch,turn_off,"Time to turn <device_name> off.","Turning off <device_name> now.",1
media_player,volume_up,"Increase the volume on <device_name>.","Increasing <device_name>'s volume.",1
media_player,volume_up,"Turn up <device_name> a bit.","Turning up <device_name> a bit.",1
media_player,volume_up,"Louder on <device_name>, please.","Making <device_name> louder.",1
media_player,volume_down,"Can you lower <device_name>'s volume?","Lowering <device_name>'s volume.",1
media_player,volume_down,"Decrease the volume on <device_name>.","Decreasing <device_name>'s volume.",1
media_player,volume_down,"Turn down <device_name>, please.","Turning down <device_name>.",1
media_player,volume_mute,"Mute <device_name>, please.","Muting <device_name>.",1
media_player,volume_mute,"Silence <device_name> for a moment.","Silencing <device_name>.",1
media_player,volume_mute,"Can you mute <device_name>?","Muting <device_name> now.",1
media_player,media_play,"Start playing on <device_name>.","Starting playback on <device_name>.",1
media_player,media_play,"Can you play <device_name>?","Playing <device_name> now.",1
media_player,media_play,"Play the media on <device_name>, please.","Playing media on <device_name>.",1
media_player,media_pause,"Pause <device_name>.","Pausing <device_name>.",1
media_player,media_pause,"Can you pause <device_name>?","Pausing <device_name> now.",1
media_player,media_pause,"Hold the playback on <device_name>, please.","Holding playback on <device_name>.",1
media_player,media_stop,"Stop <device_name> completely.","Stopping <device_name> completely.",1
media_player,media_stop,"Can you stop playback on <device_name>?","Stopping playback on <device_name>.",1
media_player,media_stop,"End the session on <device_name>, please.","Ending session on <device_name>.",1
media_player,media_next_track,"Next track on <device_name>, please.","Skipping to next track on <device_name>.",1
media_player,media_next_track,"Advance <device_name> to the next song.","Advancing to the next song on <device_name>.",1
media_player,media_next_track,"Skip this track on <device_name>.","Skipping this track on <device_name>.",1
media_player,media_previous_track,"Previous track on <device_name>, please.","Going back to previous track on <device_name>.",1
media_player,media_previous_track,"Rewind to the previous song on <device_name>.","Rewinding to the previous song on <device_name>.",1
media_player,media_previous_track,"Can we go back a track on <device_name>?","Going back a track on <device_name>.",1
climate,set_temperature,"Set the temperature to <temp_f> degrees.","Setting temperature to <temp_f> degrees.",8
climate,set_temperature,"Can you change the temperature to <temp_c> Celsius?","Changing temperature to <temp_c> Celsius.",8
climate,set_temperature,"I'd like the room at <temp_f> degrees Fahrenheit, please.","Setting the room to <temp_f> degrees Fahrenheit.",8
climate,set_temperature,"Please adjust the temperature to <temp_f> degrees.","Adjusting temperature to <temp_f> degrees Fahrenheit.",8
climate,set_temperature,"I want the room cooler, set it to <temp_c> degrees.","Setting the room to <temp_c> degrees Celsius for cooler temperature.",8
climate,set_temperature,"Make it warmer, set temperature at <temp_f> degrees.","Making it warmer, setting temperature to <temp_f> degrees.",8
climate,set_temperature,"Can you lower the temperature to <temp_c>?","Lowering the temperature to <temp_c> Celsius.",8
climate,set_temperature,"Raise the temperature to <temp_f> degrees, please.","Raising the temperature to <temp_f> degrees Fahrenheit.",8
climate,set_humidity,"Increase the humidity to <humidity>.","Increasing humidity to <humidity>.",8
climate,set_humidity,"Set the humidity level to <humidity> percent.","Setting humidity to <humidity> percent.",8
climate,set_humidity,"Can you adjust the humidity to <humidity> percent?","Adjusting humidity to <humidity>%.",8
climate,set_fan_mode,"Set the fan to high speed.","Setting the fan to high speed.",8
climate,set_fan_mode,"Please put the fan on low.","Putting the fan on low.",8
climate,set_fan_mode,"Change the fan setting to medium.","Changing the fan to medium setting.",8
climate,set_hvac_mode,"Switch the system to cooling mode.","Switching to cooling mode.",8
climate,set_hvac_mode,"Can we set the HVAC to heat?","Setting the HVAC to heat.",8
climate,set_hvac_mode,"Change the HVAC to automatic.","Changing HVAC to automatic mode.",8
light,turn_on,"Set the brightness of <device_name> to <brightness>%.","Setting the brightness of <device_name> to <brightness>%.",8
light,turn_on,"Dim <device_name> to <brightness> percent brightness.","Dimming <device_name> to <brightness>% brightness.",8
light,turn_on,"Brighten <device_name> to <brightness>.","Brightening <device_name> to <brightness>%.",8
light,turn_on,"Adjust <device_name> brightness to <brightness>.","Adjusting <device_name> brightness to <brightness>.",8
light,turn_on,"Increase <device_name>'s brightness to <brightness>.","Increasing <device_name>'s brightness to <brightness>.",8
light,turn_on,"Lower the brightness of <device_name> to <brightness>.","Lowering the brightness of <device_name> to <brightness>.",8
light,turn_on,"Can you set <device_name>'s brightness level to <brightness> percent?","Setting <device_name>'s brightness level to <brightness>%.",8
light,turn_on,"I'd like <device_name> at <brightness> percent brightness, please.","Setting <device_name> to <brightness>% brightness.",8
light,turn_on,"Can you make <device_name> <color>?","Turning <device_name> <color>.",8
light,turn_on,"Change the color of <device_name> to <color>.","Changing the color of <device_name> to <color>.",8
light,turn_on,"Change <device_name> to a <color> hue.","Changing <device_name> to a <color> hue.",8
light,turn_on,"Set <device_name> to be <color>.","Setting <device_name> to be <color>.",8
light,turn_on,"I want <device_name> to be <color>, please.","Setting <device_name> to be <color>.",8
light,turn_on,"Can you make <device_name> shine in <color>?","Making <device_name> shine in <color>.",8
light,turn_on,"Turn <device_name> to a <color> shade.","Turning <device_name> to a <color> shade.",8
light,turn_on,"Turn <device_name> <color>.","Turning <device_name> <color>.",8
light,turn_on,"I want <device_name> at a <color> setting.","Setting <device_name> to a <color>.",8
light,turn_on,"Set <device_name> to a <color> color.","Setting <device_name> to a <color> color.",8
light,turn_on,"Please set <device_name> to a <color> color.","Setting <device_name> to a <color> color.",8
light,turn_on,"Make <device_name> glow <color>.","Making <device_name> glow <color>.",8
light,turn_on,"Could you turn <device_name> to <color>?","Turning <device_name> to <color>.",8
light,turn_on,"Please change <device_name> to <color>.","Changing <device_name> to <color>.",8
light,turn_on,"Adjust <device_name> to <color> color.","Adjusting <device_name> to <color> color.",8
light,turn_on,"Switch <device_name> color to <color>.","Switching <device_name> color to <color>.",8
light,turn_on,"Can <device_name> be <color> now?","Setting <device_name> to be <color>.",8
light,turn_on,"Let's have <device_name> in <color>.","Setting <device_name> in <color>.",8
light,turn_on,"I'd like <device_name> to change to <color>.","Changing <device_name> to <color>.",8
light,turn_on,"Can <device_name> display a <color> light?","Making <device_name> display a <color> light.",8
light,turn_on,"Set <device_name> color to <color>, please.","Setting <device_name> color to <color>.",8
device_type,service,english_phrase,multiplier
blinds,close,Close the <device_name>,1
blinds,close,Lower the <device_name>,1
blinds,close,Shut the <device_name>,1
blinds,open,Lift the <device_name> blinds,1
blinds,open,Open the <device_name>,1
blinds,open,Raise the <device_name>,1
blinds,stop,Freeze the <device_name>,1
blinds,stop,Halt the <device_name>,1
blinds,stop,Stop the <device_name>,1
blinds,toggle,Flip the <device_name> state,1
blinds,toggle,Switch the <device_name> state,1
blinds,toggle,Toggle the <device_name>,1
blinds|fan,close|turn_off,Close <device_name1> and deactivate <device_name2>,1
blinds|fan,open|increase_speed,Raise the <device_name1> and speed up the <device_name2>,1
blinds|light,open|turn_on,Raise <device_name1> and activate <device_name2>,1
fan,decrease_speed,Decrease the <device_name> speed,1
fan,decrease_speed,Lower the <device_name> speed,1
fan,decrease_speed,Slow down the <device_name>,1
fan,increase_speed,Increase the <device_name> speed,1
fan,increase_speed,Ramp up the <device_name> speed,1
fan,increase_speed,Speed up the <device_name>,1
fan,toggle,Flip the <device_name> on or off,1
fan,toggle,Switch the <device_name> state,1
fan,toggle,Toggle the <device_name>,1
fan,turn_off,Deactivate the <device_name>,1
fan,turn_off,Stop the <device_name> please,1
fan,turn_off,Turn off the <device_name>,1
fan,turn_on,Activate the <device_name>,1
fan,turn_on,Please start the <device_name>,1
fan,turn_on,Turn on the <device_name>,1
fan|blinds,turn_off|open,Turn off <device_name1> and open <device_name2>,1
fan|blinds|garage_door,increase_speed|open|open,Speed up <device_name1> open <device_name2> and <device_name3>,1
fan|blinds|light,decrease_speed|open|turn_off,Slow down <device_name1> open <device_name2> and turn off <device_name3>,1
fan|blinds|light,turn_off|close|turn_on,Turn off <device_name1> close <device_name2> and turn on <device_name3>,1
fan|fan,increase_speed|decrease_speed,Speed up <device_name1> and slow down <device_name2>,1
fan|fan,turn_on|turn_off,Turn on <device_name1> and turn off <device_name2>,1
fan|garage_door,increase_speed|close,Increase speed of <device_name1> and close <device_name2>,1
fan|garage_door|blinds,increase_speed|close|open,Speed up <device_name1> close <device_name2> and open <device_name3>,1
fan|garage_door|blinds,turn_on|close|close,Turn on <device_name1> close <device_name2> and <device_name3>,1
fan|garage_door|light,turn_off|close|turn_off,Turn off <device_name1> and <device_name3> and close <device_name2>,1
fan|garage_door|lock,turn_off|close|lock,Turn off <device_name1> close <device_name2> and lock <device_name3>,1
fan|garage_door|lock,turn_on|open|unlock,Turn on <device_name1> open <device_name2> and unlock <device_name3>,1
fan|light,turn_on|turn_off,Activate <device_name1> and deactivate <device_name2>,1
fan|light|lock,decrease_speed|toggle|lock,Slow down <device_name1> toggle <device_name2> and lock <device_name3>,1
fan|lock,decrease_speed|unlock,Slow down the <device_name1> and unlock the <device_name2>,1
garage_door,close,Close the <device_name>,1
garage_door,close,Lower the <device_name>,1
garage_door,close,Shut the <device_name>,1
garage_door,open,Lift the <device_name>,1
garage_door,open,Open the <device_name>,1
garage_door,open,Raise the <device_name>,1
garage_door,stop,Freeze the <device_name>,1
garage_door,stop,Halt the <device_name>,1
garage_door,stop,Stop the <device_name>,1
garage_door,toggle,Flip the <device_name> state,1
garage_door,toggle,Switch the <device_name> state,1
garage_door,toggle,Toggle the <device_name>,1
garage_door|blinds,open|open,Open the <device_name1> and lift the <device_name2>,1
garage_door|fan,close|turn_off,Close <device_name1> and deactivate <device_name2>,1
garage_door|light,open|turn_on,Open <device_name1> and activate <device_name2>,1
garage_door|lock,open|unlock,Open <device_name1> and unlock <device_name2>,1
light,toggle,Flip the <device_name> on or off,1
light,toggle,Switch the <device_name> state,1
light,toggle,Toggle the <device_name> state,1
light,turn_off,Deactivate the <device_name>,1
light,turn_off,Please switch off the <device_name>,1
light,turn_off,Turn off the <device_name>,1
light,turn_on,Activate the <device_name>,1
light,turn_on,Can you turn on the <device_name>?,1
light,turn_on,Please switch on the <device_name>,1
light|blinds,turn_off|close,Turn off <device_name1> and close <device_name2>,1
light|blinds|fan,turn_on|close|decrease_speed,Turn on <device_name1> close <device_name2> and slow down <device_name3>,1
light|blinds|garage_door,turn_on|open|close,Turn on <device_name1> open <device_name2> and close <device_name3>,1
light|blinds|lock,turn_off|close|lock,"Turn off the <device_name1> close the <device_name2> and lock the <device_name3>",1
light|blinds|lock,turn_off|close|unlock,Turn off <device_name1> close <device_name2> and unlock <device_name3>,1
light|fan,toggle|decrease_speed,Toggle <device_name1> and slow down <device_name2>,1
light|fan,toggle|increase_speed,Toggle <device_name1> and speed up <device_name2>,1
light|fan,turn_off|turn_on,Turn off the <device_name1> and turn on <device_name2>,1
light|fan,turn_on|toggle,Switch on <device_name1> and toggle <device_name2>,1
light|fan,turn_on|turn_off,Turn on the <device_name1> and turn off the <device_name2>,1
light|fan,turn_on|turn_on,Turn on both the <device_name1> and <device_name2>,1
light|fan,turn_on|turn_on,Turn on the <device_name1> and <device_name2>,1
light|fan|blinds,toggle|increase_speed|open,Toggle <device_name1> speed up <device_name2> and open <device_name3>,1
light|fan|blinds,turn_off|decrease_speed|close,Turn off <device_name1> slow down <device_name2> and close <device_name3>,1
light|fan|blinds,turn_off|turn_off|close,Turn off <device_name1> and <device_name2> and close <device_name3>,1
light|fan|garage_door,toggle|decrease_speed|open,Toggle <device_name1> slow down <device_name2> and open <device_name3>,1
light|fan|garage_door,turn_off|turn_on|close,Turn off <device_name1> turn on <device_name2> and close <device_name3>,1
light|fan|garage_door,turn_on|toggle|open,"Switch on the <device_name1> flip the <device_name2> and lift the <device_name3>",1
light|fan|garage_door,turn_on|turn_on|open,Turn on <device_name1> and <device_name2> and open <device_name3>,1
light|fan|lock,toggle|toggle|lock,Toggle both <device_name1> and <device_name2> and lock <device_name3>,1
light|fan|lock,turn_off|turn_off|unlock,Turn off <device_name1> and <device_name2> and unlock <device_name3>,1
light|fan|lock,turn_on|increase_speed|lock,Turn on <device_name1> speed up <device_name2> and lock <device_name3>,1
light|fan|lock,turn_on|turn_on|unlock,Turn on both <device_name1> and <device_name2> and unlock <device_name3>,1
light|garage_door,toggle|stop,Toggle the <device_name1> and stop the <device_name2>,1
light|garage_door,turn_on|open,Switch on <device_name1> and open <device_name2>,1
light|garage_door,turn_on|open,Switch on the <device_name1> and open the <device_name2>,1
light|garage_door|lock,turn_on|open|lock,Turn on <device_name1> open <device_name2> and lock <device_name3>,1
light|light,toggle|toggle,Toggle both <device_name1> and <device_name2>,1
light|light,turn_on|turn_off,Turn on <device_name1> and turn off <device_name2>,1
light|light|fan,toggle|toggle|decrease_speed,Toggle both <device_name1> and <device_name2> and slow down <device_name3>,1
light|light|fan,toggle|turn_on|increase_speed,Toggle <device_name1> turn on <device_name2> and speed up <device_name3>,1
light|light|fan,turn_on|turn_off|toggle,Turn on <device_name1> turn off <device_name2> and toggle <device_name3>,1
light|lock,turn_on|lock,Turn on <device_name1> and lock <device_name2>,1
lock,lock,Engage the <device_name> lock,1
lock,lock,Lock the <device_name>,1
lock,lock,Secure the <device_name>,1
lock,unlock,Disengage the <device_name> lock,1
lock,unlock,Unlock the <device_name>,1
lock,unlock,Unsecure the <device_name>,1
lock|blinds,lock|close,Lock the <device_name1> and lower the <device_name2>,1
lock|garage_door,lock|close,Secure the <device_name1> and shut the <device_name2>,1
light,turn_on,Make sure the <device_name> is on,1
fan,turn_on,Make sure the <device_name> is on,1
lock|lock|garage_door,lock|lock|close,Make sure <device_name1> and <device_name2> are locked and the <device_name3> is closed,1
light,turn_off,Ensure the <device_name> is off,1
fan,turn_off,Ensure the <device_name> is off,1
garage_door,close,Make certain the <device_name> is closed,1
blinds,open,See to it that the <device_name> are open,1
lock,lock,Ensure <device_name> is secure,1
light,toggle,Can you flip the <device_name>,1
fan,increase_speed,Step up the speed of the <device_name>,1
garage_door,open,Make certain the <device_name> is open,1
blinds,close,See to it that the <device_name> are closed,1
lock,unlock,Make sure <device_name> is unlocked,1
fan,decrease_speed,Slow down the <device_name>,1
light,turn_on,Confirm that the <device_name> is on,1
garage_door,stop,Stop the <device_name> right now,1
light,turn_off,Confirm that the <device_name> is off,1
garage_door,toggle,Toggle the <device_name> position,1
blinds,toggle,Switch the state of the <device_name>,1
lock,lock,Lock down the <device_name>,1
fan,turn_on,Make certain the <device_name> is running,1
switch,turn_on,"Can you turn on <device_name>?",1
switch,turn_off,"Please switch off <device_name>.",1
switch,toggle,"Could you toggle <device_name>?",1
switch,turn_on,"I need <device_name> on,1
switch,turn_off,"Turn off <device_name>,1
switch,toggle,"Can <device_name> be toggled?",1
switch,turn_on,"Activate <device_name>.",1
switch,turn_off,"Deactivate <device_name>.",1
switch,toggle,"Is it possible to toggle the <device_name>?",1
switch,turn_on,"Let's have <device_name> on.",1
switch,turn_off,"We don't need <device_name> on anymore.",1
switch,toggle,"Toggle <device_name> for me.",1
switch,turn_on,"Switch on <device_name>,1
switch,turn_off,"I'd like <device_name> off now.",1
switch,toggle,"Can you change the state of <device_name>?",1
switch,turn_on,"Please turn on <device_name>.",1
switch,turn_off,"Shut off <device_name>,1
switch,toggle,"A quick toggle of <device_name>,1
switch,turn_on,"<device_name> needs to be on.",1
switch,turn_off,"Time to turn <device_name> off.",1
media_player,volume_up,"Increase the volume on <device_name>.",1
media_player,volume_up,"Turn up <device_name> a bit.",1
media_player,volume_up,"Louder on <device_name>,1
media_player,volume_down,"Can you lower <device_name>'s volume?",1
media_player,volume_down,"Decrease the volume on <device_name>.",1
media_player,volume_down,"Turn down <device_name>,1
media_player,volume_mute,"Mute <device_name>,1
media_player,volume_mute,"Silence <device_name> for a moment.",1
media_player,volume_mute,"Can you mute <device_name>?",1
media_player,media_play,"Start playing on <device_name>.",1
media_player,media_play,"Can you play <device_name>?",1
media_player,media_play,"Play the media on <device_name>,1
media_player,media_pause,"Pause <device_name>.",1
media_player,media_pause,"Can you pause <device_name>?",1
media_player,media_pause,"Hold the playback on <device_name>,1
media_player,media_stop,"Stop <device_name> completely.",1
media_player,media_stop,"Can you stop playback on <device_name>?",1
media_player,media_stop,"End the session on <device_name>,1
media_player,media_next_track,"Next track on <device_name>,1
media_player,media_next_track,"Advance <device_name> to the next song.",1
media_player,media_next_track,"Skip this track on <device_name>.",1
media_player,media_previous_track,"Previous track on <device_name>,1
media_player,media_previous_track,"Rewind to the previous song on <device_name>.",1
media_player,media_previous_track,"Can we go back a track on <device_name>?",1
climate,set_temperature,"Set the temperature to <temp_f> degrees.",8
climate,set_temperature,"Can you change the temperature to <temp_c> Celsius?",8
climate,set_temperature,"I'd like the room at <temp_f> degrees Fahrenheit,8
climate,set_temperature,"Please adjust the temperature to <temp_f> degrees.",8
climate,set_temperature,"I want the room cooler,8
climate,set_temperature,"Make it warmer,8
climate,set_temperature,"Can you lower the temperature to <temp_c>?",8
climate,set_temperature,"Raise the temperature to <temp_f> degrees,8
climate,set_humidity,"Increase the humidity to <humidity>.",8
climate,set_humidity,"Set the humidity level to <humidity> percent.",8
climate,set_humidity,"Can you adjust the humidity to <humidity> percent?",8
climate,set_fan_mode,"Set the fan to high speed.",8
climate,set_fan_mode,"Please put the fan on low.",8
climate,set_fan_mode,"Change the fan setting to medium.",8
climate,set_hvac_mode,"Switch the system to cooling mode.",8
climate,set_hvac_mode,"Can we set the HVAC to heat?",8
climate,set_hvac_mode,"Change the HVAC to automatic.",8
light,turn_on,"Set the brightness of <device_name> to <brightness>%.",8
light,turn_on,"Dim <device_name> to <brightness> percent brightness.",8
light,turn_on,"Brighten <device_name> to <brightness>.",8
light,turn_on,"Adjust <device_name> brightness to <brightness>.",8
light,turn_on,"Increase <device_name>'s brightness to <brightness>.",8
light,turn_on,"Lower the brightness of <device_name> to <brightness>.",8
light,turn_on,"Can you set <device_name>'s brightness level to <brightness> percent?",8
light,turn_on,"I'd like <device_name> at <brightness> percent brightness,8
light,turn_on,"Can you make <device_name> <color>?",8
light,turn_on,"Change the color of <device_name> to <color>.",8
light,turn_on,"Change <device_name> to a <color> hue.",8
light,turn_on,"Set <device_name> to be <color>.",8
light,turn_on,"I want <device_name> to be <color>,8
light,turn_on,"Can you make <device_name> shine in <color>?",8
light,turn_on,"Turn <device_name> to a <color> shade.",8
light,turn_on,"Turn <device_name> <color>.",8
light,turn_on,"I want <device_name> at a <color> setting.",8
light,turn_on,"Set <device_name> to a <color> color.",8
light,turn_on,"Please set <device_name> to a <color> color.",8
light,turn_on,"Make <device_name> glow <color>.",8
light,turn_on,"Could you turn <device_name> to <color>?",8
light,turn_on,"Please change <device_name> to <color>.",8
light,turn_on,"Adjust <device_name> to <color> color.",8
light,turn_on,"Switch <device_name> color to <color>.",8
light,turn_on,"Can <device_name> be <color> now?",8
light,turn_on,"Let's have <device_name> in <color>.",8
light,turn_on,"I'd like <device_name> to change to <color>.",8
light,turn_on,"Can <device_name> display a <color> light?",8
light,turn_on,"Set <device_name> color to <color>,8
Can't render this file because it contains an unexpected character in line 138 and column 17.