/** * Embed Backfill — batch-generate Ollama/BGE embeddings for entries missing * embeddings or carrying stale dimensions. * * Processes entries in batches (default 10) with a configurable sleep * between batches to avoid timeouts during cron execution. * * Usage: kivo embed-backfill [--batch-size 10] [--sleep-ms 1000] [--json] */ export interface EmbedBackfillOptions { /** Number of entries to process per batch (default: 10) */ batchSize?: number; /** Milliseconds to sleep between batches (default: 1000) */ sleepMs?: number; /** Output JSON format */ json?: boolean; } export declare function runEmbedBackfill(options?: EmbedBackfillOptions): Promise; //# sourceMappingURL=embed-backfill.d.ts.map