MCPcopy
hub / github.com/CopilotKit/CopilotKit / append

Method append

packages/bot-slack/src/native-stream.ts:131–139  ·  view source on GitHub ↗
(fullText: string)

Source from the content-addressed store, hash-verified

129 }
130
131 append(fullText: string): void {
132 if (this.legacy) {
133 this.legacy.append(fullText);
134 return;
135 }
136 if (fullText === this.buffer) return;
137 this.buffer = fullText;
138 this.scheduleFlush();
139 }
140
141 /**
142 * Append a structured chunk (`task_update` / `plan_update` / `blocks`) to the

Callers

nothing calls this directly

Calls 2

scheduleFlushMethod · 0.95
appendMethod · 0.65

Tested by

no test coverage detected