From 214e5b62bb177794e445ccf2e99d5be9a9381d2e Mon Sep 17 00:00:00 2001 From: AboveColin Date: Thu, 24 Sep 2026 08:12:05 +0200 Subject: [PATCH] "Turn off all the lights" counts as every device of one kind The everything option read "The whole house, with no room or device named". For "turn off all the lights" the model put 0.44 to 0.52 on it, below the 0.6 floor, and the command fell back. With the option naming every device of one kind, "all the lights", "every light" and "the lights" acted 6 of 6 times live. Commands naming an exposed device or a room still named it, 8 of 8, and "turn on all the lights" was still refused by the whole-house gate. --- custom_components/jev/interpret.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_components/jev/interpret.py b/custom_components/jev/interpret.py index 4e83f75..cdb27d5 100644 --- a/custom_components/jev/interpret.py +++ b/custom_components/jev/interpret.py @@ -189,7 +189,8 @@ def build_questions( { "entity": "One particular device is named", "area": "A room or area is named, covering what is in it", - "everything": "The whole house, with no room or device named", + "everything": "Every device, or every device of one kind such as " + "all the lights, with no room or device named", NONE: "No target is named at all", }, ),