/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * Build a parquet shard from the DeepSeek-generated kryptonite JSONL and emit the corpus-v0.4.0 * MANIFEST. corpus-v0.4.0 is a pure adapter-addition revision: it points at every shard from * v0.3.0 plus the new kryptonite shard(s). No v0.3.0 bytes are touched or re-shuffled. * * See docs/engineering/reference/CORPUS_V0_4_0_GENERATION.md for the why; that doc also pins the * DeepSeek model version + prompt versions used to produce the JSONL. * * Invoke via `mailwoman corpus shard kryptonite \ * --jsonl /data/corpus/versioned/v0.4.0/kryptonite/canonical-kryptonite.jsonl \ * --base-manifest /data/corpus/versioned/v0.3.0/corpus-v0.3.0/MANIFEST.json \ * --out-dir /data/corpus/versioned/v0.4.0` */ export interface ShardKryptoniteOptions { jsonl: string; baseManifest: string; outDir: string; /** * Default `"0.4.0"`. */ corpusVersion?: string; /** * Default `"deepseek-kryptonite"`. */ source?: string; } export declare function buildKryptoniteShard(options: ShardKryptoniteOptions, report?: (line: string) => void): Promise; //# sourceMappingURL=shard-kryptonite.d.ts.map