cli: add UI.empty() calls around reasoning output

This commit is contained in:
Dax Raad
2026-02-02 12:49:42 -05:00
parent 176f26850d
commit 38efdf82a1

View File

@@ -420,7 +420,9 @@ export const RunCommand = cmd({
if (!text) continue
const line = `Thinking: ${text}`
if (process.stdout.isTTY) {
UI.empty()
UI.println(`\u001b[3m${line}\u001b[0m`)
UI.empty()
continue
}
process.stdout.write(line + EOL)