fix: remove unused typingSignals variable in get-reply-run
This commit is contained in:
committed by
Peter Steinberger
parent
1e8b291374
commit
4c3b4aeb76
@@ -45,7 +45,7 @@ import type { createModelSelectionState } from "./model-selection.js";
|
|||||||
import { resolveQueueSettings } from "./queue.js";
|
import { resolveQueueSettings } from "./queue.js";
|
||||||
import { ensureSkillSnapshot, prependSystemEvents } from "./session-updates.js";
|
import { ensureSkillSnapshot, prependSystemEvents } from "./session-updates.js";
|
||||||
import type { TypingController } from "./typing.js";
|
import type { TypingController } from "./typing.js";
|
||||||
import { createTypingSignaler, resolveTypingMode } from "./typing-mode.js";
|
import { resolveTypingMode } from "./typing-mode.js";
|
||||||
|
|
||||||
type AgentDefaults = NonNullable<ClawdbotConfig["agents"]>["defaults"];
|
type AgentDefaults = NonNullable<ClawdbotConfig["agents"]>["defaults"];
|
||||||
type ExecOverrides = Pick<ExecToolDefaults, "host" | "security" | "ask" | "node">;
|
type ExecOverrides = Pick<ExecToolDefaults, "host" | "security" | "ask" | "node">;
|
||||||
@@ -251,11 +251,6 @@ export async function runPreparedReply(
|
|||||||
wasMentioned,
|
wasMentioned,
|
||||||
isHeartbeat,
|
isHeartbeat,
|
||||||
});
|
});
|
||||||
const typingSignals = createTypingSignaler({
|
|
||||||
typing,
|
|
||||||
mode: typingMode,
|
|
||||||
isHeartbeat,
|
|
||||||
});
|
|
||||||
const shouldInjectGroupIntro = Boolean(
|
const shouldInjectGroupIntro = Boolean(
|
||||||
isGroupChat && (isFirstTurnInSession || sessionEntry?.groupActivationNeedsSystemIntro),
|
isGroupChat && (isFirstTurnInSession || sessionEntry?.groupActivationNeedsSystemIntro),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user