mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-24 11:39:33 +00:00
12 lines
441 B
TypeScript
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 };
|