Skip to main content

sqlite_graphrag/commands/remember/
mod.rs

1//! Handler for the `remember` CLI subcommand.
2
3mod args;
4mod embed_phase;
5mod finish;
6mod graph_input;
7mod input;
8mod name;
9mod run;
10
11pub use args::RememberArgs;
12pub use run::run;
13
14/// GAP-SG-216: shared with `remember-batch`, which accepts the same `NewEntity`
15/// payload and owes its caller the same report.
16///
17/// Re-exported rather than duplicated so ONE function decides what counts as a
18/// non-canonical label. Two copies would drift on the very question — "is this
19/// label part of the recommended vocabulary?" — that both the warning and
20/// `--strict-entity-types` answer.
21pub(crate) use graph_input::collect_noncanonical_entity_types;
22
23#[cfg(test)]
24mod tests;