Revert "ignore: write todo"

This reverts commit 5aa2078852.
This commit is contained in:
Aiden Cline 2025-11-20 14:13:56 -06:00
parent 10faf9e717
commit d2a61290b9

View file

@ -638,8 +638,11 @@ export namespace MessageV2 {
state: "output-available",
toolCallId: part.callID,
input: part.state.input,
// TODO: prolly need something better here when dealing with synthetic user messages + attachments
output: part.state.time.compacted ? "[Old tool result content cleared]" : part.state.output,
output: part.state.attachments?.length
? "[Image content moved to user message]"
: part.state.time.compacted
? "[Old tool result content cleared]"
: part.state.output,
callProviderMetadata: part.metadata,
})
}