proposit-core
    Preparing search index...
    • Build the scholar (thorough) ingestion pipeline for the supplied extension. Returns a TPipeline whose 12-stage DAG segments, extracts, canonicalizes, classifies, relates, and compiles the raw text, and whose finalize assembles the TParsedArgumentResponse shape ArgumentParser.build() consumes.

      The factory is pure: it constructs stage values + a pipeline descriptor and returns immediately. Stage execution happens inside executePipeline.

      Parameters

      Returns TPipeline<
          TIngestionInput,
          {
              argument: | {
                  claims: {
                      miniId: string;
                      role: "conclusion"
                      | "premise"
                      | "intermediate";
                      type: "normal" | "citation" | "axiomatic";
                  }[];
                  conclusionPremiseMiniId: string;
                  derivationBacking?: {
                      derivedClaimMiniId: string;
                      supportingClaimMiniIds: string[];
                  }[];
                  premises: { formula: string; miniId: string }[];
                  variables: { claimMiniId: string; miniId: string; symbol: string }[];
              }
              | null;
              failureText: string
              | null;
              selectionRationale: string | null;
              uncategorizedText: string | null;
          },
      >