Remove sender agent tag from agent messages

This commit is contained in:
akhisud3195 2025-07-11 14:51:24 +05:30
parent 3063c9fea9
commit c1136558d8

View file

@ -567,7 +567,7 @@ function convertMsgsInput(messages: z.infer<typeof Message>[]): AgentInputItem[]
role: 'assistant',
content: [{
type: 'output_text',
text: `Sender agent: ${msg.agentName}\nContent: ${msg.content}`,
text: `${msg.content}`,
}],
status: 'completed',
});