wormclaude 1.0.41 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/theme.js +1 -1
- package/dist/tui.js +2 -1
- package/package.json +1 -1
package/dist/theme.js
CHANGED
package/dist/tui.js
CHANGED
|
@@ -131,10 +131,11 @@ export async function runTui() {
|
|
|
131
131
|
let answer = '';
|
|
132
132
|
let toolCalls = [];
|
|
133
133
|
for await (const ev of streamChat(history, allToolSchemas(), config)) {
|
|
134
|
+
// NOT: token başına drawFooter ÇAĞIRMA (uzun cevapta binlerce çizim → titreme/kaybolma).
|
|
135
|
+
// streamChars güncellenir; footer'ı 120ms'lik spinTimer çizer; yazma anında keypress çizer.
|
|
134
136
|
if (ev.type === 'text') {
|
|
135
137
|
answer += ev.text;
|
|
136
138
|
streamChars = answer.length;
|
|
137
|
-
drawFooter();
|
|
138
139
|
}
|
|
139
140
|
else if (ev.type === 'done')
|
|
140
141
|
toolCalls = ev.toolCalls || [];
|