/** * ollama_corpus_list — discover available corpora with stats. * * No Ollama call, no embed — just reads the corpora directory. Useful * when you've forgotten whether you already indexed something, or want * to confirm which corpus has the freshest `indexed_at`. */ import { z } from "zod"; import type { Envelope } from "../envelope.js"; import { type CorpusSummary } from "../corpus/storage.js"; import type { RunContext } from "../runContext.js"; export declare const corpusListSchema: z.ZodObject<{}, z.core.$strip>; export type CorpusListInput = z.infer; export interface CorpusListResult { corpora: CorpusSummary[]; corpus_dir: string; } export declare function handleCorpusList(_input: CorpusListInput, ctx: RunContext): Promise>; //# sourceMappingURL=corpusList.d.ts.map