diff --git a/src/Integrations/Spiral/SmartHomeControlBootloader.php b/src/Integrations/Spiral/SmartHomeControlBootloader.php index 799aa94..239165d 100644 --- a/src/Integrations/Spiral/SmartHomeControlBootloader.php +++ b/src/Integrations/Spiral/SmartHomeControlBootloader.php @@ -7,6 +7,7 @@ use LLM\Agents\Agent\AgentRegistryInterface; use LLM\Agents\Agent\SmartHomeControl\ControlDeviceTool; use LLM\Agents\Agent\SmartHomeControl\GetDeviceDetailsTool; +use LLM\Agents\Agent\SmartHomeControl\GetRoomListTool; use LLM\Agents\Agent\SmartHomeControl\ListRoomDevicesTool; use LLM\Agents\Agent\SmartHomeControl\SmartHome\SmartHomeSystem; use LLM\Agents\Agent\SmartHomeControl\SmartHomeControlAgent; @@ -31,9 +32,9 @@ public function boot( ); $tools->register( + new GetRoomListTool($smartHomeSystem), new ControlDeviceTool($smartHomeSystem), new GetDeviceDetailsTool($smartHomeSystem), - new GetDeviceDetailsTool($smartHomeSystem), new ListRoomDevicesTool($smartHomeSystem), ); }