From 173dd9142f4d3794bd27d6661c8e57e6d97ce05b Mon Sep 17 00:00:00 2001 From: akhisud3195 Date: Fri, 11 Jul 2025 16:11:39 +0530 Subject: [PATCH] Remove retain as control type from task agents (internal) --- .../[projectId]/entities/agent_config.tsx | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/apps/rowboat/app/projects/[projectId]/entities/agent_config.tsx b/apps/rowboat/app/projects/[projectId]/entities/agent_config.tsx index 23b248be..353568d5 100644 --- a/apps/rowboat/app/projects/[projectId]/entities/agent_config.tsx +++ b/apps/rowboat/app/projects/[projectId]/entities/agent_config.tsx @@ -10,7 +10,6 @@ import { Modal, ModalContent, ModalHeader, ModalBody, ModalFooter, Select, Selec import { PreviewModalProvider } from "../workflow/preview-modal"; import { CopilotMessage } from "@/app/lib/types/copilot_types"; import { getCopilotAgentInstructions } from "@/app/actions/copilot_actions"; -import { Dropdown, DropdownTrigger, DropdownMenu, DropdownItem } from "@heroui/react"; import { Dropdown as CustomDropdown } from "../../../lib/components/dropdown"; import { createAtMentions } from "../../../lib/components/atmentions"; import { Textarea } from "@/components/ui/textarea"; @@ -110,12 +109,16 @@ export function AgentConfig({ setShowRagCta(false); }; - // Add effect to handle control type update when transfer control is disabled + // Add effect to handle control type update when transfer control is disabled or when internal agents have invalid control type useEffect(() => { if (!USE_TRANSFER_CONTROL_OPTIONS && agent.controlType !== 'retain') { handleUpdate({ ...agent, controlType: 'retain' }); } - }, [agent.controlType, agent, handleUpdate]); + // For internal agents, "retain" is not a valid option, so change it to "relinquish_to_parent" + if (agent.outputVisibility === "internal" && agent.controlType === 'retain') { + handleUpdate({ ...agent, controlType: 'relinquish_to_parent' }); + } + }, [agent.controlType, agent.outputVisibility, agent, handleUpdate]); // Add effect to handle escape key useEffect(() => { @@ -610,11 +613,18 @@ export function AgentConfig({ handleUpdate({ ...agent, controlType: value as z.infer['controlType']