From 42eda52bd93c6cef7297dc4e2f716bf3b5a61c3c Mon Sep 17 00:00:00 2001 From: joshavant <830519+joshavant@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:51:56 -0500 Subject: [PATCH] fix(agents): keep terminal reply limit internal --- src/agents/agent-run-terminal-reply.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/agent-run-terminal-reply.ts b/src/agents/agent-run-terminal-reply.ts index 5b45f34c94d9..b50dd2e56feb 100644 --- a/src/agents/agent-run-terminal-reply.ts +++ b/src/agents/agent-run-terminal-reply.ts @@ -2,7 +2,7 @@ import { truncateUtf16Safe } from "@openclaw/normalization-core/utf16-slice"; import { stripInternalMetadataForDisplay } from "../auto-reply/reply/display-text-sanitize.js"; import { SILENT_REPLY_TOKEN } from "../auto-reply/tokens.js"; -export const AGENT_RUN_TERMINAL_REPLY_MAX_CHARS = 4_096; +const AGENT_RUN_TERMINAL_REPLY_MAX_CHARS = 4_096; export type AgentRunTerminalReplySnapshot = | { disposition: "visible"; text: string }