fix(agents): keep terminal reply limit internal

This commit is contained in:
joshavant
2026-08-02 21:51:56 -05:00
committed by Josh Avant
parent f87a9d2446
commit 42eda52bd9
+1 -1
View File
@@ -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 }