/** * kivo enrich-intents — Backfill similar_sentences for existing intent entries. * * Scans DB for type='intent' entries with empty similar_sentences, * calls LLM to generate 5~10 paraphrases per entry, writes back to DB. * * Options: * --dry-run Preview without writing to DB */ export interface EnrichIntentsOptions { cwd?: string; dryRun?: boolean; json?: boolean; batchSize?: number; } export declare function runEnrichIntents(options?: EnrichIntentsOptions): Promise; //# sourceMappingURL=enrich-intents.d.ts.map