Typing: keep indicators active during tool runs
Closes #450 Closes #447
This commit is contained in:
@@ -68,7 +68,11 @@ export function createTypingSignaler(params: {
|
||||
|
||||
const signalToolStart = async () => {
|
||||
if (disabled) return;
|
||||
if (!typing.isActive()) return;
|
||||
if (!typing.isActive()) {
|
||||
await typing.startTypingLoop();
|
||||
typing.refreshTypingTtl();
|
||||
return;
|
||||
}
|
||||
// Keep typing indicator alive during tool execution without changing mode semantics.
|
||||
typing.refreshTypingTtl();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user