Skip to main content

PhantomTracker

Struct PhantomTracker 

Source
pub struct PhantomTracker { /* private fields */ }

Implementations§

Source§

impl PhantomTracker

Source

pub fn new(config: PhantomConfig) -> Self

Source

pub fn register_entity(&mut self, entity: &str)

Convenience: register an entity in the embedded registry.

Source

pub fn register_entities(&mut self, entities: &[&str])

Convenience: register multiple entities at once.

Source

pub fn entity_registry(&self) -> &EntityRegistry

Return a reference to the entity registry.

Source

pub fn entity_registry_mut(&mut self) -> &mut EntityRegistry

Return a mutable reference to the entity registry.

Source

pub fn detect_gaps( &mut self, content: &str, known_entities: &[String], turn_id: u64, ) -> Vec<PhantomMemory>

Scan content for entity references not in known_entities.

Two detection strategies are combined:

  1. Registry-based (primary): any registered entity found in content that is NOT in known_entities is flagged at Medium/High priority.
  2. Heuristic (fallback): capitalized words, quoted terms, and technical terms are flagged at Low priority. Disabled when PhantomConfig::use_heuristic_detection is false.
Source

pub fn detect_gaps_explicit( &mut self, content: &str, mentioned_entities: &[&str], turn_id: u64, ) -> Vec<PhantomMemory>

Preferred explicit API: the caller provides exactly which entities were mentioned. Entities not in the registry are flagged as gaps.

Source

pub fn resolve(&mut self, phantom_id: Uuid)

Source

pub fn get_active_phantoms(&self) -> Vec<&PhantomMemory>

Source

pub fn format_phantom_warnings(&self) -> String

Trait Implementations§

Source§

impl Default for PhantomTracker

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.