proposit-core
    Preparing search index...

    Type Alias TIngestionLlmOptions

    Pipeline-level LLM-options surface threaded through every LLM stage by the ingestion-pipeline factories.

    defaults applies to all LLM stages in the pipeline that don't have a per-stage entry under overrides. A stage's internal default still takes effect for any knob neither defaults nor overrides sets.

    overrides is keyed by stage id (STAGE_IDS.segmentation, STAGE_IDS.claimMentionExtraction, etc.). v1 has only one LLM stage and uses the id "parse-argument".

    type TIngestionLlmOptions = {
        defaults?: TLlmStageOptionsOverride;
        overrides?: Record<string, TLlmStageOptionsOverride>;
    }
    Index

    Properties

    overrides?: Record<string, TLlmStageOptionsOverride>