From c1136558d8ad342b0cdde659b87aa599aad223eb Mon Sep 17 00:00:00 2001 From: akhisud3195 Date: Fri, 11 Jul 2025 14:51:24 +0530 Subject: [PATCH] Remove sender agent tag from agent messages --- apps/rowboat/app/lib/agents.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rowboat/app/lib/agents.ts b/apps/rowboat/app/lib/agents.ts index 54db8734..e1796bf5 100644 --- a/apps/rowboat/app/lib/agents.ts +++ b/apps/rowboat/app/lib/agents.ts @@ -567,7 +567,7 @@ function convertMsgsInput(messages: z.infer[]): AgentInputItem[] role: 'assistant', content: [{ type: 'output_text', - text: `Sender agent: ${msg.agentName}\nContent: ${msg.content}`, + text: `${msg.content}`, }], status: 'completed', });