//! [`EntityExtractor`] impls bundled with the projector.
//!
//! The default identity extractor [`HintsOnlyExtractor`] is the
//! supported way to run the projector against the rules layer only —
//! no free-form extraction over episode text. Production deployments
//! that want LLM-backed extraction wire one of the extractors from
//! `klieo-memory-graph-rag` instead.
use async_trait;
use MemoryError;
use ;
/// Identity extractor used in tests and by callers who want the rules
/// layer to be the only entity source (no free-form extraction over
/// episode text). Returns the supplied hints unchanged.
///
/// Construct via [`Self::default`] — the type is `#[non_exhaustive]`
/// so external callers can't rely on the unit-struct literal staying
/// valid across 0.x minor bumps.
;