sqlite_graphrag/commands/ingest_codex/mod.rs
1//! Handler for `ingest --mode codex`.
2//!
3//! Orchestrates the locally installed Codex CLI binary to extract
4//! domain-specific entities and relationships from each file.
5
6mod binary;
7mod extract;
8mod queue;
9mod run;
10mod types;
11
12pub use binary::find_codex_binary;
13pub use run::run_codex_ingest;
14
15#[cfg(test)]
16#[path = "../ingest_codex_tests.rs"]
17mod tests;