fix: remove <user_message> wrapper from resume flow for plain text consistency

This commit is contained in:
Roo Code 2025-11-03 23:45:49 +00:00
parent e2d57e46fa
commit 7171bffd8c

View file

@ -1475,7 +1475,7 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
if (responseText) {
newUserContent.push({
type: "text",
text: `\n\nNew instructions for task continuation:\n<user_message>\n${responseText}\n</user_message>`,
text: `\n\nNew instructions for task continuation:\n${responseText}`,
})
}