fix(resume): remove "New instructions for task continuation:" preface in [Task.ts](src/core/task/Task.ts:1475-1480); send raw user text

This commit is contained in:
Hannes Rudolph 2025-11-12 14:46:37 -07:00
parent f53d8c2347
commit 8aa9c1ae6c

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${responseText}`,
text: responseText,
})
}