Skip to content

PipelineStep

Defined in: packages/memory-ltm/src/ingest/types.ts:10

Stream B0 — Typed Ingest Pipeline

PipelineStep is the composable unit: each step receives a context object, may mutate it, and returns the (possibly modified) context for the next step.

Steps signal early termination by setting ctx.aborted = true. The pipeline stops executing subsequent steps when it encounters an aborted context.

T

readonly name: string

Defined in: packages/memory-ltm/src/ingest/types.ts:11

execute(ctx): Promise<T>

Defined in: packages/memory-ltm/src/ingest/types.ts:12

T

Promise<T>