/** * `openlore embed` — switch the semantic embedding provider in one command. * * The headline use is `openlore embed --local`: it turns on a zero-config, * on-device embedder (no endpoint, no API key) and rebuilds the semantic index. * The model is lazily downloaded and cached on first use. `openlore embed --off` * reverts to the first-class keyword (BM25) default. Either way the index is * rebuilt with `--force` so vectors from a different model are never reused * (which would mix dimensions). */ import { Command } from 'commander'; export declare const embedCommand: Command; //# sourceMappingURL=embed.d.ts.map