From 7120d938b907626751aed759a214ce27e2d3f27f Mon Sep 17 00:00:00 2001 From: Harvmaster Date: Tue, 3 Feb 2026 12:53:54 +0000 Subject: [PATCH] Remove unused formatting --- src/index.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/index.ts b/src/index.ts index dd22cbd..b73eb32 100644 --- a/src/index.ts +++ b/src/index.ts @@ -17,13 +17,7 @@ for await (const chunk of request) { process.stdout.write('\n') } - if (chunk.type === 'reasoning') { - // trim the starting \n from the reasoning - const reasoning = chunk.content.replace(/^\n/, ''); - process.stdout.write(reasoning); - } else { - process.stdout.write(chunk.content); - } + process.stdout.write(chunk.content); lastChunk = chunk; }