This commit is contained in:
Timothy Jaeryang Baek 2026-09-06 19:37:59 -04:00
parent d418840aa9
commit 3795d5b292

View file

@ -140,7 +140,7 @@
return (item.content ?? [])
.filter((p: any) => p && (p.type === 'output_text' || 'text' in p))
.map((p: any) => p.text ?? '')
.join('\n');
.join('');
}
function updateMessageText(idx: number, text: string) {