Skip to content

Commit

Permalink
Add missed get_room_list tool
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Sep 3, 2024
1 parent 3044a85 commit baef1d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Integrations/Spiral/SmartHomeControlBootloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -31,9 +32,9 @@ public function boot(
);

$tools->register(
new GetRoomListTool($smartHomeSystem),
new ControlDeviceTool($smartHomeSystem),
new GetDeviceDetailsTool($smartHomeSystem),
new GetDeviceDetailsTool($smartHomeSystem),
new ListRoomDevicesTool($smartHomeSystem),
);
}
Expand Down

0 comments on commit baef1d5

Please sign in to comment.