fix: prevent typing indicator during heartbeat background tasks
This commit is contained in:
parent
1657c5e3d2
commit
424b7fe493
@ -467,7 +467,7 @@ export async function getReplyFromConfig(
|
||||
const isFirstTurnInSession = isNewSession || !systemSent;
|
||||
const isGroupChat = sessionCtx.ChatType === "group";
|
||||
const wasMentioned = ctx.WasMentioned === true;
|
||||
const shouldEagerType = !isGroupChat || wasMentioned;
|
||||
const shouldEagerType = (!isGroupChat || wasMentioned) && !opts?.isHeartbeat;
|
||||
const shouldInjectGroupIntro = Boolean(
|
||||
isGroupChat &&
|
||||
(isFirstTurnInSession || sessionEntry?.groupActivationNeedsSystemIntro),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user