Revert "ignore: write todo"

This reverts commit 9728bec100.
This commit is contained in:
Aiden Cline
2025-11-20 14:13:56 -06:00
parent 0b6d7b3613
commit 9c171c15ed
+5 -2
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,
})
}