Member Junction
    Preparing search index...

    llm-derived — features produced by an upstream Feature Pipeline (plan §5.3 / §5.4). LLM-synthesized features are persisted and version-pinned, not recomputed inline, to preserve determinism and avoid train/serve skew (§6.5).

    interface LLMDerivedFeatureStep {
        FeaturePipelineRef: string;
        Id: string;
        Inputs?: string[];
        Kind: "llm-derived";
        Label?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    FeaturePipelineRef: string

    Reference to the upstream Feature Pipeline that persisted these features.

    Id: string

    Stable id for this step, referenced by downstream steps' Inputs.

    Inputs?: string[]

    Ids of upstream steps that feed this step (DAG edges).

    Kind: "llm-derived"

    Discriminator selecting the concrete step variant.

    Label?: string

    Optional human-readable label for the visual DAG.