MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / Chunk

Interface Chunk

packages/core/src/pipes/pipes.ts:481–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479}
480
481export interface Chunk {
482 type: 'content' | 'toolCall' | 'unknown';
483 content?: string;
484 toolCall?: ToolCallResult;
485 rawChunk?: ChunkStream;
486}
487
488/**
489 * Processes a chunk and returns a Chunk object.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected