Datasets:
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +38 -0
- generate_home_assistant_data.py +685 -0
- home_assistant_test.json +0 -0
- home_assistant_train.json +3 -0
- piles/pile_of_device_actions.csv +373 -0
- piles/pile_of_device_names.csv +580 -0
- piles/pile_of_media_names.csv +0 -0
- piles/pile_of_responses.csv +34 -0
- piles/pile_of_room_names.csv +0 -0
- piles/pile_of_status_requests.csv +244 -0
- piles/pile_of_templated_actions.csv +223 -0
.gitattributes
CHANGED
|
@@ -53,3 +53,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 53 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 53 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
home_assistant_train.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- question-answering
|
| 5 |
+
- text-generation
|
| 6 |
+
tags:
|
| 7 |
+
- automation
|
| 8 |
+
- home
|
| 9 |
+
- assistant
|
| 10 |
+
language:
|
| 11 |
+
- en
|
| 12 |
+
pretty_name: Home Assistant Requests
|
| 13 |
+
size_categories:
|
| 14 |
+
- 10K<n<100k
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# Home Assistant Requests Dataset
|
| 18 |
+
|
| 19 |
+
This dataset contains a list of requests and responses for a user interacting with a personal assistant that controls an instance of [Home Assistant](https://www.home-assistant.io/).
|
| 20 |
+
|
| 21 |
+
The dataset is generated from the different CSV "piles". The "piles" contain different chunks of requests that are assembled into a final context that is presented to the LLM. For example, `piles/pile_of_device_names.csv` contains only names of various devices to be used as part of context as well as inserted into `piles/pile_of_templated_actions.csv` and `piles/pile_of_status_requests.csv`. The logic for assembling the final dataset from the piles is contained in [generate_home_assistant_data.py](./generate_home_assistant_data.py).
|
| 22 |
+
|
| 23 |
+
## Generating the dataset from piles
|
| 24 |
+
|
| 25 |
+
`python3 generate_home_assistant_data.py --train --test --large`
|
| 26 |
+
|
| 27 |
+
Supported dataset splits are `--test`, `--train`, & `--sample`
|
| 28 |
+
Arguments to set the train dataset size are `--small`, `--medium`, `--large`, & `--xl`.
|
| 29 |
+
|
| 30 |
+
## Merging with other instruct-datasets for training
|
| 31 |
+
|
| 32 |
+
`python3 generate_home_assistant_data.py --merge <dataset>`
|
| 33 |
+
|
| 34 |
+
Supported datasets right now are:
|
| 35 |
+
- `alpaca`
|
| 36 |
+
- `wizardlm70k`
|
| 37 |
+
|
| 38 |
+
Please note that the supported datasets all have different licenses. Be aware that the license of the resulting data mixture might be different that the license of this dataset alone.
|
generate_home_assistant_data.py
ADDED
|
@@ -0,0 +1,685 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import argparse
|
| 2 |
+
import json
|
| 3 |
+
import csv
|
| 4 |
+
import random
|
| 5 |
+
from dataclasses import dataclass
|
| 6 |
+
from datasets import load_dataset, concatenate_datasets
|
| 7 |
+
from difflib import SequenceMatcher
|
| 8 |
+
from typing import Final, Any
|
| 9 |
+
from tqdm import tqdm
|
| 10 |
+
import webcolors
|
| 11 |
+
|
| 12 |
+
# #### STATES ####
|
| 13 |
+
STATE_ON: Final = "on"
|
| 14 |
+
STATE_OFF: Final = "off"
|
| 15 |
+
STATE_UNKNOWN: Final = "unknown"
|
| 16 |
+
STATE_OPEN: Final = "open"
|
| 17 |
+
STATE_OPENING: Final = "opening"
|
| 18 |
+
STATE_CLOSED: Final = "closed"
|
| 19 |
+
STATE_CLOSING: Final = "closing"
|
| 20 |
+
STATE_BUFFERING: Final = "buffering"
|
| 21 |
+
STATE_PLAYING: Final = "playing"
|
| 22 |
+
STATE_PAUSED: Final = "paused"
|
| 23 |
+
STATE_IDLE: Final = "idle"
|
| 24 |
+
STATE_STANDBY: Final = "standby"
|
| 25 |
+
STATE_LOCKED: Final = "locked"
|
| 26 |
+
STATE_UNLOCKED: Final = "unlocked"
|
| 27 |
+
STATE_LOCKING: Final = "locking"
|
| 28 |
+
STATE_UNLOCKING: Final = "unlocking"
|
| 29 |
+
STATE_JAMMED: Final = "jammed"
|
| 30 |
+
STATE_UNAVAILABLE: Final = "unavailable"
|
| 31 |
+
STATE_OK: Final = "ok"
|
| 32 |
+
STATE_PROBLEM: Final = "problem"
|
| 33 |
+
|
| 34 |
+
def closest_color(requested_color):
|
| 35 |
+
min_colors = {}
|
| 36 |
+
for key, name in webcolors.CSS3_HEX_TO_NAMES.items():
|
| 37 |
+
r_c, g_c, b_c = webcolors.hex_to_rgb(key)
|
| 38 |
+
rd = (r_c - requested_color[0]) ** 2
|
| 39 |
+
gd = (g_c - requested_color[1]) ** 2
|
| 40 |
+
bd = (b_c - requested_color[2]) ** 2
|
| 41 |
+
min_colors[(rd + gd + bd)] = name
|
| 42 |
+
return min_colors[min(min_colors.keys())]
|
| 43 |
+
|
| 44 |
+
@dataclass
|
| 45 |
+
class DeviceType:
|
| 46 |
+
name: str
|
| 47 |
+
possible_states: list[(str, float)]
|
| 48 |
+
services: dict[str, list]
|
| 49 |
+
|
| 50 |
+
def get_all_services(self, extra_exposed_attributes):
|
| 51 |
+
result = []
|
| 52 |
+
for service in self.services.keys():
|
| 53 |
+
args = set(extra_exposed_attributes).intersection(self.services[service])
|
| 54 |
+
result.append(f"{self.name}.{service}({','.join(args)})")
|
| 55 |
+
return result
|
| 56 |
+
|
| 57 |
+
def get_random_state(self, extra_exposed_attributes=[]):
|
| 58 |
+
states = [ x[0] for x in self.possible_states ]
|
| 59 |
+
weights = [ x[1] for x in self.possible_states ]
|
| 60 |
+
return random.choices(states, weights=weights, k=1)[0]
|
| 61 |
+
|
| 62 |
+
class LightDeviceType(DeviceType):
|
| 63 |
+
def __init__(self):
|
| 64 |
+
super().__init__("light",
|
| 65 |
+
possible_states=[
|
| 66 |
+
(STATE_ON, 0.5),
|
| 67 |
+
(STATE_OFF, 0.5)
|
| 68 |
+
],
|
| 69 |
+
services={
|
| 70 |
+
"turn_on": [ "rgb_color", "brightness" ],
|
| 71 |
+
"turn_off": [],
|
| 72 |
+
"toggle": []
|
| 73 |
+
},
|
| 74 |
+
)
|
| 75 |
+
|
| 76 |
+
def get_random_state(self, extra_exposed_attributes=[]):
|
| 77 |
+
state = super().get_random_state(extra_exposed_attributes=extra_exposed_attributes)
|
| 78 |
+
|
| 79 |
+
if random.random() < 0.5 and "rgb_color" in extra_exposed_attributes:
|
| 80 |
+
random_rgb = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
|
| 81 |
+
state = state + ";" + closest_color(random_rgb) + " " + str(random_rgb)
|
| 82 |
+
|
| 83 |
+
if random.random() < 0.7 and "brightness" in extra_exposed_attributes:
|
| 84 |
+
state = state + ";" + str(random.randint(0, 100)) + "%"
|
| 85 |
+
|
| 86 |
+
return state
|
| 87 |
+
|
| 88 |
+
class ClimateDeviceType(DeviceType):
|
| 89 |
+
def __init__(self):
|
| 90 |
+
super().__init__("climate", [], {
|
| 91 |
+
"turn_on": [],
|
| 92 |
+
"turn_off": [],
|
| 93 |
+
"toggle": [],
|
| 94 |
+
"set_temperature": ["temperature"],
|
| 95 |
+
"set_humidity": ["humidity"],
|
| 96 |
+
"set_fan_mode": ["fan_mode"],
|
| 97 |
+
"set_hvac_mode": ["hvac_mode"],
|
| 98 |
+
"set_preset_mode": ["preset_mode"]
|
| 99 |
+
})
|
| 100 |
+
|
| 101 |
+
def get_random_state(self, extra_exposed_attributes=[]):
|
| 102 |
+
"""state;fan_mode;temperature;humidity"""
|
| 103 |
+
state = random.choice(["heat", "cool", "heat_cool", "off", "auto", "fan_only"])
|
| 104 |
+
|
| 105 |
+
if "fan_mode" in extra_exposed_attributes:
|
| 106 |
+
state = state + ";" + random.choice(["On Low", "On High", "Auto Low", "Auto High", "Off"])
|
| 107 |
+
if "temperature" in extra_exposed_attributes:
|
| 108 |
+
if random.random() > 0.5:
|
| 109 |
+
state = state + ";" + str(random.randint(60, 80)) + "F"
|
| 110 |
+
else:
|
| 111 |
+
state = state + ";" + str(random.randint(15, 25)) + "C"
|
| 112 |
+
if "humidity" in extra_exposed_attributes:
|
| 113 |
+
state = state + ";" + str(random.randint(10, 90)) + "%"
|
| 114 |
+
|
| 115 |
+
if "preset_mode" in extra_exposed_attributes:
|
| 116 |
+
# if it is not "on a preset" then don't add the mode
|
| 117 |
+
random_mode = random.choice(["home", "eco", "away", "auto", None, None, None])
|
| 118 |
+
if random_mode:
|
| 119 |
+
state = state + ";" + random_mode
|
| 120 |
+
|
| 121 |
+
return state
|
| 122 |
+
|
| 123 |
+
with open("piles/pile_of_media_names.csv") as f:
|
| 124 |
+
pile_of_media_names = [ x.strip() for x in f.readlines() ]
|
| 125 |
+
|
| 126 |
+
class MediaPlayerDeviceType(DeviceType):
|
| 127 |
+
def __init__(self):
|
| 128 |
+
super().__init__("media_player", [
|
| 129 |
+
(STATE_ON, 0.15),
|
| 130 |
+
(STATE_OFF, 0.54),
|
| 131 |
+
(STATE_IDLE, 0.1),
|
| 132 |
+
(STATE_PLAYING, 0.1),
|
| 133 |
+
(STATE_PAUSED, 0.05),
|
| 134 |
+
(STATE_STANDBY, 0.05),
|
| 135 |
+
(STATE_BUFFERING, 0.01),
|
| 136 |
+
], {
|
| 137 |
+
"turn_on": [],
|
| 138 |
+
"turn_off": [],
|
| 139 |
+
"toggle": [],
|
| 140 |
+
"volume_up": [],
|
| 141 |
+
"volume_down": [],
|
| 142 |
+
"volume_mute": [],
|
| 143 |
+
"media_play_pause": [],
|
| 144 |
+
"media_play": [],
|
| 145 |
+
"media_pause": [],
|
| 146 |
+
"media_stop": [],
|
| 147 |
+
"media_next_track": [],
|
| 148 |
+
"media_previous_track": []
|
| 149 |
+
})
|
| 150 |
+
|
| 151 |
+
|
| 152 |
+
def get_random_state(self, extra_exposed_attributes=[]):
|
| 153 |
+
state = super().get_random_state(extra_exposed_attributes=extra_exposed_attributes)
|
| 154 |
+
|
| 155 |
+
if "media_title" in extra_exposed_attributes and state in [STATE_PLAYING, STATE_PAUSED, STATE_BUFFERING, STATE_ON]:
|
| 156 |
+
state = state + ";" + random.choice(pile_of_media_names)
|
| 157 |
+
|
| 158 |
+
if "volume_level" in extra_exposed_attributes and state != STATE_OFF:
|
| 159 |
+
state = state + ";vol=" + str(round(random.random(), 2))
|
| 160 |
+
return state
|
| 161 |
+
|
| 162 |
+
SUPPORTED_DEVICES = {
|
| 163 |
+
"light": LightDeviceType(),
|
| 164 |
+
"switch": DeviceType(
|
| 165 |
+
name="switch",
|
| 166 |
+
possible_states=[
|
| 167 |
+
(STATE_ON, 0.5),
|
| 168 |
+
(STATE_OFF, 0.5)
|
| 169 |
+
],
|
| 170 |
+
services={
|
| 171 |
+
"turn_on": [],
|
| 172 |
+
"turn_off": [],
|
| 173 |
+
"toggle": []
|
| 174 |
+
},
|
| 175 |
+
),
|
| 176 |
+
"fan": DeviceType(
|
| 177 |
+
name="fan",
|
| 178 |
+
possible_states=[
|
| 179 |
+
(STATE_ON, 0.5),
|
| 180 |
+
(STATE_OFF, 0.5)
|
| 181 |
+
],
|
| 182 |
+
services={
|
| 183 |
+
"turn_on": [],
|
| 184 |
+
"turn_off": [],
|
| 185 |
+
"toggle": [],
|
| 186 |
+
"increase_speed": [],
|
| 187 |
+
"decrease_speed": [],
|
| 188 |
+
},
|
| 189 |
+
),
|
| 190 |
+
"garage_door": DeviceType(
|
| 191 |
+
name="garage_door",
|
| 192 |
+
possible_states=[
|
| 193 |
+
(STATE_OPEN, 0.49),
|
| 194 |
+
(STATE_CLOSED, 0.49),
|
| 195 |
+
(STATE_OPENING, 0.01),
|
| 196 |
+
(STATE_CLOSING, 0.01)
|
| 197 |
+
],
|
| 198 |
+
services={
|
| 199 |
+
"open_cover": [],
|
| 200 |
+
"close_cover": [],
|
| 201 |
+
"stop_cover": [],
|
| 202 |
+
"toggle": [],
|
| 203 |
+
},
|
| 204 |
+
),
|
| 205 |
+
"blinds": DeviceType(
|
| 206 |
+
name="blinds",
|
| 207 |
+
possible_states=[
|
| 208 |
+
(STATE_OPEN, 0.49),
|
| 209 |
+
(STATE_CLOSED, 0.49),
|
| 210 |
+
(STATE_OPENING, 0.01),
|
| 211 |
+
(STATE_CLOSING, 0.01)
|
| 212 |
+
],
|
| 213 |
+
services={
|
| 214 |
+
"open_cover": [],
|
| 215 |
+
"close_cover": [],
|
| 216 |
+
"stop_cover": [],
|
| 217 |
+
"toggle": [],
|
| 218 |
+
},
|
| 219 |
+
),
|
| 220 |
+
"lock": DeviceType(
|
| 221 |
+
name="lock",
|
| 222 |
+
possible_states=[
|
| 223 |
+
(STATE_LOCKED, 0.5),
|
| 224 |
+
(STATE_UNLOCKED, 0.5),
|
| 225 |
+
],
|
| 226 |
+
services={
|
| 227 |
+
"lock": [],
|
| 228 |
+
"unlock": [],
|
| 229 |
+
},
|
| 230 |
+
),
|
| 231 |
+
"media_player": MediaPlayerDeviceType(),
|
| 232 |
+
"climate": ClimateDeviceType()
|
| 233 |
+
}
|
| 234 |
+
|
| 235 |
+
stacks_of_device_names = { x: [] for x in SUPPORTED_DEVICES.keys() }
|
| 236 |
+
with open("piles/pile_of_device_names.csv") as f:
|
| 237 |
+
reader = csv.DictReader(f)
|
| 238 |
+
pile_of_device_names = list(reader)
|
| 239 |
+
for device_dict in pile_of_device_names:
|
| 240 |
+
try:
|
| 241 |
+
device_type = device_dict["device_name"].split(".")[0]
|
| 242 |
+
stacks_of_device_names[device_type].append(device_dict)
|
| 243 |
+
except KeyError as ex:
|
| 244 |
+
print(ex)
|
| 245 |
+
|
| 246 |
+
with open("piles/pile_of_templated_actions.csv") as f:
|
| 247 |
+
reader = csv.DictReader(f)
|
| 248 |
+
pile_of_templated_actions = list(reader)
|
| 249 |
+
processed_pile_of_templated_actions = []
|
| 250 |
+
for action in pile_of_templated_actions:
|
| 251 |
+
for x in range(int(action["multiplier"])):
|
| 252 |
+
processed_pile_of_templated_actions.append(action)
|
| 253 |
+
|
| 254 |
+
pile_of_templated_actions = processed_pile_of_templated_actions
|
| 255 |
+
|
| 256 |
+
with open("piles/pile_of_device_actions.csv") as f:
|
| 257 |
+
reader = csv.DictReader(f)
|
| 258 |
+
pile_of_device_actions = list(reader)
|
| 259 |
+
|
| 260 |
+
with open("piles/pile_of_responses.csv") as f:
|
| 261 |
+
reader = csv.DictReader(f)
|
| 262 |
+
raw_pile_of_responses = list(reader)
|
| 263 |
+
|
| 264 |
+
pile_of_responses = {}
|
| 265 |
+
for raw in raw_pile_of_responses:
|
| 266 |
+
if raw["device_type"] not in pile_of_responses:
|
| 267 |
+
pile_of_responses[raw["device_type"]] = {}
|
| 268 |
+
pile_of_responses[raw["device_type"]][raw["service"]] = [ raw["response_1"], raw["response_2"], raw["response_3"] ]
|
| 269 |
+
|
| 270 |
+
with open("piles/pile_of_status_requests.csv") as f:
|
| 271 |
+
reader = csv.DictReader(f)
|
| 272 |
+
pile_of_status_requests = list(reader)
|
| 273 |
+
|
| 274 |
+
def format_device_line(*, device_name: str, friendly_name: str, state: str):
|
| 275 |
+
return (f"{device_name} '{friendly_name}' = {state}")
|
| 276 |
+
|
| 277 |
+
# generate a random list of devices for the context
|
| 278 |
+
def random_device_list(max_devices: int, avoid_device_names: list[str]):
|
| 279 |
+
num_devices = random.randint(2, max_devices)
|
| 280 |
+
|
| 281 |
+
local_device_names = { k: v[:] for k,v in stacks_of_device_names.items() }
|
| 282 |
+
|
| 283 |
+
avoid_climate = False
|
| 284 |
+
for avoid_device in avoid_device_names:
|
| 285 |
+
avoid_type = avoid_device.split(".")[0]
|
| 286 |
+
|
| 287 |
+
filtered_possible_devices = []
|
| 288 |
+
for possible_device in local_device_names[avoid_type]:
|
| 289 |
+
similarity_ratio = SequenceMatcher(None, avoid_device, possible_device["device_name"].split(".")[1]).ratio()
|
| 290 |
+
|
| 291 |
+
if similarity_ratio < 0.4:
|
| 292 |
+
filtered_possible_devices.append(possible_device)
|
| 293 |
+
local_device_names[avoid_type] = filtered_possible_devices
|
| 294 |
+
|
| 295 |
+
if avoid_type == "climate":
|
| 296 |
+
avoid_climate = True
|
| 297 |
+
|
| 298 |
+
possible_choices = []
|
| 299 |
+
for device_type in local_device_names.keys():
|
| 300 |
+
possible_choices.extend(local_device_names[device_type])
|
| 301 |
+
|
| 302 |
+
|
| 303 |
+
device_types = set()
|
| 304 |
+
device_list = []
|
| 305 |
+
device_lines = []
|
| 306 |
+
# TODO: randomly pick attributes for this list
|
| 307 |
+
extra_exposed_attributes = ["rgb_color", "brightness", "temperature", "humidity", "fan_mode", "media_title", "volume_level"]
|
| 308 |
+
|
| 309 |
+
while len(device_list) < num_devices:
|
| 310 |
+
choice = random.choice(possible_choices)
|
| 311 |
+
if choice["device_name"] in device_list:
|
| 312 |
+
continue
|
| 313 |
+
|
| 314 |
+
try:
|
| 315 |
+
device_name = choice["device_name"]
|
| 316 |
+
device_type = device_name.split(".")[0]
|
| 317 |
+
friendly_name = choice["description"]
|
| 318 |
+
|
| 319 |
+
# don't add random thermostats. we need to be careful about how we handle multiple thermostats
|
| 320 |
+
if avoid_climate and device_type == "climate":
|
| 321 |
+
continue
|
| 322 |
+
|
| 323 |
+
state = SUPPORTED_DEVICES[device_type].get_random_state(extra_exposed_attributes=extra_exposed_attributes)
|
| 324 |
+
device_lines.append(format_device_line(
|
| 325 |
+
device_name=device_name,
|
| 326 |
+
friendly_name=friendly_name,
|
| 327 |
+
state=state
|
| 328 |
+
))
|
| 329 |
+
device_list.append(device_name)
|
| 330 |
+
device_types.add(device_type)
|
| 331 |
+
except Exception as ex:
|
| 332 |
+
print(f"bad device name: {choice}")
|
| 333 |
+
print(repr(ex))
|
| 334 |
+
|
| 335 |
+
return device_lines, list(device_types), list(extra_exposed_attributes)
|
| 336 |
+
|
| 337 |
+
def generate_static_example(action: dict, max_devices: int = 32):
|
| 338 |
+
question = action["english_phrase"]
|
| 339 |
+
target_device = action["device_name"]
|
| 340 |
+
device_type = target_device.split(".")[0]
|
| 341 |
+
service_name = f"{device_type}.{action['service_name']}"
|
| 342 |
+
friendly_name = target_device.split(".")[1].replace("_", " ")
|
| 343 |
+
|
| 344 |
+
device_list, device_types, extra_exposed_attributes = random_device_list(
|
| 345 |
+
max_devices=max_devices, avoid_device_names=[target_device])
|
| 346 |
+
|
| 347 |
+
# insert our target device somewhere random in the list
|
| 348 |
+
index = random.randint(0, len(device_list))
|
| 349 |
+
state = SUPPORTED_DEVICES[device_type].get_random_state(extra_exposed_attributes=extra_exposed_attributes)
|
| 350 |
+
|
| 351 |
+
device_list.insert(index, format_device_line(
|
| 352 |
+
device_name=target_device,
|
| 353 |
+
friendly_name=friendly_name,
|
| 354 |
+
state=state
|
| 355 |
+
))
|
| 356 |
+
|
| 357 |
+
# gather a list of all available services
|
| 358 |
+
available_services = []
|
| 359 |
+
for x in set(device_types + [device_type]):
|
| 360 |
+
available_services.extend(SUPPORTED_DEVICES[x].get_all_services(extra_exposed_attributes))
|
| 361 |
+
|
| 362 |
+
return {
|
| 363 |
+
"states": device_list,
|
| 364 |
+
"available_services": list(available_services),
|
| 365 |
+
"question": question.lower(),
|
| 366 |
+
"answers": [ random.choice(pile_of_responses[device_type][action["service_name"]]).lower() ],
|
| 367 |
+
"service_calls": [ { "service": service_name, "target_device": target_device } ]
|
| 368 |
+
}
|
| 369 |
+
|
| 370 |
+
def generate_templated_example(template: dict, max_devices: int = 32):
|
| 371 |
+
template_device_types: list[str] = template["device_type"].split("|")
|
| 372 |
+
service_names: list[str] = [ f"{x}.{y}" for x, y in zip(template_device_types, template["service"].split("|")) ]
|
| 373 |
+
question_template: str = template["english_phrase"]
|
| 374 |
+
answer_template: str = template["assistant_response"]
|
| 375 |
+
|
| 376 |
+
# choose a random device for this template
|
| 377 |
+
chosen_devices = []
|
| 378 |
+
for device_type in template_device_types:
|
| 379 |
+
device_dict = random.choice(stacks_of_device_names[device_type])
|
| 380 |
+
device_dict["type"] = device_type
|
| 381 |
+
chosen_devices.append(device_dict)
|
| 382 |
+
|
| 383 |
+
device_list, device_types, extra_exposed_attributes = random_device_list(
|
| 384 |
+
max_devices=max_devices, avoid_device_names=[d["device_name"] for d in chosen_devices])
|
| 385 |
+
|
| 386 |
+
# insert our target device somewhere random in the list
|
| 387 |
+
for device_dict in chosen_devices:
|
| 388 |
+
index = random.randint(0, len(device_list))
|
| 389 |
+
if "<brightness>" in question_template and "brightness" not in extra_exposed_attributes:
|
| 390 |
+
extra_exposed_attributes.append("brightness")
|
| 391 |
+
if "<color>" in question_template and "rgb_color" not in extra_exposed_attributes:
|
| 392 |
+
extra_exposed_attributes.append("rgb_color")
|
| 393 |
+
if ("<temp_f>" in question_template or "<temp_c>" in question_template) \
|
| 394 |
+
and "temperature" not in extra_exposed_attributes:
|
| 395 |
+
extra_exposed_attributes.append("temperature")
|
| 396 |
+
if "<humidity>" in question_template and "humidity" not in extra_exposed_attributes:
|
| 397 |
+
extra_exposed_attributes.append("humidity")
|
| 398 |
+
|
| 399 |
+
state = SUPPORTED_DEVICES[device_dict["type"]].get_random_state(extra_exposed_attributes=extra_exposed_attributes)
|
| 400 |
+
device_name = device_dict["device_name"]
|
| 401 |
+
friendly_name = device_dict["description"]
|
| 402 |
+
|
| 403 |
+
device_list.insert(index, format_device_line(
|
| 404 |
+
device_name=device_name,
|
| 405 |
+
friendly_name=friendly_name,
|
| 406 |
+
state=state
|
| 407 |
+
))
|
| 408 |
+
|
| 409 |
+
# gather a list of all available services with arguments
|
| 410 |
+
available_services = []
|
| 411 |
+
for x in set(device_types + template_device_types):
|
| 412 |
+
available_services.extend(SUPPORTED_DEVICES[x].get_all_services(extra_exposed_attributes))
|
| 413 |
+
|
| 414 |
+
# generate the question
|
| 415 |
+
if len(template_device_types) == 1:
|
| 416 |
+
question = question_template.replace("<device_name>", chosen_devices[0]["description"])
|
| 417 |
+
answer = answer_template.replace("<device_name>", chosen_devices[0]["description"])
|
| 418 |
+
else:
|
| 419 |
+
question = question_template
|
| 420 |
+
answer = answer_template
|
| 421 |
+
for i in range(len(template_device_types)):
|
| 422 |
+
question = question.replace(f"<device_name{(i + 1)}>", chosen_devices[i]["description"])
|
| 423 |
+
answer = answer.replace(f"<device_name{(i + 1)}>", chosen_devices[i]["description"])
|
| 424 |
+
|
| 425 |
+
# generate the list of service calls and answers
|
| 426 |
+
service_calls = []
|
| 427 |
+
for device_dict, service in zip(chosen_devices, service_names):
|
| 428 |
+
service_calls.append({ "service": service, "target_device": device_dict["device_name"] })
|
| 429 |
+
|
| 430 |
+
if any(["climate" in service for service in service_names ]):
|
| 431 |
+
if "<temp_f>" in question:
|
| 432 |
+
temp_f = random.randint(60, 80)
|
| 433 |
+
question = question.replace("<temp_f>", str(temp_f))
|
| 434 |
+
answer = answer.replace("<temp_f>", str(temp_f))
|
| 435 |
+
service_calls = [ { **call, "temperature": temp_f} for call in service_calls ]
|
| 436 |
+
|
| 437 |
+
if "<temp_c>" in question:
|
| 438 |
+
temp_c = random.randint(15, 25)
|
| 439 |
+
question = question.replace("<temp_c>", str(temp_c))
|
| 440 |
+
answer = answer.replace("<temp_c>", str(temp_c))
|
| 441 |
+
service_calls = [ { **call, "temperature": temp_c} for call in service_calls ]
|
| 442 |
+
|
| 443 |
+
if "<humidity>" in question:
|
| 444 |
+
humidity = random.randint(0, 20) * 5
|
| 445 |
+
question = question.replace("<humidity>", str(humidity))
|
| 446 |
+
answer = answer.replace("<humidity>", str(humidity))
|
| 447 |
+
service_calls = [ { **call, "humidity": humidity} for call in service_calls ]
|
| 448 |
+
|
| 449 |
+
if any(["light" in service for service in service_names ]):
|
| 450 |
+
if "<brightness>" in question:
|
| 451 |
+
brightness = random.randint(0, 100)
|
| 452 |
+
question = question.replace("<brightness>", str(brightness))
|
| 453 |
+
answer = answer.replace("<brightness>", str(brightness))
|
| 454 |
+
service_calls = [ { **call, "brightness": round(brightness / 100, 2) } for call in service_calls ]
|
| 455 |
+
|
| 456 |
+
if "<color>" in question:
|
| 457 |
+
random_rgb = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
|
| 458 |
+
random_rgb_name = closest_color(random_rgb)
|
| 459 |
+
actual_random_rgb = webcolors.name_to_rgb(random_rgb_name)
|
| 460 |
+
actual_random_rgb = (actual_random_rgb.red, actual_random_rgb.green, actual_random_rgb.blue)
|
| 461 |
+
question = question.replace("<color>", str(random_rgb_name))
|
| 462 |
+
answer = answer.replace("<color>", str(random_rgb_name))
|
| 463 |
+
service_calls = [ { **call, "rgb_color": str(actual_random_rgb) } for call in service_calls ]
|
| 464 |
+
|
| 465 |
+
|
| 466 |
+
return {
|
| 467 |
+
"states": device_list,
|
| 468 |
+
"available_services": list(available_services),
|
| 469 |
+
"question": question.lower(),
|
| 470 |
+
"answers": [ answer.lower() ],
|
| 471 |
+
"service_calls": service_calls
|
| 472 |
+
}
|
| 473 |
+
|
| 474 |
+
def generate_status_request(template: dict, max_devices: int = 32):
|
| 475 |
+
device_type: str = template["device_type"]
|
| 476 |
+
state_name: str = template["state"]
|
| 477 |
+
question_template: str = template["english_phrase"]
|
| 478 |
+
answer_template: str = template["assistant_response"]
|
| 479 |
+
|
| 480 |
+
# choose a random device for this template
|
| 481 |
+
chosen_device = random.choice(stacks_of_device_names[device_type])
|
| 482 |
+
|
| 483 |
+
# build a random list of devices
|
| 484 |
+
device_list, device_types, extra_exposed_attributes = random_device_list(max_devices=max_devices, avoid_device_names=[ chosen_device["device_name"] ])
|
| 485 |
+
|
| 486 |
+
# insert our target device somewhere random in the list
|
| 487 |
+
index = random.randint(0, len(device_list))
|
| 488 |
+
|
| 489 |
+
# generate the question
|
| 490 |
+
question = question_template.replace("<device_name>", chosen_device["description"])
|
| 491 |
+
answer = answer_template.replace("<device_name>", chosen_device["description"])
|
| 492 |
+
|
| 493 |
+
# insert other templated variables
|
| 494 |
+
if device_type == "climate":
|
| 495 |
+
temp_f = random.randint(60, 80)
|
| 496 |
+
answer = answer.replace("<temp_f>", str(temp_f))
|
| 497 |
+
state_name = state_name.replace("<temp_f>", str(temp_f))
|
| 498 |
+
|
| 499 |
+
temp_c = random.randint(15, 25)
|
| 500 |
+
answer = answer.replace("<temp_c>", str(temp_c))
|
| 501 |
+
state_name = state_name.replace("<temp_c>", str(temp_f))
|
| 502 |
+
|
| 503 |
+
humidity = random.randint(0, 20) * 5
|
| 504 |
+
answer = answer.replace("<humidity>", str(humidity))
|
| 505 |
+
state_name = state_name.replace("<humidity>", str(temp_f))
|
| 506 |
+
|
| 507 |
+
if device_type == "light":
|
| 508 |
+
brightness = random.randint(0, 100)
|
| 509 |
+
answer = answer.replace("<brightness>", str(brightness))
|
| 510 |
+
state_name = state_name.replace("<brightness>", str(brightness))
|
| 511 |
+
|
| 512 |
+
random_rgb = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))
|
| 513 |
+
random_rgb_name = closest_color(random_rgb)
|
| 514 |
+
actual_random_rgb = webcolors.name_to_rgb(random_rgb_name)
|
| 515 |
+
actual_random_rgb = (actual_random_rgb.red, actual_random_rgb.green, actual_random_rgb.blue)
|
| 516 |
+
state_name = state_name.replace("<color>", str(random_rgb_name) + " " + str(actual_random_rgb))
|
| 517 |
+
answer = answer.replace("<color>", str(random_rgb_name))
|
| 518 |
+
|
| 519 |
+
if device_type == "media_player":
|
| 520 |
+
volume = random.randint(0, 100)
|
| 521 |
+
random_media = random.choice(pile_of_media_names)
|
| 522 |
+
|
| 523 |
+
answer = answer.replace("<volume>", str(volume) + "%")
|
| 524 |
+
state_name = state_name.replace("<volume>", str(volume) + "%")
|
| 525 |
+
|
| 526 |
+
answer = answer.replace("<media>", random_media)
|
| 527 |
+
state_name = state_name.replace("<media>", random_media)
|
| 528 |
+
|
| 529 |
+
device_list.insert(index, f"{chosen_device['device_name']} = {state_name}")
|
| 530 |
+
|
| 531 |
+
# gather a list of all available services
|
| 532 |
+
available_services = []
|
| 533 |
+
for x in set(device_types + [device_type]):
|
| 534 |
+
available_services.extend(SUPPORTED_DEVICES[x].get_all_services(extra_exposed_attributes))
|
| 535 |
+
|
| 536 |
+
return {
|
| 537 |
+
"states": device_list,
|
| 538 |
+
"available_services": list(available_services),
|
| 539 |
+
"question": question.lower(),
|
| 540 |
+
"answers": [ answer.lower() ],
|
| 541 |
+
"service_calls": []
|
| 542 |
+
}
|
| 543 |
+
|
| 544 |
+
def format_example(example):
|
| 545 |
+
sys_prompt = "You are 'Al', a helpful AI Assistant that controls the devices in a house. Complete the following task as instructed or answer the following question with the information provided only."
|
| 546 |
+
services_block = "Services: " + ", ".join(sorted(example["available_services"]))
|
| 547 |
+
states_block = "Devices:\n" + "\n".join(example["states"])
|
| 548 |
+
question = example["question"]
|
| 549 |
+
answers = " ".join(example["answers"])
|
| 550 |
+
|
| 551 |
+
system_block = "\n".join([ "<|im_start|>system", sys_prompt, services_block, states_block ]) + "<|im_end|>"
|
| 552 |
+
user_block = "\n".join([ "<|im_start|>user", question]) + "<|im_end|>"
|
| 553 |
+
|
| 554 |
+
assistant_block = "<|im_start|>assistant\n" + answers
|
| 555 |
+
if len(example["service_calls"]) > 0:
|
| 556 |
+
json_calls = [ json.dumps(x) for x in example["service_calls"] ]
|
| 557 |
+
code_block = "\n```homeassistant\n" + "\n".join(json_calls) + "\n```"
|
| 558 |
+
assistant_block = assistant_block + code_block
|
| 559 |
+
assistant_block = assistant_block + "<|im_end|>"
|
| 560 |
+
|
| 561 |
+
example_lines = [system_block, user_block, assistant_block]
|
| 562 |
+
result = "\n".join(example_lines)
|
| 563 |
+
if "<device_name" in result:
|
| 564 |
+
print("bad templating")
|
| 565 |
+
|
| 566 |
+
# replace aliases with their actual values
|
| 567 |
+
result = result.replace("blinds.", "cover.")
|
| 568 |
+
result = result.replace("garage_door.", "cover.")
|
| 569 |
+
return result
|
| 570 |
+
|
| 571 |
+
|
| 572 |
+
def generate_example_file(filename: str, seed: int, *, static_factor: int, template_factor: int, status_request_factor: int):
|
| 573 |
+
random.seed(seed)
|
| 574 |
+
|
| 575 |
+
print("Generating...")
|
| 576 |
+
|
| 577 |
+
def run_factor_times(func, examples, data, factor):
|
| 578 |
+
if factor >= 1:
|
| 579 |
+
for i in range(factor):
|
| 580 |
+
examples.append({ "text": format_example(func(data)) })
|
| 581 |
+
else:
|
| 582 |
+
if random.random() < factor:
|
| 583 |
+
examples.append({ "text": format_example(func(data)) })
|
| 584 |
+
|
| 585 |
+
generated_examples = []
|
| 586 |
+
for action in tqdm(pile_of_device_actions):
|
| 587 |
+
run_factor_times(generate_static_example, generated_examples, action, static_factor)
|
| 588 |
+
|
| 589 |
+
for templated_action in tqdm(pile_of_templated_actions):
|
| 590 |
+
run_factor_times(generate_templated_example, generated_examples, templated_action, template_factor)
|
| 591 |
+
|
| 592 |
+
for status_request in tqdm(pile_of_status_requests):
|
| 593 |
+
run_factor_times(generate_status_request, generated_examples, status_request, status_request_factor)
|
| 594 |
+
|
| 595 |
+
print(f"Generated {len(generated_examples)} examples. Saving...")
|
| 596 |
+
with open(f"{filename}.json", "w") as f:
|
| 597 |
+
json.dump(generated_examples, f, indent=4)
|
| 598 |
+
|
| 599 |
+
print("Done!")
|
| 600 |
+
|
| 601 |
+
def format_alpaca(example):
|
| 602 |
+
question = example["instruction"]
|
| 603 |
+
if "input" in example and example["input"]:
|
| 604 |
+
question = question = "\n" + example["input"]
|
| 605 |
+
|
| 606 |
+
answer = example["output"]
|
| 607 |
+
|
| 608 |
+
device_list, device_types, extra_exposed_attributes = random_device_list(
|
| 609 |
+
max_devices=32, avoid_device_names=[])
|
| 610 |
+
|
| 611 |
+
available_services = []
|
| 612 |
+
for x in device_types:
|
| 613 |
+
available_services.extend(SUPPORTED_DEVICES[x].get_all_services(extra_exposed_attributes))
|
| 614 |
+
|
| 615 |
+
text = format_example(example={
|
| 616 |
+
"states": device_list,
|
| 617 |
+
"available_services": list(available_services),
|
| 618 |
+
"question": question,
|
| 619 |
+
"answers": [ answer ],
|
| 620 |
+
"service_calls": []
|
| 621 |
+
})
|
| 622 |
+
|
| 623 |
+
result = {
|
| 624 |
+
"text": text
|
| 625 |
+
}
|
| 626 |
+
|
| 627 |
+
return result
|
| 628 |
+
|
| 629 |
+
def merge_with_dataset(dataset_name, seed, outupt_name, format_function, dataset_column_names):
|
| 630 |
+
alpaca_dataset = load_dataset(dataset_name)["train"].train_test_split(test_size=0.1)
|
| 631 |
+
home_assistant_dataset = load_dataset("json", data_files={ "train": "home_assistant_train.json", "test": "home_assistant_test.json" })
|
| 632 |
+
|
| 633 |
+
random.seed(seed)
|
| 634 |
+
|
| 635 |
+
alpaca_dataset = alpaca_dataset.map(format_function).remove_columns(dataset_column_names)
|
| 636 |
+
|
| 637 |
+
combined_dataset_train = concatenate_datasets([home_assistant_dataset["train"], alpaca_dataset["train"]]).shuffle(seed=42)
|
| 638 |
+
combined_dataset_test = concatenate_datasets([home_assistant_dataset["test"], alpaca_dataset["test"]]).shuffle(seed=42)
|
| 639 |
+
|
| 640 |
+
combined_dataset_train.to_json(f"home_assistant_{outupt_name}_merged_train.json")
|
| 641 |
+
combined_dataset_test.to_json(f"home_assistant_{outupt_name}_merged_test.json")
|
| 642 |
+
|
| 643 |
+
|
| 644 |
+
# TODO: add examples for ambiguous requests. asking a clarifying question
|
| 645 |
+
# TODO: make more randomized names for devices (random words or people's names)
|
| 646 |
+
# TODO: answer questions about more than one thing in the state list at once
|
| 647 |
+
# TODO: add examples for rooms/groups of devices. i.e. "turn off all the lights in the kitchen"
|
| 648 |
+
def main():
|
| 649 |
+
parser = argparse.ArgumentParser(description="Generate the full dataset from the CSV piles")
|
| 650 |
+
parser.add_argument("--sample", action="store_true", help="Set this flag to enable generation of the train dataset.")
|
| 651 |
+
parser.add_argument("--test", action="store_true", help="Set this flag to enable generation of the train dataset..")
|
| 652 |
+
parser.add_argument("--train", action="store_true", help="Set this flag to enable generation of the train dataset.")
|
| 653 |
+
parser.add_argument("--merge", help="Set this flag to merge the generated datasets with the specified dataset.")
|
| 654 |
+
train_size_group = parser.add_mutually_exclusive_group()
|
| 655 |
+
train_size_group.add_argument('--small', action='store_const', const='small', dest='size')
|
| 656 |
+
train_size_group.add_argument('--medium', action='store_const', const='medium', dest='size')
|
| 657 |
+
train_size_group.add_argument('--large', action='store_const', const='large', dest='size')
|
| 658 |
+
train_size_group.add_argument('--xl', action='store_const', const='xl', dest='size')
|
| 659 |
+
|
| 660 |
+
args = parser.parse_args()
|
| 661 |
+
|
| 662 |
+
if args.sample:
|
| 663 |
+
generate_example_file("sample", 42, static_factor=1, template_factor=1, status_request_factor=1)
|
| 664 |
+
if args.train:
|
| 665 |
+
# TODO: add small, medium, large cli clags
|
| 666 |
+
if args.size == "small":
|
| 667 |
+
generate_example_file("home_assistant_train", 42, static_factor=1, template_factor=10, status_request_factor=8)
|
| 668 |
+
elif args.size == "medium":
|
| 669 |
+
generate_example_file("home_assistant_train", 42, static_factor=5, template_factor=15, status_request_factor=12)
|
| 670 |
+
elif args.size == "large":
|
| 671 |
+
generate_example_file("home_assistant_train", 42, static_factor=5, template_factor=20, status_request_factor=15)
|
| 672 |
+
elif args.size == "xl":
|
| 673 |
+
generate_example_file("home_assistant_train", 42, static_factor=7, template_factor=25, status_request_factor=18)
|
| 674 |
+
else:
|
| 675 |
+
raise Exception(f"Unrecognized dataset size: {args.size}")
|
| 676 |
+
if args.test:
|
| 677 |
+
generate_example_file("home_assistant_test", 12345, static_factor=0.25, template_factor=3, status_request_factor=2)
|
| 678 |
+
|
| 679 |
+
if args.merge == "alpaca":
|
| 680 |
+
merge_with_dataset("yahma/alpaca-cleaned", 42, "alpaca", format_alpaca, ["input", "output", "instruction"])
|
| 681 |
+
elif args.merge == "wizardlm70k":
|
| 682 |
+
merge_with_dataset("WizardLM/WizardLM_evol_instruct_70k", 42, "wizardlm70k", format_alpaca, ["output", "instruction"])
|
| 683 |
+
|
| 684 |
+
if __name__ == "__main__":
|
| 685 |
+
main()
|
home_assistant_test.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
home_assistant_train.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6988cbadbd9f33d1aee5d417f527598bed60d661200c39b1697e4ae573d45ff
|
| 3 |
+
size 47109522
|
piles/pile_of_device_actions.csv
ADDED
|
@@ -0,0 +1,373 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
device_name,english_phrase,service_name
|
| 2 |
+
blinds.kitchen,"Could you raise the kitchen blinds",open
|
| 3 |
+
blinds.kitchen,"Lower the kitchen blinds",close
|
| 4 |
+
blinds.kitchen,"Stop the kitchen blinds where they are",stop
|
| 5 |
+
blinds.kitchen,"Switch the state of the kitchen blinds",toggle
|
| 6 |
+
blinds.living_room,"Close the living room blinds",close
|
| 7 |
+
blinds.living_room,"Open the living room blinds",open
|
| 8 |
+
blinds.living_room,"Stop adjusting the living room blinds",stop
|
| 9 |
+
blinds.living_room,"Toggle the living room blinds",toggle
|
| 10 |
+
blinds.master_bedroom,"Lift the master bedroom blinds",open
|
| 11 |
+
blinds.master_bedroom,"Please halt the master bedroom blinds",stop
|
| 12 |
+
blinds.master_bedroom,"Reverse the master bedroom blinds",toggle
|
| 13 |
+
blinds.master_bedroom,"Shut the master bedroom blinds",close
|
| 14 |
+
fan.attic_1,"Disable the attic fan",turn_off
|
| 15 |
+
fan.attic_1,"Increase speed of the attic fan",increase_speed
|
| 16 |
+
fan.attic_1,"Slow down the attic fan",decrease_speed
|
| 17 |
+
fan.attic_1,"Slow down the attic fan",decrease_speed
|
| 18 |
+
fan.attic_1,"Turn down the attic fan",decrease_speed
|
| 19 |
+
fan.attic_2,"Toggle the attic fan",toggle
|
| 20 |
+
fan.attic_2,"Toggle the attic fan",toggle
|
| 21 |
+
fan.attic,"Accelerate the fan in the attic",increase_speed
|
| 22 |
+
fan.attic,"Change the fan status in the attic",toggle
|
| 23 |
+
fan.attic,"Slow down the fan in the attic",decrease_speed
|
| 24 |
+
fan.basement,"Toggle the basement fan",toggle
|
| 25 |
+
fan.basement,"Toggle the basement fan",toggle
|
| 26 |
+
fan.bathroom,"Activate the bathroom fan",turn_on
|
| 27 |
+
fan.bathroom,"Turn on the bathroom fan",turn_on
|
| 28 |
+
fan.bathroom,"Turn on the bathroom fan",turn_on
|
| 29 |
+
fan.bedroom_master,"Activate the master bedroom fan",turn_on
|
| 30 |
+
fan.bedroom_master,"Deactivate the master bedroom fan",turn_off
|
| 31 |
+
fan.bedroom_master,"Ramp up the master bedroom fan speed",increase_speed
|
| 32 |
+
fan.bedroom_master,"Slow down the master bedroom fan",decrease_speed
|
| 33 |
+
fan.bedroom_master,"Switch the state of the master bedroom fan",toggle
|
| 34 |
+
fan.bedroom,"Toggle the bedroom fan",toggle
|
| 35 |
+
fan.bedroom,"Toggle the bedroom fan",toggle
|
| 36 |
+
fan.bedroom,"Toggle the bedroom fan",toggle
|
| 37 |
+
fan.dining_area,"Please switch off the dining area fan",turn_off
|
| 38 |
+
fan.dining_area,"Please switch on the dining area fan",turn_on
|
| 39 |
+
fan.dining_room,"Switch off the dining room fan",turn_off
|
| 40 |
+
fan.dining_table_above,"Please toggle the fan above the dining table",toggle
|
| 41 |
+
fan.driveway,"Flip the driveway fan",toggle
|
| 42 |
+
fan.garage,"Flip the fan in the garage",toggle
|
| 43 |
+
fan.garage,"Shut down the garage fan",turn_off
|
| 44 |
+
fan.garage,"Switch off the garage fan",turn_off
|
| 45 |
+
fan.garage,"Switch off the garage fan",turn_off
|
| 46 |
+
fan.garage,"Turn down the fan in the garage",decrease_speed
|
| 47 |
+
fan.garage,"Turn on the garage fan",turn_on
|
| 48 |
+
fan.garage,"Turn up the fan in the garage",increase_speed
|
| 49 |
+
fan.guest_room,"Can you toggle the fan in the guest room",toggle
|
| 50 |
+
fan.guest_room,"Decrease the fan speed in the guest room",decrease_speed
|
| 51 |
+
fan.guest_room,"Increase the fan speed in the guest room",increase_speed
|
| 52 |
+
fan.guest_room,"Switch off the guest room fan",turn_off
|
| 53 |
+
fan.hallway,"Boost the fan speed in the hallway",increase_speed
|
| 54 |
+
fan.hallway,"Enable the hallway fan",turn_on
|
| 55 |
+
fan.hallway,"Lower the fan speed in the hallway",decrease_speed
|
| 56 |
+
fan.hallway,"Switch the state of the fan in the hallway",toggle
|
| 57 |
+
fan.kitchen,"Enable the kitchen fan",turn_on
|
| 58 |
+
fan.kitchen,"Slow down the kitchen fan",decrease_speed
|
| 59 |
+
fan.kitchen,"Slow down the kitchen fan",decrease_speed
|
| 60 |
+
fan.kitchen,"Switch off the kitchen fan",turn_off
|
| 61 |
+
fan.kitchen,"Switch off the kitchen fan",turn_off
|
| 62 |
+
fan.kitchen,"Toggle the kitchen fan",toggle
|
| 63 |
+
fan.kitchen,"Turn down the kitchen fan",decrease_speed
|
| 64 |
+
fan.living_room,"Decrease the speed of the living room fan",decrease_speed
|
| 65 |
+
fan.living_room,"Increase the speed of the living room fan",increase_speed
|
| 66 |
+
fan.living_room,"Start the living room fan",turn_on
|
| 67 |
+
fan.living_room,"Toggle the fan in the living room",toggle
|
| 68 |
+
fan.living_room,"Turn down the living room fan",decrease_speed
|
| 69 |
+
fan.living_room,"Turn off the living room fan",turn_off
|
| 70 |
+
fan.living_room,"Turn off the living room fan",turn_off
|
| 71 |
+
fan.living_room,"Turn on the living room fan",turn_on
|
| 72 |
+
fan.living_room,"Turn on the living room fan",turn_on
|
| 73 |
+
fan.office,"Could you disable the office fan",turn_off
|
| 74 |
+
fan.office,"Could you enable the office fan",turn_on
|
| 75 |
+
fan.office,"Toggle the office fan",toggle
|
| 76 |
+
fan.office,"Toggle the office fan",toggle
|
| 77 |
+
fan.office,"Toggle the office fan",toggle
|
| 78 |
+
fan.office,"Turn off the office fan",turn_off
|
| 79 |
+
fan.office,"Turn off the office fan",turn_off
|
| 80 |
+
fan.outdoor,"Toggle the outdoor fan",toggle
|
| 81 |
+
fan.patio,"Turn off the patio fan",turn_off
|
| 82 |
+
fan.pool,"Change the status of the pool fan",toggle
|
| 83 |
+
fan.shed,"Switch the shed fan on or off",toggle
|
| 84 |
+
fan.study,"Activate the study fan",turn_on
|
| 85 |
+
fan.study,"Alter the fan state in the study",toggle
|
| 86 |
+
fan.study,"Ramp up the fan speed in the study",increase_speed
|
| 87 |
+
fan.study,"Reduce the fan speed in the study",decrease_speed
|
| 88 |
+
fan.study,"Switch off the study fan",turn_off
|
| 89 |
+
fan.study,"Switch on the study fan",turn_on
|
| 90 |
+
fan.study,"Turn off the study fan",turn_off
|
| 91 |
+
fan.study,"Turn off the study fan",turn_off
|
| 92 |
+
garage_door.basement,"Please raise the basement garage door",open
|
| 93 |
+
garage_door.bike_storage,"Activate the bike storage garage",open
|
| 94 |
+
garage_door.bike_storage,"Deactivate the bike storage garage",close
|
| 95 |
+
garage_door.main,"Close the main garage door",close
|
| 96 |
+
garage_door.main,"Open the main garage door",open
|
| 97 |
+
garage_door.main,"Stop the main garage door",stop
|
| 98 |
+
garage_door.main,"Toggle the main garage door",toggle
|
| 99 |
+
garage_door.one_car,"Make sure the one car garage is closed",close
|
| 100 |
+
garage_door.side,"Could you lift the side garage door",open
|
| 101 |
+
garage_door.side,"Halt the side garage door",stop
|
| 102 |
+
garage_door.side,"Lower the side garage door",close
|
| 103 |
+
garage_door.side,"Switch the state of the side garage door",toggle
|
| 104 |
+
garage_door.two_car,"Open the two car garage",open
|
| 105 |
+
light.attic,"Change the light status in the attic",toggle
|
| 106 |
+
light.bathroom_1,"Could you illuminate the bathroom",turn_on
|
| 107 |
+
light.bathroom_1,"Please extinguish the bathroom light",turn_off
|
| 108 |
+
light.bathroom,"Activate the bathroom light",turn_on
|
| 109 |
+
light.bathroom,"Switch off the bathroom light",turn_off
|
| 110 |
+
light.bathroom,"Turn off the bathroom light",turn_off
|
| 111 |
+
light.bathroom,"Turn off the bathroom light",turn_off
|
| 112 |
+
light.bathroom,"Turn off the bathroom light",turn_off
|
| 113 |
+
light.bedroom_1,"Activate the bedroom light",turn_on
|
| 114 |
+
light.bedroom_1,"Deactivate the bedroom light",turn_off
|
| 115 |
+
light.bedroom_1,"Toggle the bedroom light",toggle
|
| 116 |
+
light.bedroom_2,"Switch off the bedroom light",turn_off
|
| 117 |
+
light.dining_room_1,"Activate the lights in the dining room",turn_on
|
| 118 |
+
light.dining_room,"Activate the dining room light",turn_on
|
| 119 |
+
light.dining_room,"Switch off the dining room light",turn_off
|
| 120 |
+
light.dining_room,"Switch off the dining room light",turn_off
|
| 121 |
+
light.dining_room,"Switch off the dining room light",turn_off
|
| 122 |
+
light.dining_room,"Switch off the dining room light",turn_off
|
| 123 |
+
light.dining_room,"Turn off the dining room light",turn_off
|
| 124 |
+
light.dining_table_above,"Please toggle the light above the dining table",toggle
|
| 125 |
+
light.driveway,"Flip the driveway light",toggle
|
| 126 |
+
light.driveway,"Turn on the driveway light",turn_on
|
| 127 |
+
light.garage,"Activate the garage light",turn_on
|
| 128 |
+
light.garage,"Activate the garage light",turn_on
|
| 129 |
+
light.garage,"Flip the light in the garage",toggle
|
| 130 |
+
light.garage,"Switch on the garage light",turn_on
|
| 131 |
+
light.garage,"Switch on the garage light",turn_on
|
| 132 |
+
light.garden_1,"Deactivate the garden light",turn_off
|
| 133 |
+
light.garden_1,"Switch on the garden light",turn_on
|
| 134 |
+
light.garden_1,"Turn on the garden light",turn_on
|
| 135 |
+
light.garden_2,"Activate the garden light",turn_on
|
| 136 |
+
light.garden,"Switch on the garden light",turn_on
|
| 137 |
+
light.guest_room,"Could you toggle the light in the guest room",toggle
|
| 138 |
+
light.guest_room,"Deactivate the guest room light",turn_off
|
| 139 |
+
light.guest_room,"Switch off the guest room light",turn_off
|
| 140 |
+
light.guest_room,"Switch on the guest room light",turn_on
|
| 141 |
+
light.guest_room,"Toggle the guest room light",toggle
|
| 142 |
+
light.hallway,"Switch off the hallway light",turn_off
|
| 143 |
+
light.hallway,"Switch the state of the light in the hallway",toggle
|
| 144 |
+
light.hallway,"Toggle the hallway light",toggle
|
| 145 |
+
light.hallway,"Turn off the hallway light",turn_off
|
| 146 |
+
light.hallway,"Turn on the hallway light",turn_on
|
| 147 |
+
light.kitchen_1,"Switch on the kitchen lights",turn_on
|
| 148 |
+
light.kitchen_1,"Toggle the kitchen light",toggle
|
| 149 |
+
light.kitchen_1,"Turn on the kitchen light",turn_on
|
| 150 |
+
light.kitchen_2,"Switch off the kitchen light",turn_off
|
| 151 |
+
light.kitchen_2,"Toggle the kitchen light",toggle
|
| 152 |
+
light.kitchen_counter,"Switch off the kitchen counter light",turn_off
|
| 153 |
+
light.kitchen_counter,"Switch on the kitchen counter light",turn_on
|
| 154 |
+
light.living_room_1,"Switch off the living room light",turn_off
|
| 155 |
+
light.living_room,"Turn off the living room light",turn_off
|
| 156 |
+
light.living_room,"Turn on the living room light",turn_on
|
| 157 |
+
light.master_bedroom_1,"Deactivate the master bedroom light",turn_off
|
| 158 |
+
light.master_bedroom_1,"Please activate the master bedroom light",turn_on
|
| 159 |
+
light.master_bedroom_lamp,"Turn off the light in the bedroom",turn_off
|
| 160 |
+
light.office_1,"Enable the office light",turn_on
|
| 161 |
+
light.office,"Deactivate the office light",turn_off
|
| 162 |
+
light.office,"Toggle the office light",toggle
|
| 163 |
+
light.outdoor,"Toggle the outdoor light",toggle
|
| 164 |
+
light.patio,"Deactivate the patio light",turn_off
|
| 165 |
+
light.patio,"Disable the patio light",turn_off
|
| 166 |
+
light.patio,"Enable the patio light",turn_on
|
| 167 |
+
light.patio,"Switch on the patio light",turn_on
|
| 168 |
+
light.patio,"Toggle the patio light",toggle
|
| 169 |
+
light.patio,"Turn on the patio light",turn_on
|
| 170 |
+
light.patio,"Turn on the patio light",turn_on
|
| 171 |
+
light.pool,"Activate the pool light",turn_on
|
| 172 |
+
light.pool,"Change the status of the pool light",toggle
|
| 173 |
+
light.pool,"Turn off the pool light",turn_off
|
| 174 |
+
light.pool,"Turn on the pool light",turn_on
|
| 175 |
+
light.shed,"Activate the shed light",turn_on
|
| 176 |
+
light.shed,"Activate the shed light",turn_on
|
| 177 |
+
light.shed,"Switch on the shed light",turn_on
|
| 178 |
+
light.shed,"Switch the shed light on or off",toggle
|
| 179 |
+
light.study,"Activate the study light",turn_on
|
| 180 |
+
light.study,"Alter the light state in the study",toggle
|
| 181 |
+
light.study,"Toggle the study light",toggle
|
| 182 |
+
light.study,"Toggle the study light",toggle
|
| 183 |
+
light.study,"Turn off the study light",turn_off
|
| 184 |
+
light.study,"Turn off the study light",turn_off
|
| 185 |
+
light.dining_room_chandelier,"Turn on the dining room light",turn_on
|
| 186 |
+
light.chandelier_front_hallway,"Hey can you turn on the front hallway chandelier",turn_on
|
| 187 |
+
lock.back_door,"Could you disengage the back door lock",unlock
|
| 188 |
+
lock.back_door,"Engage the back door lock",lock
|
| 189 |
+
lock.bike_storage,"Disengage the lock on the bike storage",unlock
|
| 190 |
+
lock.front_door,"Lock the front door",lock
|
| 191 |
+
lock.front_door,"Unlock the front door",unlock
|
| 192 |
+
lock.nursery,"Can you secure the nursery door",lock
|
| 193 |
+
lock.office,"Please lock the office",lock
|
| 194 |
+
lock.office,"Please unlock the office",unlock
|
| 195 |
+
lock.tool_shed,"Unlock the tool shed",unlock
|
| 196 |
+
lock.wine_cellar,"Could you lock the wine cellar",lock
|
| 197 |
+
lock.front_door,"Please lock the front door.",lock
|
| 198 |
+
lock.back_door,"Can you unlock the back door?",unlock
|
| 199 |
+
lock.garage_door,"I need the garage door locked.",lock
|
| 200 |
+
lock.patio_door,"Unlock the patio door, please.",unlock
|
| 201 |
+
lock.main_gate,"Ensure the main gate is locked.",lock
|
| 202 |
+
lock.kitchen_window,"Open the lock on the kitchen window.",unlock
|
| 203 |
+
lock.office_door,"Can we lock the office door?",lock
|
| 204 |
+
lock.bedroom_window,"Bedroom window needs to be unlocked.",unlock
|
| 205 |
+
lock.basement_door,"Lock up the basement door.",lock
|
| 206 |
+
lock.bathroom_window,"Could you unlock the bathroom window?",unlock
|
| 207 |
+
lock.garden_gate,"Please secure the garden gate.",lock
|
| 208 |
+
lock.rooftop_door,"Open the rooftop door lock.",unlock
|
| 209 |
+
lock.cellar_door,"Cellar door should be locked now.",lock
|
| 210 |
+
lock.pool_gate,"I'd like the pool gate unlocked.",unlock
|
| 211 |
+
lock.shed_door,"Ensure the shed door is securely locked.",lock
|
| 212 |
+
lock.balcony_door,"Unlock the balcony door for me.",unlock
|
| 213 |
+
lock.laundry_room_door,"Can you lock the laundry room door?",lock
|
| 214 |
+
lock.nursery_door,"The nursery door needs to be unlocked.",unlock
|
| 215 |
+
lock.guest_room_door,"Please lock the guest room door.",lock
|
| 216 |
+
lock.side_entrance,"Unlock our side entrance.",unlock
|
| 217 |
+
lock.fence_gate,"Make sure the fence gate is locked.",lock
|
| 218 |
+
lock.garage_side_door,"Garage side door should be unlocked.",unlock
|
| 219 |
+
lock.attic_door,"Attic door needs locking.",lock
|
| 220 |
+
lock.fire_escape,"Can you unlock the fire escape?",unlock
|
| 221 |
+
lock.storage_room_door,"Please lock the storage room door.",lock
|
| 222 |
+
lock.boathouse_door,"Unlock the boathouse door.",unlock
|
| 223 |
+
lock.carport_gate,"Carport gate needs to be locked.",lock
|
| 224 |
+
lock.backyard_gate,"Can we have the backyard gate unlocked?",unlock
|
| 225 |
+
lock.front_porch_door,"Lock the front porch door.",lock
|
| 226 |
+
lock.back_terrace_door,"Open the lock on the back terrace door.",unlock
|
| 227 |
+
lock.wine_cellar,"Ensure the wine cellar is locked.",lock
|
| 228 |
+
lock.sunroom_door,"Please unlock the sunroom door.",unlock
|
| 229 |
+
lock.home_office,"I'd like the home office locked up.",lock
|
| 230 |
+
lock.playroom_door,"Can you unlock the playroom door?",unlock
|
| 231 |
+
lock.art_studio,"The art studio should be locked.",lock
|
| 232 |
+
lock.music_room,"Unlock the music room, please.",unlock
|
| 233 |
+
lock.home_gym,"Lock the home gym door.",lock
|
| 234 |
+
lock.cinema_room,"Cinema room needs to be unlocked.",unlock
|
| 235 |
+
lock.library_door,"Please lock the library door.",lock
|
| 236 |
+
lock.conservatory,"Can the conservatory be unlocked?",unlock
|
| 237 |
+
media_player.kitchen,"Could you start the media in the kitchen",turn_on
|
| 238 |
+
media_player.kitchen,"Play the previous track in the kitchen",media_previous_track
|
| 239 |
+
media_player.kitchen,"Please raise the volume in the kitchen",volume_up
|
| 240 |
+
media_player.living_room,"Activate the media in the living room",turn_on
|
| 241 |
+
media_player.living_room,"Mute the media player in the living room",volume_mute
|
| 242 |
+
media_player.living_room,"Skip to the next track in the living room",media_next_track
|
| 243 |
+
media_player.living_room,"Turn up the volume in the living room",volume_up
|
| 244 |
+
media_player.master_bedroom,"Can you increase the volume on the master bedroom media player",volume_up
|
| 245 |
+
media_player.master_bedroom,"Pause the media in the master bedroom",media_pause
|
| 246 |
+
media_player.master_bedroom,"Turn on the master bedroom media player",turn_on
|
| 247 |
+
media_player.nursery,"Please play the media in the nursery",media_play
|
| 248 |
+
media_player.nursery,"Stop the media in the nursery",media_stop
|
| 249 |
+
media_player.nursery,"Turn down the volume in the nursery",volume_down
|
| 250 |
+
media_player.office,"Can you decrease the volume in the office",volume_down
|
| 251 |
+
media_player.living_room_tv,"Please turn on the living room TV.",turn_on
|
| 252 |
+
media_player.kitchen_radio,"Switch off the kitchen radio.",turn_off
|
| 253 |
+
media_player.bedroom_speaker,"Can you increase the volume in the bedroom?",volume_up
|
| 254 |
+
media_player.office_sound_system,"Lower the volume in the office.",volume_down
|
| 255 |
+
media_player.garage_stereo,"Mute the stereo in the garage.",volume_mute
|
| 256 |
+
media_player.patio_speaker,"Start playing music on the patio speaker.",media_play
|
| 257 |
+
media_player.bathroom_audio,"Pause the bathroom audio.",media_pause
|
| 258 |
+
media_player.guest_room_media,"Stop the guest room media player.",media_stop
|
| 259 |
+
media_player.basement_home_theater,"Skip to the next track in the basement.",media_next_track
|
| 260 |
+
media_player.nursery_lullaby,"Go back to the previous lullaby in the nursery.",media_previous_track
|
| 261 |
+
media_player.deck_music_system,"Turn on the deck's music system.",turn_on
|
| 262 |
+
media_player.lounge_entertainment,"Switch off the lounge entertainment center.",turn_off
|
| 263 |
+
media_player.dining_area_jukebox,"Increase the jukebox volume in the dining area.",volume_up
|
| 264 |
+
media_player.game_room_speakers,"Turn down the game room speakers.",volume_down
|
| 265 |
+
media_player.library_soundbar,"Mute the soundbar in the library.",volume_mute
|
| 266 |
+
media_player.sunroom_stereo,"Play the stereo in the sunroom.",media_play
|
| 267 |
+
media_player.loft_tv,"Pause the TV in the loft.",media_pause
|
| 268 |
+
media_player.poolside_media,"Stop the poolside media system.",media_stop
|
| 269 |
+
media_player.gym_music_player,"Skip to the next song in the gym.",media_next_track
|
| 270 |
+
media_player.study_room_radio,"Go back to the previous station in the study room.",media_previous_track
|
| 271 |
+
media_player.backyard_speakers,"Turn on the backyard speakers.",turn_on
|
| 272 |
+
media_player.entryway_echo,"Turn off the Echo in the entryway.",turn_off
|
| 273 |
+
media_player.rooftop_deck_audio,"Raise the rooftop audio volume.",volume_up
|
| 274 |
+
media_player.workshop_sound_system,"Lower the sound system volume in the workshop.",volume_down
|
| 275 |
+
media_player.art_studio_player,"Mute the media player in the art studio.",volume_mute
|
| 276 |
+
media_player.kids_room_storyteller,"Start the storyteller in the kids' room.",media_play
|
| 277 |
+
media_player.laundry_room_radio,"Pause the radio in the laundry room.",media_pause
|
| 278 |
+
media_player.balcony_speakers,"Stop the balcony speakers.",media_stop
|
| 279 |
+
media_player.yoga_room_music,"Next track for the yoga room music.",media_next_track
|
| 280 |
+
media_player.conservatory_cd_player,"Previous track on the conservatory CD player.",media_previous_track
|
| 281 |
+
media_player.foyer_sound_system,"Power on the foyer sound system.",turn_on
|
| 282 |
+
media_player.wine_cellar_speakers,"Power off the speakers in the wine cellar.",turn_off
|
| 283 |
+
media_player.greenhouse_radio,"Increase the greenhouse radio volume.",volume_up
|
| 284 |
+
media_player.attic_audio_system,"Decrease attic audio system volume.",volume_down
|
| 285 |
+
media_player.boathouse_stereo,"Mute the stereo in the boathouse.",volume_mute
|
| 286 |
+
media_player.cellar_jukebox,"Play the jukebox in the cellar.",media_play
|
| 287 |
+
media_player.corridor_intercom,"Pause the corridor intercom.",media_pause
|
| 288 |
+
media_player.porch_sound_system,"Stop the porch sound system.",media_stop
|
| 289 |
+
media_player.garden_music,"Next track for the garden music.",media_next_track
|
| 290 |
+
media_player.driveway_speakers,"Previous track on the driveway speakers.",media_previous_track
|
| 291 |
+
media_player.hallway_audio,"Switch on the hallway audio system.",turn_on
|
| 292 |
+
media_player.mudroom_media_player,"Switch off the mudroom media player.",turn_off
|
| 293 |
+
media_player.utility_room_radio,"Turn up the utility room radio.",volume_up
|
| 294 |
+
media_player.shed_sound_system,"Turn down the shed sound system.",volume_down
|
| 295 |
+
media_player.treehouse_speakers,"Mute the treehouse speakers.",volume_mute
|
| 296 |
+
switch.philips_hue_living_room,"Turn on the living room lights.",turn_on
|
| 297 |
+
switch.belkin_wemo_garage,"Turn off the garage switch.",turn_off
|
| 298 |
+
switch.tp_link_kasa_porch,"Toggle the porch lights.",toggle
|
| 299 |
+
switch.legrand_radiant_kitchen,"Turn on the kitchen lights.",turn_on
|
| 300 |
+
switch.lutron_caseta_bedroom,"Turn off the bedroom lights.",turn_off
|
| 301 |
+
switch.ge_z_wave_bathroom,"Turn on the bathroom fan.",turn_on
|
| 302 |
+
switch.honeywell_home_office,"Toggle the office lights.",toggle
|
| 303 |
+
switch.samsung_smartthings_security,"Turn off the security system.",turn_off
|
| 304 |
+
switch.eve_energy_balcony,"Turn on the balcony lighting.",turn_on
|
| 305 |
+
switch.fibaro_pool,"Turn off the pool lights.",turn_off
|
| 306 |
+
switch.nest_thermostat_terrace,"Turn on the terrace thermostat.",turn_on
|
| 307 |
+
switch.ecobee_garden,"Turn off the garden lights.",turn_off
|
| 308 |
+
switch.sonoff_dining_room,"Toggle the dining room lights.",toggle
|
| 309 |
+
switch.wink_relay_driveway,"Turn on the driveway lights.",turn_on
|
| 310 |
+
switch.insteon_patio,"Turn off the patio lights.",turn_off
|
| 311 |
+
switch.sengled_deck,"Turn on the deck lighting.",turn_on
|
| 312 |
+
switch.osram_hallway,"Toggle the hallway lights.",toggle
|
| 313 |
+
switch.yeelight_sunroom,"Turn off the sunroom lights.",turn_off
|
| 314 |
+
switch.gosund_attic,"Turn on the attic light switch.",turn_on
|
| 315 |
+
switch.meross_walkway,"Turn off the walkway lighting.",turn_off
|
| 316 |
+
switch.koogeek_basement,"Toggle the basement lights.",toggle
|
| 317 |
+
switch.nanoleaf_stairway,"Turn on the stairway lights.",turn_on
|
| 318 |
+
switch.xiaomi_bedside,"Turn off the bedside lamp.",turn_off
|
| 319 |
+
switch.arlo_floodlights,"Toggle the security floodlights.",toggle
|
| 320 |
+
switch.wyze_study,"Turn on the study room lights.",turn_on
|
| 321 |
+
switch.ikea_guest_room,"Turn off the guest room lights.",turn_off
|
| 322 |
+
switch.netatmo_front_yard,"Turn on the front yard lighting.",turn_on
|
| 323 |
+
switch.tuya_shed,"Turn off the shed light switch.",turn_off
|
| 324 |
+
switch.broadlink_kitchenette,"Toggle the kitchenette lights.",toggle
|
| 325 |
+
switch.moeshouse_gym,"Turn on the gym lighting.",turn_on
|
| 326 |
+
switch.hue_bedroom_2,"Turn off the second bedroom lights.",turn_off
|
| 327 |
+
switch.wemo_laundry_room,"Turn on the laundry room lights.",turn_on
|
| 328 |
+
switch.kasa_living_room,"Toggle the living room lights.",toggle
|
| 329 |
+
switch.radiant_office,"Turn off the office lights.",turn_off
|
| 330 |
+
switch.caseta_hallway_2,"Turn on the second hallway lights.",turn_on
|
| 331 |
+
switch.z_wave_guest_bathroom,"Turn off the guest bathroom fan.",turn_off
|
| 332 |
+
switch.home_office_dimmer,"Toggle the home office dimmer.",toggle
|
| 333 |
+
switch.security_camera_light,"Turn on the security camera light.",turn_on
|
| 334 |
+
switch.patio_heater_switch,"Turn off the patio heater.",turn_off
|
| 335 |
+
switch.kitchen_under_cabinet,"Toggle the kitchen under cabinet lights.",toggle
|
| 336 |
+
switch.hallway_dimmer,"Could you dim the hallway lights?",turn_on
|
| 337 |
+
switch.kitchen_fan,"Please turn off the kitchen fan.",turn_off
|
| 338 |
+
switch.garden_spotlights,"Activate the garden spotlights.",turn_on
|
| 339 |
+
switch.poolside_lanterns,"Deactivate the poolside lanterns.",turn_off
|
| 340 |
+
switch.front_porch_sensor,"Engage the front porch sensor light.",turn_on
|
| 341 |
+
switch.backyard_floodlight,"Can you shut off the backyard floodlight?",turn_off
|
| 342 |
+
switch.staircase_light_strip,"Could you light up the staircase light strip?",turn_on
|
| 343 |
+
switch.laundry_area,"Please switch off the laundry area lights.",turn_off
|
| 344 |
+
switch.office_desk_lamp,"Illuminate the desk lamp in my office.",turn_on
|
| 345 |
+
switch.basement_sconces,"Can we turn down the basement sconces?",turn_off
|
| 346 |
+
switch.library_ceiling,"Engage the ceiling lights in the library.",turn_on
|
| 347 |
+
switch.sunroom_blinds,"I'd like the sunroom blinds closed, please.",turn_off
|
| 348 |
+
switch.guest_bathroom,"Light up the guest bathroom, please.",turn_on
|
| 349 |
+
switch.patio_string_lights,"Switch off the string lights on the patio.",turn_off
|
| 350 |
+
switch.kitchen_island,"Disable the kitchen island lights.",turn_off
|
| 351 |
+
switch.entryway_chandelier,"Illuminate the entryway chandelier.",turn_on
|
| 352 |
+
switch.garage_worklight,"Can we power down the garage worklight?",turn_off
|
| 353 |
+
switch.bedroom_track_lighting,"Brighten the bedroom track lighting.",turn_on
|
| 354 |
+
switch.home_cinema,"Please turn off the home cinema lights.",turn_off
|
| 355 |
+
switch.balcony_mood_lighting,"Activate the mood lighting on the balcony.",turn_on
|
| 356 |
+
switch.dining_room_dimmer,"Set the dining room lights to off.",turn_off
|
| 357 |
+
switch.playroom_nightlight,"Can you turn on the playroom nightlight?",turn_on
|
| 358 |
+
switch.art_studio_spots,"Please disable the art studio spotlights.",turn_off
|
| 359 |
+
switch.foyer_wall_sconce,"Light up the foyer wall sconce.",turn_on
|
| 360 |
+
switch.back_entry,"Shut down the back entry lights.",turn_off
|
| 361 |
+
switch.corridor_track,"Brighten up the corridor track lights.",turn_on
|
| 362 |
+
switch.veranda_fairy_lights,"Switch off the veranda fairy lights, please.",turn_off
|
| 363 |
+
switch.master_suite,"Set the master suite to nighttime mode.",turn_on
|
| 364 |
+
switch.walk_in_closet,"Disable the walk-in closet lights.",turn_off
|
| 365 |
+
switch.roof_deck,"Engage the roof deck lighting.",turn_on
|
| 366 |
+
switch.bathroom_mirror,"Can you turn off the bathroom mirror light?",turn_off
|
| 367 |
+
switch.storage_room,"Please power down the storage room lights.",turn_off
|
| 368 |
+
switch.wine_cellar,"Illuminate the wine cellar.",turn_on
|
| 369 |
+
switch.conservation_area,"Deactivate the conservation area lighting.",turn_off
|
| 370 |
+
switch.gym_ceiling,"Light up the gym ceiling lights.",turn_on
|
| 371 |
+
switch.hobby_room,"Could we turn off the hobby room lights?",turn_off
|
| 372 |
+
switch.front_lawn,"Activate the front lawn spotlights.",turn_on
|
| 373 |
+
switch.rear_terrace,"Can you dim the lights on the rear terrace?",turn_off
|
piles/pile_of_device_names.csv
ADDED
|
@@ -0,0 +1,580 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
device_name,description
|
| 2 |
+
blinds.back_window,"Back Window Blinds"
|
| 3 |
+
blinds.basement,"Basement Blinds"
|
| 4 |
+
blinds.bathroom_1,First bathroom blinds
|
| 5 |
+
blinds.bathroom,"Bathroom Blinds"
|
| 6 |
+
blinds.craft_room,Craft room blinds
|
| 7 |
+
blinds.dining_room,"Dining Room Blinds"
|
| 8 |
+
blinds.front_window,"Front Window Blinds"
|
| 9 |
+
blinds.garage,"Garage Blinds"
|
| 10 |
+
blinds.guest_bathroom,Guest bathroom blinds
|
| 11 |
+
blinds.guest_room,"Guest Room Blinds"
|
| 12 |
+
blinds.hallway_1,First hallway blinds
|
| 13 |
+
blinds.hallway_2,Second hallway blinds
|
| 14 |
+
blinds.hallway,"Hallway Blinds"
|
| 15 |
+
blinds.ikea_smart,"Ikea Smart Blinds"
|
| 16 |
+
blinds.kids_room,Kids' room blinds
|
| 17 |
+
blinds.kitchen_window,Kitchen window blinds
|
| 18 |
+
blinds.kitchen,"Kitchen Blinds"
|
| 19 |
+
blinds.living_room_large,Main living room blinds
|
| 20 |
+
blinds.living_room,"Living Room Blinds"
|
| 21 |
+
blinds.master_bedroom,"Master Bedroom Blinds"
|
| 22 |
+
blinds.nursery,"Nursery Blinds"
|
| 23 |
+
blinds.office,"Office Blinds"
|
| 24 |
+
blinds.office_window,"Office Window Blinds"
|
| 25 |
+
blinds.patio,"Patio Blinds"
|
| 26 |
+
blinds.skylight,"Skylight Blinds"
|
| 27 |
+
blinds.skylight,Skylight blinds
|
| 28 |
+
blinds.somfy_kitchen,"Kitchen Blinds"
|
| 29 |
+
blinds.somfy_living,"Living Room Blinds"
|
| 30 |
+
blinds.sunroom,"Sunroom Blinds"
|
| 31 |
+
blinds.theater_room,Home theater blinds
|
| 32 |
+
fan.attic_1,"Attic Fans"
|
| 33 |
+
fan.attic_2,"Attic Fans"
|
| 34 |
+
fan.attic_3,"Attic Fans"
|
| 35 |
+
fan.attic_ventilation,Attic ventilation fan
|
| 36 |
+
fan.attic,"Attic Fan"
|
| 37 |
+
fan.back_porch,"Back Porch Fan"
|
| 38 |
+
fan.balcony,"Balcony Fan"
|
| 39 |
+
fan.basement,"Basement Fan"
|
| 40 |
+
fan.bathroom_down,Fan in downstairs bathroom
|
| 41 |
+
fan.bathroom,"Bathroom Fan"
|
| 42 |
+
fan.bedroom_master,"Master Bedroom Fan"
|
| 43 |
+
fan.bedroom_right,Right-side bedroom fan
|
| 44 |
+
fan.bedroom,"Bedroom Fan"
|
| 45 |
+
fan.ceiling_1,"Ceiling Fans"
|
| 46 |
+
fan.ceiling_2,"Ceiling Fans"
|
| 47 |
+
fan.dining_area,"Dining Area Fan"
|
| 48 |
+
fan.dining_room,"Dining Room Fan"
|
| 49 |
+
fan.dyson_pure,"Dyson Pure Fan"
|
| 50 |
+
fan.front_porch,"Front Porch Fan"
|
| 51 |
+
fan.garage_workshop,Garage workshop fan
|
| 52 |
+
fan.garage,"Garage Fan"
|
| 53 |
+
fan.guest_bedroom,Guest room fan
|
| 54 |
+
fan.guest_room,"Guest Room Fan"
|
| 55 |
+
fan.hallway,"Hallway fan"
|
| 56 |
+
fan.honeywell_turbo,"Honeywell Turbo Fan"
|
| 57 |
+
fan.indoor_gym,"Indoor Gym Fan"
|
| 58 |
+
fan.kids_room,Kids' room fan
|
| 59 |
+
fan.kitchen_1,"Kitchen Fans"
|
| 60 |
+
fan.kitchen_2,"Kitchen Fans"
|
| 61 |
+
fan.kitchen_island,Cooling kitchen fan
|
| 62 |
+
fan.kitchen,"Kitchen Fan"
|
| 63 |
+
fan.laundry_room,Laundry room fan
|
| 64 |
+
fan.living_room_1,"Living Room fan"
|
| 65 |
+
fan.living_room_2,"Living Room fan"
|
| 66 |
+
fan.living_room_center,Center living room fan
|
| 67 |
+
fan.living_room,"Living Room Fan"
|
| 68 |
+
fan.master_bath,Master bathroom fan
|
| 69 |
+
fan.nursery,"Nursery Fan"
|
| 70 |
+
fan.office,"Office Fan"
|
| 71 |
+
fan.outdoor_kitchen,Outdoor kitchen fan
|
| 72 |
+
fan.outdoor_patio,Outdoor patio fan
|
| 73 |
+
fan.outdoor,"Outdoor fan"
|
| 74 |
+
fan.patio,"Patio Fan"
|
| 75 |
+
fan.porch,Porch ceiling fan
|
| 76 |
+
fan.shed,"Shed fan"
|
| 77 |
+
fan.study_1,"Study fan"
|
| 78 |
+
fan.study_2,"Study fan"
|
| 79 |
+
fan.study,"study fan"
|
| 80 |
+
garage_door.basement,"Basement Garage Door"
|
| 81 |
+
garage_door.bike_shed,Bike shed door
|
| 82 |
+
garage_door.bike_storage,"Bike Storage Garage"
|
| 83 |
+
garage_door.boat,"Boat Garage Door"
|
| 84 |
+
garage_door.boat,Boat storage door
|
| 85 |
+
garage_door.carport,"Carport Garage Door"
|
| 86 |
+
garage_door.carport,Carport door
|
| 87 |
+
garage_door.chamberlain_1,"Chamberlain"
|
| 88 |
+
garage_door.chamberlain_2,"Chamberlain"
|
| 89 |
+
garage_door.golf_cart,"Golf Cart Garage"
|
| 90 |
+
garage_door.golf_cart,Golf cart door
|
| 91 |
+
garage_door.greenhouse,Greenhouse door
|
| 92 |
+
garage_door.guest,"Guest Garage Door"
|
| 93 |
+
garage_door.lawn_equipment,Lawn equipment door
|
| 94 |
+
garage_door.liftmaster_1,"LiftMaster"
|
| 95 |
+
garage_door.liftmaster_2,"LiftMaster"
|
| 96 |
+
garage_door.main_1,Primary garage door
|
| 97 |
+
garage_door.main,"Main Garage Door"
|
| 98 |
+
garage_door.motorcycle,"Motorcycle Garage"
|
| 99 |
+
garage_door.one_car,"One Car Garage"
|
| 100 |
+
garage_door.pet_entry,Pet entry door
|
| 101 |
+
garage_door.rv_storage,RV storage door
|
| 102 |
+
garage_door.rv,"RV Garage Door"
|
| 103 |
+
garage_door.shed_1,First shed door
|
| 104 |
+
garage_door.shed_2,Second shed door
|
| 105 |
+
garage_door.shop,"Workshop Garage Door"
|
| 106 |
+
garage_door.left_door,"Left Garage Door"
|
| 107 |
+
garage_door.side_2,Side garage door
|
| 108 |
+
garage_door.side,"Side Garage Door"
|
| 109 |
+
garage_door.spare,"Spare Garage Door"
|
| 110 |
+
garage_door.two_car,"Two Car Garage"
|
| 111 |
+
garage_door.upper_level,"Upper Level Garage"
|
| 112 |
+
garage_door.wine_cellar,Wine cellar door
|
| 113 |
+
light.above_dining_table,"Dining Table Light"
|
| 114 |
+
light.aquarium,"Aquarium Light"
|
| 115 |
+
light.attic,"Attic Light"
|
| 116 |
+
light.backyard,"Backyard Light"
|
| 117 |
+
light.basement,"Basement Light"
|
| 118 |
+
light.bathroom_1,"Bathroom Light"
|
| 119 |
+
light.bathroom_2,"Bathroom Light"
|
| 120 |
+
light.bathroom_mirror,Mirror lights
|
| 121 |
+
light.bathroom,"Bathroom Light"
|
| 122 |
+
light.bedroom_1,"Bedroom Light"
|
| 123 |
+
light.bedroom_2,"Bedroom Light"
|
| 124 |
+
light.bedroom_3,"Bedroom Light"
|
| 125 |
+
light.bedroom,"Bedroom Light"
|
| 126 |
+
light.closet_under_stairs,Under-stairs closet light
|
| 127 |
+
light.deck_left,Left deck light
|
| 128 |
+
light.dining_room_1,"Dining Room Light"
|
| 129 |
+
light.dining_room_2,"Dining Room Light"
|
| 130 |
+
light.dining_room_3,"Dining Room Light"
|
| 131 |
+
light.dining_room,"Dining Room Light"
|
| 132 |
+
light.driveway_1,First driveway light
|
| 133 |
+
light.driveway,"Driveway Light"
|
| 134 |
+
light.front_porch,"Front Porch Light"
|
| 135 |
+
light.front_yard,Front yard lighting
|
| 136 |
+
light.garage,"Garage Light"
|
| 137 |
+
light.garden_1,"Garden Light"
|
| 138 |
+
light.garden_2,"Garden Light"
|
| 139 |
+
light.garden_path,Garden path lighting
|
| 140 |
+
light.garden,"Garden Light"
|
| 141 |
+
light.guest_room,"Guest room Lights"
|
| 142 |
+
light.hallway_upstairs,Upstairs hallway light
|
| 143 |
+
light.hallway,"Hallway Lights"
|
| 144 |
+
light.hallway,"Hallway Light"
|
| 145 |
+
light.hot_tub,Hot tub lighting
|
| 146 |
+
light.kitchen_1,"Main Kitchen Light"
|
| 147 |
+
light.kitchen_2,"Second Kitchen Light"
|
| 148 |
+
light.kitchen_counter,"Kitchen Counter Light"
|
| 149 |
+
light.kitchen_counter,Kitchen counter lights
|
| 150 |
+
light.kitchen_table,"Kitchen Table Light"
|
| 151 |
+
light.kitchen,"Kitchen Light"
|
| 152 |
+
light.lifx_master,"Master Light"
|
| 153 |
+
light.living_room_1,"Living Room Lights"
|
| 154 |
+
light.living_room_2,"Living Room Lights"
|
| 155 |
+
light.living_room_ceiling,"Living Room Ceiling Light"
|
| 156 |
+
light.living_room_ceiling,Bright ceiling light
|
| 157 |
+
light.living_room,"Living Room Light"
|
| 158 |
+
light.master_bedroom_1,"Master Bedroom Lights"
|
| 159 |
+
light.master_bedroom_2,"Master Bedroom Lights"
|
| 160 |
+
light.master_bedroom_lamp,"Master Bedroom Lamp"
|
| 161 |
+
light.nursery,"Nursery Light"
|
| 162 |
+
light.office_1,"Office Light"
|
| 163 |
+
light.office_2,"Office Light"
|
| 164 |
+
light.office_desk,"Office Desk Light"
|
| 165 |
+
light.office,"Office Light"
|
| 166 |
+
light.outdoor,"Outdoor Lights"
|
| 167 |
+
light.patio_1,Outdoor patio light
|
| 168 |
+
light.patio,"Patio Lights"
|
| 169 |
+
light.patio,"Patio Light"
|
| 170 |
+
light.philips_hue_1,"Philips Hue"
|
| 171 |
+
light.philips_hue_2,"Philips Hue"
|
| 172 |
+
light.pool,"Pool Light"
|
| 173 |
+
light.shed,"Shed Light"
|
| 174 |
+
light.study_1,"Study Lights"
|
| 175 |
+
light.study_2,"Study Lights"
|
| 176 |
+
light.study_3,"Study Lights"
|
| 177 |
+
light.study,"Study Light"
|
| 178 |
+
light.workbench,Garage workbench light
|
| 179 |
+
light.yeelight_smart,"Yeelight Smart Light"
|
| 180 |
+
light.upstairs_master_bedroom_hue,Upstairs Master Bedroom Hue
|
| 181 |
+
light.downstairs_guest_bedroom_zigbee,Downstairs Guest Bedroom Light
|
| 182 |
+
light.front_office_mqtt,Front Office Light
|
| 183 |
+
light.back_family_room_warm,Back Family Room Warm Light
|
| 184 |
+
light.kitchen_counter_cool,Kitchen Counter Cool Light
|
| 185 |
+
light.upstairs_bathroom_homekit,Upstairs Bathroom Light
|
| 186 |
+
light.downstairs_livingroom_lifx,Downstairs Living Room Light
|
| 187 |
+
light.front_porch_zwave,Front Porch Light
|
| 188 |
+
light.side_hallway_hue,Side Hallway Hue
|
| 189 |
+
light.garage_osram,Garage Osram
|
| 190 |
+
light.basement_workshop_mqtt,Basement Workshop Light
|
| 191 |
+
light.upstairs_children_bedroom_zigbee,Upstairs Children's Bedroom Light
|
| 192 |
+
light.downstairs_master_bedroom_homekit,Downstairs Master Bedroom Light
|
| 193 |
+
light.front_living_room_ge,Front Living Room Light
|
| 194 |
+
light.back_bedroom_warm,Back Bedroom Warm Light
|
| 195 |
+
light.kitchen_island_cool,Kitchen Island Cool Light
|
| 196 |
+
light.upstairs_hallway_zwave,Upstairs Hallway Light
|
| 197 |
+
light.downstairs_bathroom_warm,Downstairs Bathroom Warm Light
|
| 198 |
+
light.front_yard_osram,Front Yard Osram
|
| 199 |
+
light.back_yard_zwave,Back Yard Light
|
| 200 |
+
light.upstairs_guest_bedroom_zigbee,Upstairs Guest Bedroom Light
|
| 201 |
+
light.downstairs_office_mqtt,Downstairs Office Light
|
| 202 |
+
light.front_bedroom_homekit,Front Bedroom Light
|
| 203 |
+
light.back_office_lifx,Back Office Light
|
| 204 |
+
light.kitchen_table_warm,Kitchen Table Warm Light
|
| 205 |
+
light.upstairs_tv_room_zigbee,Upstairs TV Room Light
|
| 206 |
+
light.downstairs_tv_room_homekit,Downstairs TV Room Light
|
| 207 |
+
light.front_tv_room_ge,Front TV Room Light
|
| 208 |
+
light.back_tv_room_warm,Back TV Room Warm Light
|
| 209 |
+
light.kitchen_sink_cool,Kitchen Sink Cool Light
|
| 210 |
+
light.upstairs_pantry_zwave,Upstairs Pantry Light
|
| 211 |
+
light.downstairs_pantry_mqtt,Downstairs Pantry Light
|
| 212 |
+
light.front_pantry_homekit,Front Pantry Light
|
| 213 |
+
light.back_pantry_lifx,Back Pantry Light
|
| 214 |
+
light.kitchen_cabinet_warm,Kitchen Cabinet Warm Light
|
| 215 |
+
light.upstairs_corridor_zigbee,Upstairs Corridor Light
|
| 216 |
+
light.downstairs_corridor_mqtt,Downstairs Corridor Light
|
| 217 |
+
light.front_corridor_homekit,Front Corridor Light
|
| 218 |
+
light.back_corridor_lifx,Back Corridor Light
|
| 219 |
+
light.garage_workbench_cool,Garage Workbench Cool Light
|
| 220 |
+
light.upstairs_nursery_zwave,Upstairs Nursery Light
|
| 221 |
+
light.downstairs_nursery_mqtt,Downstairs Nursery Light
|
| 222 |
+
light.front_nursery_homekit,Front Nursery Light
|
| 223 |
+
light.back_nursery_warm,Back Nursery Warm Light
|
| 224 |
+
light.kitchen_ceiling_cool,Kitchen Ceiling Cool Light
|
| 225 |
+
light.upstairs_lounge_zigbee,Upstairs Lounge Light
|
| 226 |
+
light.downstairs_lounge_homekit,Downstairs Lounge Light
|
| 227 |
+
light.front_lounge_ge,Front Lounge Light
|
| 228 |
+
light.back_lounge_warm,Back Lounge Warm Light
|
| 229 |
+
light.basement_storage_cool,Basement Storage Cool Light
|
| 230 |
+
light.upstairs_closet_zwave,Upstairs Closet Light
|
| 231 |
+
light.downstairs_closet_mqtt,Downstairs Closet Light
|
| 232 |
+
light.front_closet_homekit,Front Closet Light
|
| 233 |
+
light.back_closet_warm,Back Closet Warm Light
|
| 234 |
+
light.upstairs_den_zigbee,Upstairs Den Light
|
| 235 |
+
light.downstairs_den_homekit,Downstairs Den Light
|
| 236 |
+
light.front_den_ge,Front Den Light
|
| 237 |
+
light.back_den_warm,Back Den Warm Light
|
| 238 |
+
light.kitchen_window_cool,Kitchen Window Cool Light
|
| 239 |
+
light.upstairs_entryway_zwave,Upstairs Entryway Light
|
| 240 |
+
light.downstairs_entryway_mqtt,Downstairs Entryway Light
|
| 241 |
+
light.front_entryway_homekit,Front Entryway Light
|
| 242 |
+
light.back_entryway_lifx,Back Entryway Light
|
| 243 |
+
light.kitchen_desk_warm,Kitchen Desk Warm Light
|
| 244 |
+
light.upstairs_mudroom_zigbee,Upstairs Mudroom Light
|
| 245 |
+
light.downstairs_mudroom_homekit,Downstairs Mudroom Light
|
| 246 |
+
light.front_mudroom_ge,Front Mudroom Light
|
| 247 |
+
light.back_mudroom_warm,Back Mudroom Warm Light
|
| 248 |
+
light.kitchen_floor_cool,Kitchen Floor Cool Light
|
| 249 |
+
light.upstairs_attic_zwave,Upstairs Attic Light
|
| 250 |
+
light.downstairs_attic_mqtt,Downstairs Attic Light
|
| 251 |
+
light.front_attic_homekit,Front Attic Light
|
| 252 |
+
light.back_attic_lifx,Back Attic Light
|
| 253 |
+
light.kitchen_drawer_warm,Kitchen Drawer Warm Light
|
| 254 |
+
light.upstairs_sunroom_zigbee,Upstairs Sunroom Light
|
| 255 |
+
light.downstairs_sunroom_homekit,Downstairs Sunroom Light
|
| 256 |
+
light.front_sunroom_ge,Front Sunroom Light
|
| 257 |
+
light.back_sunroom_warm,Back Sunroom Warm Light
|
| 258 |
+
light.kitchen_rack_cool,Kitchen Rack Cool Light
|
| 259 |
+
light.upstairs_study_zwave,Upstairs Study Light
|
| 260 |
+
light.downstairs_study_mqtt,Downstairs Study Light
|
| 261 |
+
light.front_study_homekit,Front Study Light
|
| 262 |
+
light.back_study_lifx,Back Study Light
|
| 263 |
+
light.kitchen_bar_warm,Kitchen Bar Warm Light
|
| 264 |
+
light.upstairs_dining_zigbee,Upstairs Dining Light
|
| 265 |
+
light.downstairs_dining_homekit,Downstairs Dining Light
|
| 266 |
+
light.front_dining_ge,Front Dining Light
|
| 267 |
+
light.back_dining_warm,Back Dining Warm Light
|
| 268 |
+
light.kitchen_wall_cool,Kitchen Wall Cool Light
|
| 269 |
+
light.upstairs_fireplace_zwave,Upstairs Fireplace Light
|
| 270 |
+
light.downstairs_fireplace_mqtt,Downstairs Fireplace Light
|
| 271 |
+
light.front_fireplace_homekit,Front Fireplace Light
|
| 272 |
+
light.back_fireplace_lifx,Back Fireplace Light
|
| 273 |
+
light.kitchen_bookshelf_warm,Kitchen Bookshelf Warm Light
|
| 274 |
+
light.upstairs_sideyard_zigbee,Upstairs Side Yard Light
|
| 275 |
+
light.downstairs_sideyard_homekit,Downstairs Side Yard Light
|
| 276 |
+
light.front_sideyard_ge,Front Side Yard Light
|
| 277 |
+
light.back_sideyard_warm,Back Side Yard Warm Light
|
| 278 |
+
light.kitchen_cupboard_cool,Kitchen Cupboard Cool Light
|
| 279 |
+
light.upstairs_cinema_zwave,Upstairs Cinema Light
|
| 280 |
+
light.downstairs_cinema_mqtt,Downstairs Cinema Light
|
| 281 |
+
light.front_cinema_homekit,Front Cinema Light
|
| 282 |
+
light.back_cinema_lifx,Back Cinema Light
|
| 283 |
+
light.kitchen_oven_warm,Kitchen Oven Warm Light
|
| 284 |
+
light.upstairs_mancave_zigbee,Upstairs Man Cave Light
|
| 285 |
+
light.downstairs_mancave_homekit,Downstairs Man Cave Light
|
| 286 |
+
light.front_mancave_ge,Front Man Cave Light
|
| 287 |
+
light.back_mancave_warm,Back Man Cave Warm Light
|
| 288 |
+
light.kitchen_shelf_cool,Kitchen Shelf Cool Light
|
| 289 |
+
light.upstairs_balcony_zwave,Upstairs Balcony Light
|
| 290 |
+
light.downstairs_balcony_mqtt,Downstairs Balcony Light
|
| 291 |
+
light.front_balcony_homekit,Front Balcony Light
|
| 292 |
+
light.back_balcony_lifx,Back Balcony Light
|
| 293 |
+
light.kitchen_cornice_warm,Kitchen Cornice Warm Light
|
| 294 |
+
light.upstairs_stairwell_zigbee,Upstairs Stairwell Light
|
| 295 |
+
light.downstairs_stairwell_homekit,Downstairs Stairwell Light
|
| 296 |
+
light.front_stairwell_ge,Front Stairwell Light
|
| 297 |
+
light.back_stairwell_warm,Back Stairwell Warm Light
|
| 298 |
+
light.kitchen_mirror_cool,Kitchen Mirror Cool Light
|
| 299 |
+
light.upstairs_basement_zwave,Upstairs Basement Light
|
| 300 |
+
light.downstairs_basement_mqtt,Downstairs Basement Light
|
| 301 |
+
light.front_basement_homekit,Front Basement Light
|
| 302 |
+
light.back_basement_lifx,Back Basement Light
|
| 303 |
+
light.kitchen_windowseat_warm,Kitchen Window Seat Warm Light
|
| 304 |
+
light.upstairs_recreation_zigbee,Upstairs Recreation Light
|
| 305 |
+
light.downstairs_recreation_homekit,Downstairs Recreation Light
|
| 306 |
+
light.front_recreation_ge,Front Recreation Light
|
| 307 |
+
light.back_recreation_warm,Back Recreation Warm Light
|
| 308 |
+
light.kitchen_sideboard_cool,Kitchen Sideboard Cool Light
|
| 309 |
+
light.upstairs_courtyard_zwave,Upstairs Courtyard Light
|
| 310 |
+
light.downstairs_courtyard_mqtt,Downstairs Courtyard Light
|
| 311 |
+
light.front_courtyard_homekit,Front Courtyard Light
|
| 312 |
+
light.back_courtyard_lifx,Back Courtyard Light
|
| 313 |
+
light.kitchen_winecellar_warm,Kitchen Wine Cellar Warm Light
|
| 314 |
+
light.upstairs_arcade_zigbee,Upstairs Arcade Light
|
| 315 |
+
light.downstairs_arcade_homekit,Downstairs Arcade Light
|
| 316 |
+
light.front_arcade_ge,Front Arcade Light
|
| 317 |
+
light.back_arcade_warm,Back Arcade Warm Light
|
| 318 |
+
light.kitchen_pantry_cool,Kitchen Pantry Cool Light
|
| 319 |
+
light.upstairs_washroom_zwave,Upstairs Washroom Light
|
| 320 |
+
light.downstairs_washroom_mqtt,Downstairs Washroom Light
|
| 321 |
+
light.front_washroom_homekit,Front Washroom Light
|
| 322 |
+
light.back_washroom_lifx,Back Washroom Light
|
| 323 |
+
light.kitchen_fridge_warm,Kitchen Fridge Warm Light
|
| 324 |
+
light.upstairs_library_zigbee,Upstairs Library Light
|
| 325 |
+
light.downstairs_library_homekit,Downstairs Library Light
|
| 326 |
+
light.front_library_ge,Front Library Light
|
| 327 |
+
light.back_library_warm,Back Library Warm Light
|
| 328 |
+
light.kitchen_coffeecorner_cool,Kitchen Coffee Corner Cool Light
|
| 329 |
+
light.upstairs_playroom_zwave,Upstairs Playroom Light
|
| 330 |
+
light.downstairs_playroom_mqtt,Downstairs Playroom Light
|
| 331 |
+
light.front_playroom_homekit,Front Playroom Light
|
| 332 |
+
light.back_playroom_lifx,Back Playroom Light
|
| 333 |
+
light.kitchen_microwave_warm,Kitchen Microwave Warm Light
|
| 334 |
+
light.upstairs_observatory_zigbee,Upstairs Observatory Light
|
| 335 |
+
light.downstairs_observatory_homekit,Downstairs Observatory Light
|
| 336 |
+
light.front_observatory_ge,Front Observatory Light
|
| 337 |
+
light.back_observatory_warm,Back Observatory Warm Light
|
| 338 |
+
light.kitchen_toaster_cool,Kitchen Toaster Cool Light
|
| 339 |
+
light.upstairs_workout_zwave,Upstairs Workout Light
|
| 340 |
+
light.downstairs_workout_mqtt,Downstairs Workout Light
|
| 341 |
+
light.front_workout_homekit,Front Workout Light
|
| 342 |
+
light.back_workout_lifx,Back Workout Light
|
| 343 |
+
light.kitchen_display_warm,Kitchen Display Warm Light
|
| 344 |
+
light.upstairs_utility_zigbee,Upstairs Utility Light
|
| 345 |
+
light.downstairs_utility_homekit,Downstairs Utility Light
|
| 346 |
+
light.front_utility_ge,Front Utility Light
|
| 347 |
+
light.back_utility_warm,Back Utility Warm Light
|
| 348 |
+
light.kitchen_trashbin_cool,Kitchen Trash Bin Cool Light
|
| 349 |
+
light.upstairs_sitting_zwave,Upstairs Sitting Room Light
|
| 350 |
+
light.downstairs_sitting_mqtt,Downstairs Sitting Room Light
|
| 351 |
+
light.front_sitting_homekit,Front Sitting Room Light
|
| 352 |
+
light.back_sitting_lifx,Back Sitting Room Light
|
| 353 |
+
light.kitchen_freezer_warm,Kitchen Freezer Light
|
| 354 |
+
light.upstairs_zen_zigbee,Upstairs Zen Light
|
| 355 |
+
light.downstairs_zen_homekit,Downstairs Zen Light
|
| 356 |
+
light.front_zen_ge,Front Light
|
| 357 |
+
light.back_zen_warm,Back Zen Light
|
| 358 |
+
light.dining_room_chandelier,"Dining Room Chandelier"
|
| 359 |
+
light.chandelier_front_hallway,"Front Hallway Chandelier"
|
| 360 |
+
lock.back_door,"Back Door Lock"
|
| 361 |
+
lock.back_door,Backyard entry lock
|
| 362 |
+
lock.basement,"Basement Lock"
|
| 363 |
+
lock.bike_rack,Bike rack lock
|
| 364 |
+
lock.bike_storage,"Bike Storage Lock"
|
| 365 |
+
lock.file_cabinet,File cabinet lock
|
| 366 |
+
lock.front_door_1,Main entry lock
|
| 367 |
+
lock.front_door,"Front Door Lock"
|
| 368 |
+
lock.garage,"Garage Door Lock"
|
| 369 |
+
lock.guest_room,"Guest Room Lock"
|
| 370 |
+
lock.gun_safe,Gun safe lock
|
| 371 |
+
lock.mailbox,Secure mailbox lock
|
| 372 |
+
lock.master_bedroom,"Master Bedroom Lock"
|
| 373 |
+
lock.nursery,"Nursery Door Lock"
|
| 374 |
+
lock.office,"Office Lock"
|
| 375 |
+
lock.patio_door,Patio sliding door
|
| 376 |
+
lock.pool_gate,"Pool Gate Lock"
|
| 377 |
+
lock.pool_gate,Swimming pool gate
|
| 378 |
+
lock.safety_deposit,Safety deposit box
|
| 379 |
+
lock.schlage_smart,"Schlage Smart Lock"
|
| 380 |
+
lock.shed_2,Second shed lock
|
| 381 |
+
lock.tool_shed,"Tool Shed Lock"
|
| 382 |
+
lock.tool_shed,Tool shed lock
|
| 383 |
+
lock.utility_room,Utility room lock
|
| 384 |
+
lock.wine_cellar,"Wine Cellar Lock"
|
| 385 |
+
lock.wine_cellar,Wine cellar lock
|
| 386 |
+
lock.yale_kitchen,"Yale Kitchen"
|
| 387 |
+
lock.yale_living,"Yale Living Room"
|
| 388 |
+
lock.yoga_room,"Yoga Room Lock"
|
| 389 |
+
lock.attic,"Attic Door Lock"
|
| 390 |
+
lock.balcony_door,Balcony access lock
|
| 391 |
+
lock.bedroom_2,"Second Bedroom Lock"
|
| 392 |
+
lock.bedroom_3,"Third Bedroom Lock"
|
| 393 |
+
lock.boathouse,"Boathouse Lock"
|
| 394 |
+
lock.closet,"Closet Door Lock"
|
| 395 |
+
lock.conservatory,"Conservatory Lock"
|
| 396 |
+
lock.den,"Den Lock"
|
| 397 |
+
lock.dining_room,"Dining Room Lock"
|
| 398 |
+
lock.driveway_gate,Driveway gate lock
|
| 399 |
+
lock.electric_gate,Electric gate lock
|
| 400 |
+
lock.elevator,"Private Elevator Lock"
|
| 401 |
+
lock.fence_gate,Fence gate lock
|
| 402 |
+
lock.filing_room,"Filing Room Lock"
|
| 403 |
+
lock.front_gate,"Front Gate Lock"
|
| 404 |
+
lock.garden_gate,Garden gate lock
|
| 405 |
+
lock.greenhouse,"Greenhouse Lock"
|
| 406 |
+
lock.gym,"Home Gym Lock"
|
| 407 |
+
lock.hallway_closet,"Hallway Closet Lock"
|
| 408 |
+
lock.home_theater,"Home Theater Lock"
|
| 409 |
+
lock.kennel,"Animal Kennel Lock"
|
| 410 |
+
lock.kitchen_door,Kitchen entry lock
|
| 411 |
+
lock.laundry_room,"Laundry Room Lock"
|
| 412 |
+
lock.living_room,"Living Room Lock"
|
| 413 |
+
lock.loft,"Loft Lock"
|
| 414 |
+
lock.mudroom,"Mudroom Lock"
|
| 415 |
+
lock.music_room,"Music Room Lock"
|
| 416 |
+
lock.office_cabinet,Office cabinet lock
|
| 417 |
+
lock.pantry,"Pantry Lock"
|
| 418 |
+
lock.playroom,"Playroom Lock"
|
| 419 |
+
lock.porch_door,Porch door lock
|
| 420 |
+
lock.rear_gate,Rear gate lock
|
| 421 |
+
lock.rooftop_door,Rooftop access lock
|
| 422 |
+
lock.sauna,"Sauna Door Lock"
|
| 423 |
+
lock.secure_storage,Secure storage lock
|
| 424 |
+
lock.service_entrance,Service entrance lock
|
| 425 |
+
lock.side_door,Side entry lock
|
| 426 |
+
lock.side_gate,Side gate lock
|
| 427 |
+
lock.ski_storage,"Ski Storage Lock"
|
| 428 |
+
lock.stair_gate,Staircase gate lock
|
| 429 |
+
lock.storage_room,"Storage Room Lock"
|
| 430 |
+
lock.studio,"Studio Lock"
|
| 431 |
+
lock.sunroom,"Sunroom Lock"
|
| 432 |
+
lock.terrace_door,Terrace door lock
|
| 433 |
+
lock.vehicle_gate,Vehicle gate lock
|
| 434 |
+
lock.walk_in_closet,"Walk-In Closet Lock"
|
| 435 |
+
lock.workshop,"Workshop Lock"
|
| 436 |
+
lock.workshop_cabinet,Workshop cabinet lock
|
| 437 |
+
lock.yard_shed,"Yard Shed Lock"
|
| 438 |
+
media_player.apple_tv,Apple TV media player
|
| 439 |
+
media_player.basement,"Basement Media Player"
|
| 440 |
+
media_player.bose_bedroom,"Bose Bedroom"
|
| 441 |
+
media_player.bose_living,"Bose Living Room"
|
| 442 |
+
media_player.chrome_cast_bedroom,Bedroom Chromecast
|
| 443 |
+
media_player.chromecast,"Chromecast Media"
|
| 444 |
+
media_player.echo_dot,Kitchen Echo Dot
|
| 445 |
+
media_player.fire_tv_stick,Fire TV Stick
|
| 446 |
+
media_player.fire_tv,"Fire TV Media"
|
| 447 |
+
media_player.garage,"Garage Media Player"
|
| 448 |
+
media_player.guest_room,"Guest Room Media"
|
| 449 |
+
media_player.home_theater,"Home Theater Media"
|
| 450 |
+
media_player.ipad_kitchen,Kitchen iPad
|
| 451 |
+
media_player.kitchen,"Kitchen Media Player"
|
| 452 |
+
media_player.laptop_stream,Streaming laptop
|
| 453 |
+
media_player.living_room,"Living Room Media"
|
| 454 |
+
media_player.master_bedroom,"Master Bedroom Media"
|
| 455 |
+
media_player.nintendo_switch,Nintendo Switch
|
| 456 |
+
media_player.nursery,"Nursery Media Player"
|
| 457 |
+
media_player.office,"Office Media Player"
|
| 458 |
+
media_player.patio,"Patio Media Player"
|
| 459 |
+
media_player.ps5_living_room,Living room PS5
|
| 460 |
+
media_player.roku_bedroom,"Roku Master Bedroom"
|
| 461 |
+
media_player.roku_bedroom,Bedroom Roku player
|
| 462 |
+
media_player.roku_living,"Roku Living Room"
|
| 463 |
+
media_player.samsung_tv,Living room TV
|
| 464 |
+
media_player.sonos_bedroom,"Sonos Master Bedroom"
|
| 465 |
+
media_player.sonos_kitchen,"Sonos Kitchen"
|
| 466 |
+
media_player.sonos_kitchen,Kitchen Sonos speaker
|
| 467 |
+
media_player.sonos_living,"Sonos Living Room"
|
| 468 |
+
media_player.soundbar_living_room,Living room soundbar
|
| 469 |
+
media_player.xbox_den,Den Xbox console
|
| 470 |
+
media_player.sony_bravia_tv,Sony Smart LED TV
|
| 471 |
+
media_player.samsung_qled_tv,Samsung Quantum Dot TV
|
| 472 |
+
media_player.lg_oled_tv,LG OLED Television
|
| 473 |
+
media_player.panasonic_4k_bluray_player,Panasonic Blueray Player
|
| 474 |
+
media_player.denon_av_receiver,Denon Audio-Video Receiver
|
| 475 |
+
media_player.onkyo_tx_sr,Onkyo Home Theater Receiver
|
| 476 |
+
media_player.google_nest_hub,Google Assistant Smart Display
|
| 477 |
+
media_player.amazon_echo_show,Amazon Echo Smart Screen
|
| 478 |
+
media_player.apple_tv_4k,Apple 4K Streaming Device
|
| 479 |
+
media_player.roku_ultra,Roku High-Performance Streamer
|
| 480 |
+
media_player.xbox_one,Xbox One
|
| 481 |
+
media_player.playstation_5,Sony PS5
|
| 482 |
+
media_player.joes_ps5,"Joe's PS5"
|
| 483 |
+
media_player.nintendo_switch_dock,Nintendo Console Dock
|
| 484 |
+
media_player.sony_4k_projector,Sony Home Cinema Projector
|
| 485 |
+
media_player.epson_home_cinema,Epson Video Projector
|
| 486 |
+
media_player.bose_home_speaker,Bose Wireless Speaker
|
| 487 |
+
media_player.sonos_beam,Sonos Compact Soundbar
|
| 488 |
+
media_player.harman_kardon_aura,Harman Kardon Glass Speaker
|
| 489 |
+
media_player.bang_olufsen_beovision,B&O High-End Television
|
| 490 |
+
media_player.philips_ambilight_tv,Philips LED Backlit TV
|
| 491 |
+
media_player.vizio_smartcast_tv,Vizio Cast-Enabled TV
|
| 492 |
+
media_player.sony_ps_lx310bt,Sony Bluetooth Turntable
|
| 493 |
+
media_player.audio_technica_at_lp120,Audio-Technica Record Player
|
| 494 |
+
media_player.samsung_hw_q90r,Samsung Surround Soundbar
|
| 495 |
+
media_player.sonos_arc,Sonos Smart Soundbar
|
| 496 |
+
media_player.home_theater_system_living_room,Living Room Home Theater
|
| 497 |
+
media_player.desktop_computer_media_suite,Desktop Computer Media Center
|
| 498 |
+
media_player.wall_mounted_tv_bedroom,Bedroom Wall-Mounted TV
|
| 499 |
+
media_player.kitchen_radio,Kitchen Radio Player
|
| 500 |
+
media_player.bathroom_speaker_system,Waterproof Bathroom Speaker
|
| 501 |
+
media_player.garage_workshop_stereo,Garage Workshop Stereo
|
| 502 |
+
media_player.patio_outdoor_speakers,Patio Outdoor Speakers
|
| 503 |
+
media_player.basement_projector_setup,Basement Projector System
|
| 504 |
+
media_player.office_pc_speakers,Office Computer Speakers
|
| 505 |
+
media_player.bedside_alarm_clock_radio,Bedside Alarm Clock Radio
|
| 506 |
+
media_player.gaming_room_console,Gaming Room Console
|
| 507 |
+
media_player.lounge_hi_fi_system,Lounge Hi-Fi Audio
|
| 508 |
+
media_player.dining_room_jukebox,Dining Room Jukebox
|
| 509 |
+
media_player.guest_room_tv_set,Guest Room Television
|
| 510 |
+
media_player.study_room_audio_book_player,Study Audio Book Player
|
| 511 |
+
media_player.sunroom_cd_player,Sunroom CD Player
|
| 512 |
+
media_player.attic_vinyl_turntable,Attic Vinyl Record Player
|
| 513 |
+
media_player.backyard_outdoor_projector,Backyard Projector
|
| 514 |
+
media_player.entryway_voice_assistant,Entryway Voice Assistant
|
| 515 |
+
media_player.hallway_wall_speaker,Hallway Wall Speaker
|
| 516 |
+
switch.attic_lights,"Attic Lights Switch"
|
| 517 |
+
switch.balcony_lighting,Balcony lighting control
|
| 518 |
+
switch.basement_lights,"Basement Lights Switch"
|
| 519 |
+
switch.bathroom_fan,"Bathroom Fan Switch"
|
| 520 |
+
switch.bedroom_lights,"Bedroom Lights Switch"
|
| 521 |
+
switch.boathouse_lights,"Boathouse Lights Switch"
|
| 522 |
+
switch.closet_lighting,Closet lighting control
|
| 523 |
+
switch.conservatory_lights,"Conservatory Lights Switch"
|
| 524 |
+
switch.deck_lights,"Deck Lighting Switch"
|
| 525 |
+
switch.den_lights,"Den Lights Switch"
|
| 526 |
+
switch.dining_room_lights,"Dining Room Lights Switch"
|
| 527 |
+
switch.driveway_lights,Driveway lighting control
|
| 528 |
+
switch.front_gate_lighting,Front gate lights switch
|
| 529 |
+
switch.front_yard_lights,"Front Yard Lights Switch"
|
| 530 |
+
switch.garage_door_opener,"Garage Door Opener Switch"
|
| 531 |
+
switch.garden_lights,Garden lighting control
|
| 532 |
+
switch.guest_room_lights,"Guest Room Lights Switch"
|
| 533 |
+
switch.hallway_lights,"Hallway Lights Switch"
|
| 534 |
+
switch.home_theater_lighting,Home theater lights control
|
| 535 |
+
switch.kitchen_lights,"Kitchen Lights Switch"
|
| 536 |
+
switch.laundry_room_lights,"Laundry Room Lights Switch"
|
| 537 |
+
switch.living_room_lights,"Living Room Lights Switch"
|
| 538 |
+
switch.loft_lights,"Loft Lights Switch"
|
| 539 |
+
switch.master_bedroom_lights,"Master Bedroom Lights Switch"
|
| 540 |
+
switch.office_lights,"Office Lights Switch"
|
| 541 |
+
switch.outdoor_security_lights,"Outdoor Security Lights Switch"
|
| 542 |
+
switch.pantry_lights,"Pantry Lights Switch"
|
| 543 |
+
switch.patio_lights,"Patio Lights Switch"
|
| 544 |
+
switch.playroom_lights,"Playroom Lights Switch"
|
| 545 |
+
switch.pool_area_lighting,Pool area lighting control
|
| 546 |
+
switch.porch_lights,"Porch Lights Switch"
|
| 547 |
+
switch.rear_yard_lights,"Rear Yard Lights Switch"
|
| 548 |
+
switch.sauna_lights,"Sauna Lights Switch"
|
| 549 |
+
switch.security_system,Security system switch
|
| 550 |
+
switch.shed_lights,"Shed Lights Switch"
|
| 551 |
+
switch.stairway_lights,"Stairway Lights Switch"
|
| 552 |
+
switch.study_room_lights,"Study Room Lights Switch"
|
| 553 |
+
switch.sunroom_lights,"Sunroom Lights Switch"
|
| 554 |
+
switch.terrace_lighting,Terrace lighting control
|
| 555 |
+
switch.under_cabinet_lights,"Under Cabinet Lights Switch"
|
| 556 |
+
switch.utility_room_lights,"Utility Room Lights Switch"
|
| 557 |
+
switch.walkway_lights,"Walkway Lights Switch"
|
| 558 |
+
switch.warehouse_lights,"Warehouse Lights Switch"
|
| 559 |
+
switch.water_feature_lights,"Water Feature Lights Switch"
|
| 560 |
+
switch.workshop_lights,"Workshop Lights Switch"
|
| 561 |
+
switch.yard_floodlights,"Yard Floodlights Switch"
|
| 562 |
+
switch.zoo_enclosure_lighting,Zoo enclosure lighting control
|
| 563 |
+
switch.pool_pump,"Pool Pump Switch"
|
| 564 |
+
switch.irrigation_system,"Irrigation System Switch"
|
| 565 |
+
switch.garage_workshop_lights,"Garage Workshop Lights Switch"
|
| 566 |
+
climate.nest_learning,"Nest Learning Thermostat"
|
| 567 |
+
climate.ecobee_smart,"Ecobee SmartThermostat"
|
| 568 |
+
climate.honeywell_lyric_t6,"Honeywell Lyric T6 Pro"
|
| 569 |
+
climate.emerson_sensi_touch,"Emerson Sensi Touch Wi-Fi Thermostat"
|
| 570 |
+
climate.bosch_bcc100,"Bosch BCC100 Connected Control"
|
| 571 |
+
climate.johnson_glas,"Johnson Controls GLAS Smart Thermostat"
|
| 572 |
+
climate.thermostat_lux_geo,"Lux Geo Wi-Fi Thermostat"
|
| 573 |
+
climate.tado_smart,"Tado Smart Thermostat"
|
| 574 |
+
climate.trane_comfortlink_ii,"Trane ComfortLink II XL1050"
|
| 575 |
+
climate.carrier_cor,"Carrier Cor Wi-Fi Thermostat"
|
| 576 |
+
climate.netatmo_smart,"Netatmo Smart Thermostat"
|
| 577 |
+
climate.sinope_smart,"Sinopé Smart Thermostat"
|
| 578 |
+
climate.kono_thermostat,"Kono Smart Thermostat"
|
| 579 |
+
climate.mysa_smart_thermostat,"Mysa Smart Thermostat for Electric Baseboard Heaters"
|
| 580 |
+
climate.zen_wifi_thermostat,"Zen Thermostat WiFi Edition"
|
piles/pile_of_media_names.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
piles/pile_of_responses.csv
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"service","device_type","response_1","response_2","response_3"
|
| 2 |
+
"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."
|
| 3 |
+
"turn_off","light","Turning off the light as requested.","I'll switch off the light for you.","Sure, turning off the light."
|
| 4 |
+
"toggle","light","Toggling the light for you.","Switching the light's state now.","I'll toggle the light for you."
|
| 5 |
+
"turn_on","fan","Turning on the fan for you.","I'll get the fan going for you.","Sure, turning on the fan now."
|
| 6 |
+
"turn_off","fan","Switching off the fan as requested.","I'll turn off the fan for you.","Okay, turning off the fan."
|
| 7 |
+
"toggle","fan","I'll toggle the fan's state for you.","Toggling the fan now.","Switching the fan's state for you."
|
| 8 |
+
"increase_speed","fan","Increasing the fan speed for you.","Sure, speeding up the fan now.","I'll go ahead and make the fan faster."
|
| 9 |
+
"decrease_speed","fan","Reducing the fan speed as you requested.","I'll slow down the fan for you.","Sure, decreasing the fan speed."
|
| 10 |
+
"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."
|
| 11 |
+
"close","garage_door","Closing the garage door as requested.","I'll shut the garage door for you.","Sure, closing the garage door."
|
| 12 |
+
"stop","garage_door","Stopping the garage door now.","I'll stop the garage door for you.","Sure, I'll halt the garage door movement."
|
| 13 |
+
"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."
|
| 14 |
+
"open","blinds","Opening the blinds for you.","I'll go ahead and open the blinds.","Sure, opening the blinds now."
|
| 15 |
+
"close","blinds","Closing the blinds as you requested.","I'll close the blinds for you.","Sure, closing the blinds."
|
| 16 |
+
"stop","blinds","Stopping the blinds now.","I'll stop the blinds for you.","Sure, halting the blinds movement."
|
| 17 |
+
"toggle","blinds","Toggling the blinds state for you.","Switching the blinds' state now.","I'll toggle the blinds for you."
|
| 18 |
+
"turn_on","media_player","Turning on the media player for you.","I'll get the media player going.","Sure, activating the media player."
|
| 19 |
+
"turn_off","media_player","Turning off the media player as requested.","I'll switch off the media player.","Sure, deactivating the media player."
|
| 20 |
+
"toggle","media_player","Toggling the media player for you.","Switching the media player's state.","I'll toggle the media player."
|
| 21 |
+
"volume_up","media_player","Increasing the volume for you.","Sure, turning up the volume now.","I'll go ahead and raise the volume."
|
| 22 |
+
"volume_down","media_player","Reducing the volume as you requested.","I'll turn down the volume for you.","Sure, lowering the volume."
|
| 23 |
+
"volume_mute","media_player","Muting the volume for you.","I'll mute the media player now.","Sure, muting the volume."
|
| 24 |
+
"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."
|
| 25 |
+
"media_play","media_player","Starting media playback.","I'll start playing the media for you.","Sure, beginning playback."
|
| 26 |
+
"media_pause","media_player","Pausing the media playback.","I'll pause the media for you.","Sure, pausing playback."
|
| 27 |
+
"media_stop","media_player","Stopping the media playback.","I'll stop the media for you.","Sure, halting playback."
|
| 28 |
+
"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."
|
| 29 |
+
"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."
|
| 30 |
+
"lock","lock","Locking the door for you.","I'll go ahead and lock the door.","Sure, securing the lock."
|
| 31 |
+
"unlock","lock","Unlocking the door as you requested.","I'll unlock the door for you.","Sure, unlocking the door."
|
| 32 |
+
"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."
|
| 33 |
+
"turn_off","switch","Turning off the switch as requested.","I'll switch off the device for you.","Sure, turning off the switch."
|
| 34 |
+
"toggle","switch","Toggling the switch for you.","Changing the switch's state now.","I'll toggle the switch for you."
|
piles/pile_of_room_names.csv
ADDED
|
File without changes
|
piles/pile_of_status_requests.csv
ADDED
|
@@ -0,0 +1,244 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
device_type,state,english_phrase,assistant_response
|
| 2 |
+
light,on,Is the <device_name> on,The <device_name> is currently on
|
| 3 |
+
light,on,Can you tell me the status of the <device_name>,The <device_name> is on
|
| 4 |
+
light,off,What is the <device_name> doing,The <device_name> is off
|
| 5 |
+
light,off,Is the <device_name> off,The <device_name> is currently off
|
| 6 |
+
fan,on,Is the <device_name> on,The <device_name> is currently on
|
| 7 |
+
fan,on,Can you check if the <device_name> is working,The <device_name> is on
|
| 8 |
+
fan,off,Is the <device_name> off,The <device_name> is currently off
|
| 9 |
+
fan,off,What is the current status of the <device_name>,The <device_name> is off
|
| 10 |
+
garage_door,open,Is the <device_name> open,The <device_name> is currently open
|
| 11 |
+
garage_door,open,Can you tell me if the <device_name> is open,The <device_name> is open
|
| 12 |
+
garage_door,closed,Is the <device_name> closed,The <device_name> is currently closed
|
| 13 |
+
garage_door,closed,What's the status of the <device_name>,The <device_name> is closed
|
| 14 |
+
garage_door,opening,Is the <device_name> opening,The <device_name> is currently opening
|
| 15 |
+
garage_door,opening,What is the <device_name> doing,The <device_name> is opening
|
| 16 |
+
garage_door,closing,Is the <device_name> closing,The <device_name> is currently closing
|
| 17 |
+
garage_door,closing,Can you tell me if the <device_name> is closing,The <device_name> is closing
|
| 18 |
+
blinds,open,Are the <device_name> open,The <device_name> are currently open
|
| 19 |
+
blinds,open,What's the status of the <device_name>,The <device_name> are open
|
| 20 |
+
blinds,closed,Are the <device_name> closed,The <device_name> are currently closed
|
| 21 |
+
blinds,closed,Can you check if the <device_name> are closed,The <device_name> are closed
|
| 22 |
+
blinds,opening,Are the <device_name> opening,The <device_name> are currently opening
|
| 23 |
+
blinds,opening,What is the <device_name> doing,The <device_name> are opening
|
| 24 |
+
blinds,closing,Are the <device_name> closing,The <device_name> are currently closing
|
| 25 |
+
blinds,closing,What's the status of the <device_name>,The <device_name> are closing
|
| 26 |
+
media_player,on,Is the <device_name> on,The <device_name> is currently on
|
| 27 |
+
media_player,on,What's the current status of the <device_name>,The <device_name> is on
|
| 28 |
+
media_player,off,Is the <device_name> off,The <device_name> is currently off
|
| 29 |
+
media_player,off,Can you tell me if the <device_name> is off,The <device_name> is off
|
| 30 |
+
media_player,idle,What's the <device_name> doing,The <device_name> is idle
|
| 31 |
+
media_player,idle,Is the <device_name> idle,The <device_name> is currently idle
|
| 32 |
+
media_player,playing,Is the <device_name> playing,The <device_name> is currently playing
|
| 33 |
+
media_player,playing,Can you tell me if the <device_name> is playing,The <device_name> is playing
|
| 34 |
+
media_player,paused,What's the status of the <device_name>,The <device_name> is paused
|
| 35 |
+
media_player,paused,Is the <device_name> paused,The <device_name> is currently paused
|
| 36 |
+
media_player,standby,What is the <device_name> doing,The <device_name> is in standby
|
| 37 |
+
media_player,standby,Is the <device_name> in standby,The <device_name> is currently in standby
|
| 38 |
+
lock,unlocked,Is the <device_name> unlocked,The <device_name> is currently unlocked
|
| 39 |
+
lock,unlocked,What's the status of the <device_name>,The <device_name> is unlocked
|
| 40 |
+
lock,locked,Is the <device_name> locked,The <device_name> is currently locked
|
| 41 |
+
lock,locked,Can you tell me if the <device_name> is locked,The <device_name> is locked
|
| 42 |
+
lock,unlocking,What is the <device_name> doing,The <device_name> is unlocking
|
| 43 |
+
lock,unlocking,Is the <device_name> unlocking,The <device_name> is currently unlocking
|
| 44 |
+
lock,locking,Is the <device_name> locking,The <device_name> is currently locking
|
| 45 |
+
lock,locking,What's the status of the <device_name>,The <device_name> is locking
|
| 46 |
+
lock,jammed,What is the <device_name> doing,The <device_name> is jammed
|
| 47 |
+
lock,jammed,Is the <device_name> jammed,The <device_name> is currently jammed
|
| 48 |
+
light,on,Is the <device_name> active,The <device_name> is currently on
|
| 49 |
+
light,on,Is the <device_name> powered,The <device_name> is on
|
| 50 |
+
light,off,Is the <device_name> deactivated,The <device_name> is currently off
|
| 51 |
+
fan,on,Is the <device_name> spinning,The <device_name> is currently on
|
| 52 |
+
fan,on,Is the <device_name> blowing air,The <device_name> is on
|
| 53 |
+
fan,off,Is the <device_name> idle,The <device_name> is currently off
|
| 54 |
+
fan,off,Is the <device_name> still,The <device_name> is off
|
| 55 |
+
lock,unlocked,Is the <device_name> open,The <device_name> is currently unlocked
|
| 56 |
+
lock,unlocked,Is the <device_name> unsecured,The <device_name> is unlocked
|
| 57 |
+
lock,locked,Is the <device_name> secure,The <device_name> is currently locked
|
| 58 |
+
lock,locked,Is the <device_name> sealed,The <device_name> is locked
|
| 59 |
+
garage_door,open,Is the <device_name> unsealed,The <device_name> is currently open
|
| 60 |
+
garage_door,closed,Is the <device_name> shut,The <device_name> is currently closed
|
| 61 |
+
blinds,open,Is the <device_name> pulled up,The <device_name> are currently open
|
| 62 |
+
blinds,closed,Is the <device_name> pulled down,The <device_name> are currently closed
|
| 63 |
+
light,on,Is the <device_name> lit,The <device_name> is currently on
|
| 64 |
+
light,off,Is the <device_name> turned off,Yes <device_name> is off
|
| 65 |
+
light,on,Uh can you check if the <device_name> is on or something,The <device_name> is currently on
|
| 66 |
+
light,off,Hey what's up with the <device_name> is it off,The <device_name> is currently off
|
| 67 |
+
fan,on,So is the <device_name> whirling away,The <device_name> is indeed on
|
| 68 |
+
fan,off,Any idea if the <device_name> is off,The <device_name> is currently off
|
| 69 |
+
lock,unlocked,Hey is the <device_name> unlocked or what,The <device_name> is currently unlocked
|
| 70 |
+
lock,locked,Can you tell me if the <device_name> is all locked up,The <device_name> is indeed locked
|
| 71 |
+
garage_door,open,Hey did we leave the <device_name> open,Yes the <device_name> is currently open
|
| 72 |
+
garage_door,closed,Is the <device_name> actually closed,The <device_name> is indeed closed
|
| 73 |
+
blinds,open,Are the <device_name> up or what,The <device_name> are currently open
|
| 74 |
+
blinds,closed,So did we lower the <device_name>,The <device_name> are indeed closed
|
| 75 |
+
light,on,Hey is the <device_name> shining,The <device_name> is currently on
|
| 76 |
+
light,off,Uh is the <device_name> off,The <device_name> is indeed off
|
| 77 |
+
fan,on,Can you confirm if the <device_name> is running,The <device_name> is currently on
|
| 78 |
+
fan,off,Is the <device_name> taking a break,The <device_name> is off at the moment
|
| 79 |
+
lock,unlocked,So is the <device_name> open,The <device_name> is currently unlocked
|
| 80 |
+
lock,locked,Is the <device_name> bolted,The <device_name> is indeed locked
|
| 81 |
+
light,on,Is the <device_name> off,Actually the <device_name> is currently on
|
| 82 |
+
light,off,Is the <device_name> on,No the <device_name> is off right now
|
| 83 |
+
fan,on,Is the <device_name> off,Actually the <device_name> is on at the moment
|
| 84 |
+
fan,off,Is the <device_name> blowing air,Sorry the <device_name> is currently off
|
| 85 |
+
lock,locked,Is the <device_name> unlocked,No the <device_name> is currently locked
|
| 86 |
+
lock,unlocked,Is the <device_name> locked,No the <device_name> is currently unlocked
|
| 87 |
+
garage_door,open,Is the <device_name> closed,No the <device_name> is currently open
|
| 88 |
+
garage_door,closed,Is the <device_name> open,No the <device_name> is currently closed
|
| 89 |
+
blinds,open,Are the <device_name> closed,No the <device_name> are currently open
|
| 90 |
+
blinds,closed,Are the <device_name> open,No the <device_name> are currently closed
|
| 91 |
+
light,on,Uh can you check if the <device_name> is off,No the <device_name> is actually on
|
| 92 |
+
light,off,Hey is the <device_name> shining,No the <device_name> is currently off
|
| 93 |
+
fan,on,Is the <device_name> taking a break,No the <device_name> is on right now
|
| 94 |
+
fan,off,Is the <device_name> whirling away,No the <device_name> is off at the moment
|
| 95 |
+
lock,unlocked,Is the <device_name> bolted,No the <device_name> is currently unlocked
|
| 96 |
+
lock,locked,Is the <device_name> free and clear,No the <device_name> is actually locked
|
| 97 |
+
garage_door,open,Is the <device_name> shut,No the <device_name> is currently open
|
| 98 |
+
garage_door,closed,Did we leave the <device_name> open,No the <device_name> is closed
|
| 99 |
+
blinds,open,Did we lower the <device_name>,No the <device_name> are actually open
|
| 100 |
+
blinds,closed,Is the <device_name> pulled up,No the <device_name> are currently closed
|
| 101 |
+
media_player,on,Is the <device_name> off,No the <device_name> is currently on
|
| 102 |
+
media_player,off,Is the <device_name> playing,No the <device_name> is off right now
|
| 103 |
+
media_player,idle,Is the <device_name> playing some music,No the <device_name> is idle at the moment
|
| 104 |
+
media_player,playing,Is the <device_name> paused,No the <device_name> is actually playing
|
| 105 |
+
media_player,paused,Is the <device_name> in standby,No the <device_name> is paused right now
|
| 106 |
+
media_player,standby,Is the <device_name> playing,No the <device_name> is in standby
|
| 107 |
+
garage_door,opening,Is the <device_name> closing,No the <device_name> is currently opening
|
| 108 |
+
garage_door,closing,Is the <device_name> opening,No the <device_name> is currently closing
|
| 109 |
+
blinds,opening,Are the <device_name> closing,No the <device_name> are opening
|
| 110 |
+
blinds,closing,Are the <device_name> opening,No the <device_name> are closing
|
| 111 |
+
lock,unlocking,Is the <device_name> locking,No the <device_name> is unlocking
|
| 112 |
+
lock,locking,Is the <device_name> unlocking,No the <device_name> is locking
|
| 113 |
+
lock,jammed,Is the <device_name> unlocked,No the <device_name> is jammed
|
| 114 |
+
light,on,Is the <device_name> dark,No the <device_name> is currently on
|
| 115 |
+
light,off,Is the <device_name> shining,No the <device_name> is off
|
| 116 |
+
fan,on,Is the <device_name> idle,No the <device_name> is actually on
|
| 117 |
+
fan,off,Is the <device_name> blowing air,No the <device_name> is off right now
|
| 118 |
+
lock,unlocked,Is the <device_name> secure,No the <device_name> is currently unlocked
|
| 119 |
+
lock,locked,Is the <device_name> open,No the <device_name> is locked
|
| 120 |
+
lock,jammed,Is the <device_name> locking,No the <device_name> is jammed
|
| 121 |
+
light,on,Is the <device_name> off,No the <device_name> is on
|
| 122 |
+
light,off,Is the <device_name> active,No the <device_name> is off
|
| 123 |
+
light,on,Is the <device_name> on or off,The <device_name> is on
|
| 124 |
+
light,off,Is the <device_name> on or off,The <device_name> is off
|
| 125 |
+
fan,on,Is the <device_name> on or off,The <device_name> is on
|
| 126 |
+
fan,off,Is the <device_name> on or off,The <device_name> is off
|
| 127 |
+
garage_door,open,Is the <device_name> open or closed,The <device_name> is open
|
| 128 |
+
garage_door,closed,Is the <device_name> open or closed,The <device_name> is closed
|
| 129 |
+
blinds,open,Are the <device_name> open or closed,The <device_name> are open
|
| 130 |
+
blinds,closed,Are the <device_name> open or closed,The <device_name> are closed
|
| 131 |
+
media_player,on,Is the <device_name> on or off,The <device_name> is on
|
| 132 |
+
media_player,off,Is the <device_name> on or off,The <device_name> is off
|
| 133 |
+
lock,unlocked,Is the <device_name> locked or unlocked,The <device_name> is unlocked
|
| 134 |
+
lock,locked,Is the <device_name> locked or unlocked,The <device_name> is locked
|
| 135 |
+
media_player,playing,Is the <device_name> playing or paused,The <device_name> is playing
|
| 136 |
+
media_player,paused,Is the <device_name> playing or paused,The <device_name> is paused
|
| 137 |
+
garage_door,opening,Is the <device_name> opening or closing,The <device_name> is opening
|
| 138 |
+
garage_door,closing,Is the <device_name> opening or closing,The <device_name> is closing
|
| 139 |
+
blinds,opening,Are the <device_name> opening or closing,The <device_name> are opening
|
| 140 |
+
blinds,closing,Are the <device_name> opening or closing,The <device_name> are closing
|
| 141 |
+
lock,unlocking,Is the <device_name> locking or unlocking,The <device_name> is unlocking
|
| 142 |
+
lock,locking,Is the <device_name> locking or unlocking,The <device_name> is locking
|
| 143 |
+
lock,jammed,Is the <device_name> locked or jammed,The <device_name> is jammed
|
| 144 |
+
media_player,idle,Is the <device_name> idle or in standby,The <device_name> is idle
|
| 145 |
+
media_player,standby,Is the <device_name> idle or in standby,The <device_name> is in standby
|
| 146 |
+
light,on,Is the <device_name> on or dim,The <device_name> is on
|
| 147 |
+
light,off,Is the <device_name> on or dim,The <device_name> is off
|
| 148 |
+
fan,on,Is the <device_name> spinning or still,The <device_name> is spinning
|
| 149 |
+
fan,off,Is the <device_name> spinning or still,The <device_name> is still
|
| 150 |
+
lock,unlocked,Is the <device_name> secure or unsecure,The <device_name> is unsecure
|
| 151 |
+
lock,locked,Is the <device_name> secure or unsecure,The <device_name> is secure
|
| 152 |
+
lock,jammed,Is the <device_name> secure or jammed,The <device_name> is jammed
|
| 153 |
+
light,on,What's the current condition of the <device_name>,The <device_name> is on
|
| 154 |
+
light,off,How's the <device_name> looking right now,The <device_name> is off
|
| 155 |
+
fan,on,What's happening with the <device_name>,The <device_name> is on
|
| 156 |
+
fan,off,Can you give me an update on the <device_name>,The <device_name> is off
|
| 157 |
+
garage_door,open,Fill me in on the <device_name> would you,The <device_name> is open
|
| 158 |
+
garage_door,closed,What's the situation with the <device_name>,The <device_name> is closed
|
| 159 |
+
blinds,open,What's the latest on the <device_name>,The <device_name> are open
|
| 160 |
+
blinds,closed,Can you update me on the <device_name>,The <device_name> are closed
|
| 161 |
+
media_player,on,What's the status of the <device_name>,The <device_name> is on
|
| 162 |
+
media_player,off,How's the <device_name> doing,The <device_name> is off
|
| 163 |
+
lock,unlocked,What's the word on the <device_name>,The <device_name> is unlocked
|
| 164 |
+
lock,locked,How's it going with the <device_name>,The <device_name> is locked
|
| 165 |
+
media_player,playing,Can you clue me in on the <device_name>,The <device_name> is playing
|
| 166 |
+
media_player,paused,What's going down with the <device_name>,The <device_name> is paused
|
| 167 |
+
garage_door,opening,Any news on the <device_name>,The <device_name> is opening
|
| 168 |
+
garage_door,closing,What's the scoop on the <device_name>,The <device_name> is closing
|
| 169 |
+
blinds,opening,Got any updates on the <device_name>,The <device_name> are opening
|
| 170 |
+
blinds,closing,What's happening with the <device_name> now,The <device_name> are closing
|
| 171 |
+
lock,unlocking,What's the latest update on the <device_name>,The <device_name> is unlocking
|
| 172 |
+
lock,locking,Any changes with the <device_name>,The <device_name> is locking
|
| 173 |
+
light,on,What's up with the <device_name>,The <device_name> is on
|
| 174 |
+
light,off,whats the <device_name> status,The <device_name> is off
|
| 175 |
+
fan,on,Is <device_name> active,The <device_name> is on
|
| 176 |
+
fan,off,Status of <device_name>,The <device_name> is off
|
| 177 |
+
garage_door,open,<device_name> update,The <device_name> is open
|
| 178 |
+
garage_door,closed,<device_name> current state,The <device_name> is closed
|
| 179 |
+
blinds,open,How's the <device_name>,The <device_name> are open
|
| 180 |
+
blinds,closed,Update on <device_name>,The <device_name> are closed
|
| 181 |
+
media_player,on,what is the State of <device_name>,The <device_name> is on
|
| 182 |
+
media_player,off,Any news on <device_name>,The <device_name> is off
|
| 183 |
+
lock,unlocked,How's the <device_name>,The <device_name> is unlocked
|
| 184 |
+
lock,locked,<device_name> okay,The <device_name> is locked
|
| 185 |
+
media_player,playing,Is <device_name> active,The <device_name> is playing
|
| 186 |
+
media_player,paused,<device_name> state,The <device_name> is paused
|
| 187 |
+
garage_door,opening,What's <device_name> doing,The <device_name> is opening
|
| 188 |
+
garage_door,closing,Status of <device_name>,The <device_name> is closing
|
| 189 |
+
blinds,opening,<device_name> update,The <device_name> are opening
|
| 190 |
+
blinds,closing,How's the <device_name>,The <device_name> are closing
|
| 191 |
+
lock,unlocking,State of <device_name>,The <device_name> is unlocking
|
| 192 |
+
lock,locking,Is <device_name> okay,The <device_name> is locking
|
| 193 |
+
light,on,What's <device_name> doing,The <device_name> is on
|
| 194 |
+
light,off,Is <device_name> active,The <device_name> is off
|
| 195 |
+
fan,on,<device_name> status now,The <device_name> is on
|
| 196 |
+
fan,off,Current state of <device_name>,The <device_name> is off
|
| 197 |
+
light,on,Is <device_name> working,The <device_name> is on
|
| 198 |
+
light,off,Update on <device_name>,The <device_name> is off
|
| 199 |
+
fan,on,How's the <device_name>,The <device_name> is on
|
| 200 |
+
fan,off,Status of <device_name>,The <device_name> is off
|
| 201 |
+
light,on,<device_name> condition,The <device_name> is on
|
| 202 |
+
light,off,What's up with <device_name>,The <device_name> is off
|
| 203 |
+
media_player,on;<volume>,"What's the volume on <device_name>?","The volume on <device_name> is at <volume>."
|
| 204 |
+
media_player,off,"Can you check the volume level of <device_name>?","<device_name> is off, so I can't check the volume level currently."
|
| 205 |
+
media_player,idle,"I need the current volume of <device_name>, please.","The current volume of <device_name> is <volume>."
|
| 206 |
+
media_player,playing,"Is the volume too loud on <device_name>?","The volume on <device_name> is currently set to <volume>."
|
| 207 |
+
media_player,paused,"What was the volume set to before <device_name> was paused?","Before being paused, <device_name> had a volume level of <volume>."
|
| 208 |
+
media_player,playing,"Could you increase <device_name>'s volume a bit?","I've increased the volume on <device_name>. It's now at <volume>."
|
| 209 |
+
media_player,playing,"Is the volume muted on <device_name>?","The volume on <device_name> is not muted. It's at <volume>."
|
| 210 |
+
media_player,on,"What's playing on <device_name> right now?","<media> is currently playing on <device_name>."
|
| 211 |
+
media_player,off,"Is there anything playing on <device_name>?","Nothing is playing on <device_name> as it is currently off."
|
| 212 |
+
media_player,idle,"Can you tell me what was last played on <device_name>?","The last media played on <device_name> was <media>."
|
| 213 |
+
media_player,playing,"What is playing on <device_name> at the moment?","The song <media> is playing on <device_name> right now."
|
| 214 |
+
media_player,paused,"What media was paused on <device_name>?","<media> was paused on <device_name>."
|
| 215 |
+
media_player,on,"I hear something from <device_name>, what is it?","<device_name> is not currently playing anything."
|
| 216 |
+
media_player,playing,"I like this track on <device_name>, what is it?","You're listening to <media> on <device_name>."
|
| 217 |
+
media_player,paused,"Can you name the movie that's on <device_name>?","The movie currently paused on <device_name> is <media>."
|
| 218 |
+
media_player,standby,"What was the last show watched on <device_name>?","The last show watched on <device_name> was <media>."
|
| 219 |
+
media_player,buffering,"Which episode is on <device_name> right now?","The episode on <device_name> is <media>."
|
| 220 |
+
light,on;<color>;<brightness>,"What's the brightness of <device_name>?","The brightness of <device_name> is currently at <brightness>."
|
| 221 |
+
light,on;<color>;<brightness>,"Can you tell me the color of <device_name>?","<device_name> is currently showing <color>."
|
| 222 |
+
light,on;<color>;<brightness>,"Is <device_name> set to a bright or dim setting?","<device_name> is set to a <brightness> brightness level."
|
| 223 |
+
light,on;<color>;<brightness>,"What hue is <device_name> displaying?","<device_name> is displaying a <color> hue."
|
| 224 |
+
light,on;<color>;<brightness>,"How bright is <device_name> right now?","<device_name> is currently at <brightness>% brightness."
|
| 225 |
+
light,on;<color>;<brightness>,"I'd like to know the current color of <device_name>.","The current color of <device_name> is <color>."
|
| 226 |
+
light,on;<color>;<brightness>,"Is <device_name> more on the dim side or the bright side?","<device_name> is more on the <brightness> side."
|
| 227 |
+
light,on;<color>;<brightness>,"What color setting is <device_name> on?","<device_name> is set to <color> color setting."
|
| 228 |
+
light,on;<color>;<brightness>,"Could you check the brightness level of <device_name> for me?","Sure, the brightness level of <device_name> is <brightness>."
|
| 229 |
+
light,on;<color>;<brightness>,"Tell me, what's the current hue of <device_name>?","The current hue of <device_name> is <color>."
|
| 230 |
+
light,off,"What's the brightness of <device_name>?","The device <device_name> is turned off."
|
| 231 |
+
light,off,"Can you tell me the color of <device_name>?","<device_name> is turned off."
|
| 232 |
+
light,off,"Is <device_name> set to a bright or dim setting?","No, <device_name> is turned off."
|
| 233 |
+
light,off,"What hue is <device_name> displaying?","<device_name> is actually turned off."
|
| 234 |
+
light,off,"How bright is <device_name> right now?","<device_name> is turned off."
|
| 235 |
+
media_player,playing;<media>;<volume>,"What's currently playing on <device_name>?","<device_name> is playing <media> at volume level <volume>."
|
| 236 |
+
media_player,paused;<media>;<volume>,"Can you tell me what's paused on <device_name>?","<device_name> has <media> paused at volume level <volume>."
|
| 237 |
+
media_player,idle;<volume>,"Is there anything playing on <device_name>?","<device_name> is currently idle with the volume set to <volume>."
|
| 238 |
+
media_player,playing;<media>;<volume>,"What song is <device_name> playing?","<device_name> is playing the song <media> at volume <volume>."
|
| 239 |
+
media_player,paused;<media>;<volume>,"What was the last thing played on <device_name>?","The last media played on <device_name> was <media>, currently paused at volume <volume>."
|
| 240 |
+
media_player,idle;<volume>,"Is <device_name> active right now?","<device_name> is currently idle, the volume is set to <volume>."
|
| 241 |
+
media_player,playing;<media>;<volume>,"What's on <device_name> at the moment?","<device_name> is currently playing <media> at volume <volume>."
|
| 242 |
+
media_player,paused;<media>;<volume>,"I forgot what I paused on <device_name>, can you remind me?","You paused <media> on <device_name>, and the volume is set to <volume>."
|
| 243 |
+
media_player,idle;<volume>,"Is <device_name> turned off or on?","<device_name> is on but idle, with volume at <volume>."
|
| 244 |
+
media_player,playing;<media>;<volume>,"I'd like to know what's playing on <device_name>.","Currently, <media> is playing on <device_name> at volume level <volume>."
|
piles/pile_of_templated_actions.csv
ADDED
|
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
device_type,service,english_phrase,assistant_response,multiplier
|
| 2 |
+
blinds,close,Close the <device_name>,Closing <device_name> for you,1
|
| 3 |
+
blinds,close,Lower the <device_name>,Lowering <device_name> now,1
|
| 4 |
+
blinds,close,Shut the <device_name>,Shutting <device_name> as requested,1
|
| 5 |
+
blinds,open,Lift the <device_name> blinds,Lifting <device_name> blinds as requested,1
|
| 6 |
+
blinds,open,Open the <device_name>,Opening <device_name> now,1
|
| 7 |
+
blinds,open,Raise the <device_name>,Raising <device_name> for you,1
|
| 8 |
+
blinds,stop,Freeze the <device_name>,Freezing <device_name> position,1
|
| 9 |
+
blinds,stop,Halt the <device_name>,Halting <device_name> now,1
|
| 10 |
+
blinds,stop,Stop the <device_name>,Stopping <device_name> operation,1
|
| 11 |
+
blinds,toggle,Flip the <device_name> state,Flipping <device_name> state now,1
|
| 12 |
+
blinds,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
|
| 13 |
+
blinds,toggle,Toggle the <device_name>,Toggling <device_name> for you,1
|
| 14 |
+
blinds|fan,close|turn_off,Close <device_name1> and deactivate <device_name2>,Lowering <device_name1> and stopping <device_name2>,1
|
| 15 |
+
blinds|fan,open|increase_speed,Raise the <device_name1> and speed up the <device_name2>,Raising <device_name1> and speeding up <device_name2>,1
|
| 16 |
+
blinds|light,open|turn_on,Raise <device_name1> and activate <device_name2>,Raising <device_name1> and turning on <device_name2>,1
|
| 17 |
+
fan,decrease_speed,Decrease the <device_name> speed,Reducing speed of <device_name>,1
|
| 18 |
+
fan,decrease_speed,Lower the <device_name> speed,Lowering speed of <device_name> as requested,1
|
| 19 |
+
fan,decrease_speed,Slow down the <device_name>,Slowing down <device_name> for you,1
|
| 20 |
+
fan,increase_speed,Increase the <device_name> speed,Increasing speed of <device_name>,1
|
| 21 |
+
fan,increase_speed,Ramp up the <device_name> speed,Ramping up <device_name> speed now,1
|
| 22 |
+
fan,increase_speed,Speed up the <device_name>,Speeding up <device_name> for you,1
|
| 23 |
+
fan,toggle,Flip the <device_name> on or off,Flipping <device_name> state for you,1
|
| 24 |
+
fan,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
|
| 25 |
+
fan,toggle,Toggle the <device_name>,Toggling <device_name> now,1
|
| 26 |
+
fan,turn_off,Deactivate the <device_name>,Deactivating <device_name> as requested,1
|
| 27 |
+
fan,turn_off,Stop the <device_name> please,Stopping <device_name> for you,1
|
| 28 |
+
fan,turn_off,Turn off the <device_name>,"Certainly, stopping <device_name>",1
|
| 29 |
+
fan,turn_on,Activate the <device_name>,Activating <device_name> now,1
|
| 30 |
+
fan,turn_on,Please start the <device_name>,Starting <device_name> for you,1
|
| 31 |
+
fan,turn_on,Turn on the <device_name>,"Certainly, starting <device_name>",1
|
| 32 |
+
fan|blinds,turn_off|open,Turn off <device_name1> and open <device_name2>,Stopping <device_name1> and raising <device_name2>,1
|
| 33 |
+
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
|
| 34 |
+
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
|
| 35 |
+
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
|
| 36 |
+
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
|
| 37 |
+
fan|fan,turn_on|turn_off,Turn on <device_name1> and turn off <device_name2>,Starting <device_name1> and stopping <device_name2>,1
|
| 38 |
+
fan|garage_door,increase_speed|close,Increase speed of <device_name1> and close <device_name2>,Speeding up <device_name1> and shutting <device_name2>,1
|
| 39 |
+
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
|
| 40 |
+
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
|
| 41 |
+
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
|
| 42 |
+
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
|
| 43 |
+
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
|
| 44 |
+
fan|light,turn_on|turn_off,Activate <device_name1> and deactivate <device_name2>,Activating <device_name1> and turning off <device_name2>,1
|
| 45 |
+
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
|
| 46 |
+
fan|lock,decrease_speed|unlock,Slow down the <device_name1> and unlock the <device_name2>,Slowing down <device_name1> and unlocking <device_name2>,1
|
| 47 |
+
garage_door,close,Close the <device_name>,Closing <device_name> now,1
|
| 48 |
+
garage_door,close,Lower the <device_name>,Lowering <device_name> for you,1
|
| 49 |
+
garage_door,close,Shut the <device_name>,Shutting <device_name> as requested,1
|
| 50 |
+
garage_door,open,Lift the <device_name>,Lifting <device_name> for you,1
|
| 51 |
+
garage_door,open,Open the <device_name>,Opening <device_name> now,1
|
| 52 |
+
garage_door,open,Raise the <device_name>,Raising <device_name> as requested,1
|
| 53 |
+
garage_door,stop,Freeze the <device_name>,Freezing <device_name> position now,1
|
| 54 |
+
garage_door,stop,Halt the <device_name>,"Certainly, halting <device_name>",1
|
| 55 |
+
garage_door,stop,Stop the <device_name>,Halting <device_name> operation,1
|
| 56 |
+
garage_door,toggle,Flip the <device_name> state,Flipping <device_name> state now,1
|
| 57 |
+
garage_door,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
|
| 58 |
+
garage_door,toggle,Toggle the <device_name>,Toggling <device_name> for you,1
|
| 59 |
+
garage_door|blinds,open|open,Open the <device_name1> and lift the <device_name2>,Opening <device_name1> and lifting <device_name2>,1
|
| 60 |
+
garage_door|fan,close|turn_off,Close <device_name1> and deactivate <device_name2>,Shutting <device_name1> and deactivating <device_name2>,1
|
| 61 |
+
garage_door|light,open|turn_on,Open <device_name1> and activate <device_name2>,Opening <device_name1> and switching on <device_name2>,1
|
| 62 |
+
garage_door|lock,open|unlock,Open <device_name1> and unlock <device_name2>,Opening <device_name1> and unlocking <device_name2>,1
|
| 63 |
+
light,toggle,Flip the <device_name> on or off,Flipping the <device_name> state,1
|
| 64 |
+
light,toggle,Switch the <device_name> state,Switching <device_name> state as requested,1
|
| 65 |
+
light,toggle,Toggle the <device_name> state,Toggling <device_name> for you,1
|
| 66 |
+
light,turn_off,Deactivate the <device_name>,Deactivating <device_name> as requested,1
|
| 67 |
+
light,turn_off,Please switch off the <device_name>,Switching off <device_name> now,1
|
| 68 |
+
light,turn_off,Turn off the <device_name>,"Sure, turning off <device_name>",1
|
| 69 |
+
light,turn_on,Activate the <device_name>,Activation of <device_name> in progress,1
|
| 70 |
+
light,turn_on,Can you turn on the <device_name>?,"Certainly, turning on <device_name> now",1
|
| 71 |
+
light,turn_on,Please switch on the <device_name>,Switching on <device_name> for you,1
|
| 72 |
+
light|blinds,turn_off|close,Turn off <device_name1> and close <device_name2>,Deactivating <device_name1> and closing <device_name2>,1
|
| 73 |
+
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
|
| 74 |
+
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
|
| 75 |
+
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
|
| 76 |
+
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
|
| 77 |
+
light|fan,toggle|decrease_speed,Toggle <device_name1> and slow down <device_name2>,Toggling <device_name1> and reducing speed of <device_name2>,1
|
| 78 |
+
light|fan,toggle|increase_speed,Toggle <device_name1> and speed up <device_name2>,Toggling <device_name1> and increasing speed of <device_name2>,1
|
| 79 |
+
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
|
| 80 |
+
light|fan,turn_on|toggle,Switch on <device_name1> and toggle <device_name2>,Activating <device_name1> and toggling <device_name2>,1
|
| 81 |
+
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
|
| 82 |
+
light|fan,turn_on|turn_on,Turn on both the <device_name1> and <device_name2>,Turning on both <device_name1> and <device_name2>,1
|
| 83 |
+
light|fan,turn_on|turn_on,Turn on the <device_name1> and <device_name2>,Turning on <device_name1> and <device_name2>,1
|
| 84 |
+
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
|
| 85 |
+
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
|
| 86 |
+
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
|
| 87 |
+
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
|
| 88 |
+
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
|
| 89 |
+
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
|
| 90 |
+
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
|
| 91 |
+
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
|
| 92 |
+
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
|
| 93 |
+
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
|
| 94 |
+
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
|
| 95 |
+
light|garage_door,toggle|stop,Toggle the <device_name1> and stop the <device_name2>,Toggling <device_name1> and stopping <device_name2>,1
|
| 96 |
+
light|garage_door,turn_on|open,Switch on <device_name1> and open <device_name2>,Activating <device_name1> and opening <device_name2>,1
|
| 97 |
+
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
|
| 98 |
+
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
|
| 99 |
+
light|light,toggle|toggle,Toggle both <device_name1> and <device_name2>,Toggling <device_name1> and <device_name2>,1
|
| 100 |
+
light|light,turn_on|turn_off,Turn on <device_name1> and turn off <device_name2>,Turning on <device_name1> and deactivating <device_name2>,1
|
| 101 |
+
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
|
| 102 |
+
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
|
| 103 |
+
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
|
| 104 |
+
light|lock,turn_on|lock,Turn on <device_name1> and lock <device_name2>,Activating <device_name1> and locking <device_name2>,1
|
| 105 |
+
lock,lock,Engage the <device_name> lock,Engaging lock on <device_name>,1
|
| 106 |
+
lock,lock,Lock the <device_name>,Locking <device_name> now,1
|
| 107 |
+
lock,lock,Secure the <device_name>,Securing <device_name> for you,1
|
| 108 |
+
lock,unlock,Disengage the <device_name> lock,Disengaging lock on <device_name>,1
|
| 109 |
+
lock,unlock,Unlock the <device_name>,Unlocking <device_name> now,1
|
| 110 |
+
lock,unlock,Unsecure the <device_name>,Unsecuring <device_name> for you,1
|
| 111 |
+
lock|blinds,lock|close,Lock the <device_name1> and lower the <device_name2>,Locking <device_name1> and lowering <device_name2>,1
|
| 112 |
+
lock|garage_door,lock|close,Secure the <device_name1> and shut the <device_name2>,Securing <device_name1> and shutting <device_name2>,1
|
| 113 |
+
light,turn_on,Make sure the <device_name> is on,Turning on <device_name>,1
|
| 114 |
+
fan,turn_on,Make sure the <device_name> is on,Turning on <device_name>,1
|
| 115 |
+
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
|
| 116 |
+
light,turn_off,Ensure the <device_name> is off,Turning off <device_name>,1
|
| 117 |
+
fan,turn_off,Ensure the <device_name> is off,Turning off <device_name>,1
|
| 118 |
+
garage_door,close,Make certain the <device_name> is closed,Closing <device_name>,1
|
| 119 |
+
blinds,open,See to it that the <device_name> are open,Raising <device_name>,1
|
| 120 |
+
lock,lock,Ensure <device_name> is secure,Locking <device_name>,1
|
| 121 |
+
light,toggle,Can you flip the <device_name>,Toggling <device_name>,1
|
| 122 |
+
fan,increase_speed,Step up the speed of the <device_name>,Increasing speed of <device_name>,1
|
| 123 |
+
garage_door,open,Make certain the <device_name> is open,Opening <device_name>,1
|
| 124 |
+
blinds,close,See to it that the <device_name> are closed,Lowering <device_name>,1
|
| 125 |
+
lock,unlock,Make sure <device_name> is unlocked,Unlocking <device_name>,1
|
| 126 |
+
fan,decrease_speed,Slow down the <device_name>,Reducing speed of <device_name>,1
|
| 127 |
+
light,turn_on,Confirm that the <device_name> is on,Activating <device_name>,1
|
| 128 |
+
garage_door,stop,Stop the <device_name> right now,Stopping <device_name>,1
|
| 129 |
+
light,turn_off,Confirm that the <device_name> is off,Deactivating <device_name>,1
|
| 130 |
+
garage_door,toggle,Toggle the <device_name> position,Toggling <device_name>,1
|
| 131 |
+
blinds,toggle,Switch the state of the <device_name>,Toggling <device_name>,1
|
| 132 |
+
lock,lock,Lock down the <device_name>,Securing <device_name>,1
|
| 133 |
+
fan,turn_on,Make certain the <device_name> is running,Starting <device_name>,1
|
| 134 |
+
switch,turn_on,"Can you turn on <device_name>?","Turning on <device_name> now.",1
|
| 135 |
+
switch,turn_off,"Please switch off <device_name>.","Switching off <device_name>.",1
|
| 136 |
+
switch,toggle,"Could you toggle <device_name>?","Toggling <device_name>.",1
|
| 137 |
+
switch,turn_on,"I need <device_name> on, please.","I'm turning on <device_name>.",1
|
| 138 |
+
switch,turn_off,"Turn off <device_name>, will you?","Turning off <device_name>.",1
|
| 139 |
+
switch,toggle,"Can <device_name> be toggled?","Yes, toggling <device_name>.",1
|
| 140 |
+
switch,turn_on,"Activate <device_name>.","Activating <device_name>.",1
|
| 141 |
+
switch,turn_off,"Deactivate <device_name>.","Deactivating <device_name>.",1
|
| 142 |
+
switch,toggle,"Is it possible to toggle the <device_name>?","Yes, I can toggle <device_name>.",1
|
| 143 |
+
switch,turn_on,"Let's have <device_name> on.","Sure, turning <device_name> on.",1
|
| 144 |
+
switch,turn_off,"We don't need <device_name> on anymore.","Okay, turning <device_name> off.",1
|
| 145 |
+
switch,toggle,"Toggle <device_name> for me.","Toggling <device_name> as requested.",1
|
| 146 |
+
switch,turn_on,"Switch on <device_name>, please.","Switching on <device_name> right away.",1
|
| 147 |
+
switch,turn_off,"I'd like <device_name> off now.","Okay, I'm turning off <device_name>.",1
|
| 148 |
+
switch,toggle,"Can you change the state of <device_name>?","Changing the state of <device_name>.",1
|
| 149 |
+
switch,turn_on,"Please turn on <device_name>.","Sure, lighting up <device_name> now.",1
|
| 150 |
+
switch,turn_off,"Shut off <device_name>, it's bedtime.","Shutting off <device_name> for bedtime.",1
|
| 151 |
+
switch,toggle,"A quick toggle of <device_name>, please.","Quickly toggling <device_name>.",1
|
| 152 |
+
switch,turn_on,"<device_name> needs to be on.","Turning <device_name> on as needed.",1
|
| 153 |
+
switch,turn_off,"Time to turn <device_name> off.","Turning off <device_name> now.",1
|
| 154 |
+
media_player,volume_up,"Increase the volume on <device_name>.","Increasing <device_name>'s volume.",1
|
| 155 |
+
media_player,volume_up,"Turn up <device_name> a bit.","Turning up <device_name> a bit.",1
|
| 156 |
+
media_player,volume_up,"Louder on <device_name>, please.","Making <device_name> louder.",1
|
| 157 |
+
media_player,volume_down,"Can you lower <device_name>'s volume?","Lowering <device_name>'s volume.",1
|
| 158 |
+
media_player,volume_down,"Decrease the volume on <device_name>.","Decreasing <device_name>'s volume.",1
|
| 159 |
+
media_player,volume_down,"Turn down <device_name>, please.","Turning down <device_name>.",1
|
| 160 |
+
media_player,volume_mute,"Mute <device_name>, please.","Muting <device_name>.",1
|
| 161 |
+
media_player,volume_mute,"Silence <device_name> for a moment.","Silencing <device_name>.",1
|
| 162 |
+
media_player,volume_mute,"Can you mute <device_name>?","Muting <device_name> now.",1
|
| 163 |
+
media_player,media_play,"Start playing on <device_name>.","Starting playback on <device_name>.",1
|
| 164 |
+
media_player,media_play,"Can you play <device_name>?","Playing <device_name> now.",1
|
| 165 |
+
media_player,media_play,"Play the media on <device_name>, please.","Playing media on <device_name>.",1
|
| 166 |
+
media_player,media_pause,"Pause <device_name>.","Pausing <device_name>.",1
|
| 167 |
+
media_player,media_pause,"Can you pause <device_name>?","Pausing <device_name> now.",1
|
| 168 |
+
media_player,media_pause,"Hold the playback on <device_name>, please.","Holding playback on <device_name>.",1
|
| 169 |
+
media_player,media_stop,"Stop <device_name> completely.","Stopping <device_name> completely.",1
|
| 170 |
+
media_player,media_stop,"Can you stop playback on <device_name>?","Stopping playback on <device_name>.",1
|
| 171 |
+
media_player,media_stop,"End the session on <device_name>, please.","Ending session on <device_name>.",1
|
| 172 |
+
media_player,media_next_track,"Next track on <device_name>, please.","Skipping to next track on <device_name>.",1
|
| 173 |
+
media_player,media_next_track,"Advance <device_name> to the next song.","Advancing to the next song on <device_name>.",1
|
| 174 |
+
media_player,media_next_track,"Skip this track on <device_name>.","Skipping this track on <device_name>.",1
|
| 175 |
+
media_player,media_previous_track,"Previous track on <device_name>, please.","Going back to previous track on <device_name>.",1
|
| 176 |
+
media_player,media_previous_track,"Rewind to the previous song on <device_name>.","Rewinding to the previous song on <device_name>.",1
|
| 177 |
+
media_player,media_previous_track,"Can we go back a track on <device_name>?","Going back a track on <device_name>.",1
|
| 178 |
+
climate,set_temperature,"Set the temperature to <temp_f> degrees.","Setting temperature to <temp_f> degrees.",8
|
| 179 |
+
climate,set_temperature,"Can you change the temperature to <temp_c> Celsius?","Changing temperature to <temp_c> Celsius.",8
|
| 180 |
+
climate,set_temperature,"I'd like the room at <temp_f> degrees Fahrenheit, please.","Setting the room to <temp_f> degrees Fahrenheit.",8
|
| 181 |
+
climate,set_temperature,"Please adjust the temperature to <temp_f> degrees.","Adjusting temperature to <temp_f> degrees Fahrenheit.",8
|
| 182 |
+
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
|
| 183 |
+
climate,set_temperature,"Make it warmer, set temperature at <temp_f> degrees.","Making it warmer, setting temperature to <temp_f> degrees.",8
|
| 184 |
+
climate,set_temperature,"Can you lower the temperature to <temp_c>?","Lowering the temperature to <temp_c> Celsius.",8
|
| 185 |
+
climate,set_temperature,"Raise the temperature to <temp_f> degrees, please.","Raising the temperature to <temp_f> degrees Fahrenheit.",8
|
| 186 |
+
climate,set_humidity,"Increase the humidity to <temp_c>.","Increasing humidity to <temp_c>.",8
|
| 187 |
+
climate,set_humidity,"Set the humidity level to <humidity> percent.","Setting humidity to <humidity> percent.",8
|
| 188 |
+
climate,set_humidity,"Can you adjust the humidity to <humidity> percent?","Adjusting humidity to <humidity>%.",8
|
| 189 |
+
climate,set_fan_mode,"Set the fan to high speed.","Setting the fan to high speed.",8
|
| 190 |
+
climate,set_fan_mode,"Please put the fan on low.","Putting the fan on low.",8
|
| 191 |
+
climate,set_fan_mode,"Change the fan setting to medium.","Changing the fan to medium setting.",8
|
| 192 |
+
climate,set_hvac_mode,"Switch the system to cooling mode.","Switching to cooling mode.",8
|
| 193 |
+
climate,set_hvac_mode,"Can we set the HVAC to heat?","Setting the HVAC to heat.",8
|
| 194 |
+
climate,set_hvac_mode,"Change the HVAC to automatic.","Changing HVAC to automatic mode.",8
|
| 195 |
+
light,turn_on,"Set the brightness of <device_name> to <brightness>%.","Setting the brightness of <device_name> to <brightness>%.",8
|
| 196 |
+
light,turn_on,"Dim <device_name> to <brightness> percent brightness.","Dimming <device_name> to <brightness>% brightness.",8
|
| 197 |
+
light,turn_on,"Brighten <device_name> to <brightness>.","Brightening <device_name> to <brightness>%.",8
|
| 198 |
+
light,turn_on,"Adjust <device_name> brightness to <brightness>.","Adjusting <device_name> brightness to <brightness>.",8
|
| 199 |
+
light,turn_on,"Increase <device_name>'s brightness to <brightness>.","Increasing <device_name>'s brightness to <brightness>.",8
|
| 200 |
+
light,turn_on,"Lower the brightness of <device_name> to <brightness>.","Lowering the brightness of <device_name> to <brightness>.",8
|
| 201 |
+
light,turn_on,"Can you set <device_name>'s brightness level to <brightness> percent?","Setting <device_name>'s brightness level to <brightness>%.",8
|
| 202 |
+
light,turn_on,"I'd like <device_name> at <brightness> percent brightness, please.","Setting <device_name> to <brightness>% brightness.",8
|
| 203 |
+
light,turn_on,"Can you make <device_name> <color>?","Turning <device_name> <color>.",8
|
| 204 |
+
light,turn_on,"Change the color of <device_name> to <color>.","Changing the color of <device_name> to <color>.",8
|
| 205 |
+
light,turn_on,"Change <device_name> to a <color> hue.","Changing <device_name> to a <color> hue.",8
|
| 206 |
+
light,turn_on,"Set <device_name> to be <color>.","Setting <device_name> to be <color>.",8
|
| 207 |
+
light,turn_on,"I want <device_name> to be <color>, please.","Setting <device_name> to be <color>.",8
|
| 208 |
+
light,turn_on,"Can you make <device_name> shine in <color>?","Making <device_name> shine in <color>.",8
|
| 209 |
+
light,turn_on,"Turn <device_name> to a <color> shade.","Turning <device_name> to a <color> shade.",8
|
| 210 |
+
light,turn_on,"Turn <device_name> <color>.","Turning <device_name> <color>.",8
|
| 211 |
+
light,turn_on,"I want <device_name> at a <color> setting.","Setting <device_name> to a <color>.",8
|
| 212 |
+
light,turn_on,"Set <device_name> to a <color> color.","Setting <device_name> to a <color> color.",8
|
| 213 |
+
light,turn_on,"Please set <device_name> to a <color> color.","Setting <device_name> to a <color> color.",8
|
| 214 |
+
light,turn_on,"Make <device_name> glow <color>.","Making <device_name> glow <color>.",8
|
| 215 |
+
light,turn_on,"Could you turn <device_name> to <color>?","Turning <device_name> to <color>.",8
|
| 216 |
+
light,turn_on,"Please change <device_name> to <color>.","Changing <device_name> to <color>.",8
|
| 217 |
+
light,turn_on,"Adjust <device_name> to <color> color.","Adjusting <device_name> to <color> color.",8
|
| 218 |
+
light,turn_on,"Switch <device_name> color to <color>.","Switching <device_name> color to <color>.",8
|
| 219 |
+
light,turn_on,"Can <device_name> be <color> now?","Setting <device_name> to be <color>.",8
|
| 220 |
+
light,turn_on,"Let's have <device_name> in <color>.","Setting <device_name> in <color>.",8
|
| 221 |
+
light,turn_on,"I'd like <device_name> to change to <color>.","Changing <device_name> to <color>.",8
|
| 222 |
+
light,turn_on,"Can <device_name> display a <color> light?","Making <device_name> display a <color> light.",8
|
| 223 |
+
light,turn_on,"Set <device_name> color to <color>, please.","Setting <device_name> color to <color>.",8
|