Files
openclaw/src/agents/embedded-agent-subscribe.shared-types.ts
2026-06-04 09:43:42 -04:00

12 lines
441 B
TypeScript

/**
* Shared display and chunking types for embedded-agent subscription handlers.
*/
import type { BlockReplyChunking } from "./embedded-agent-block-chunker.js";
/** Rendering mode for completed tool results in subscribed replies. */
export type ToolResultFormat = "markdown" | "plain";
/** Detail level for in-flight tool progress messages. */
export type ToolProgressDetailMode = "explain" | "raw";
export type { BlockReplyChunking };