From d2506ec5428378a9d502f58b548d5ee86e8ac5ab Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Wed, 15 Jul 2026 21:26:56 +0530 Subject: [PATCH] minor(builder): hooked up isAgent to EntityBuilder --- .../src/components/builder/EntitiesTab.tsx | 22 +++++++++++++++++++ apps/gui/src/components/builder/types.ts | 1 + 2 files changed, 23 insertions(+) diff --git a/apps/gui/src/components/builder/EntitiesTab.tsx b/apps/gui/src/components/builder/EntitiesTab.tsx index 8002c83..fa4cafb 100644 --- a/apps/gui/src/components/builder/EntitiesTab.tsx +++ b/apps/gui/src/components/builder/EntitiesTab.tsx @@ -59,6 +59,7 @@ export function EntitiesTab({ attributes: [], aliases: {}, initialMemories: [], + isAgent: true, }, ]); setSelectedEntIndex(entities.length); @@ -140,6 +141,27 @@ export function EntitiesTab({ +
+
+ +
+

+ When enabled, this entity will run an autonomous LLM loop to + perceive its environment, update its memories, and generate + prose narrative actions. +

+
+ {/* Attributes */}
; initialMemories: MemoryData[]; + isAgent?: boolean; }