pub struct ConversationProcessor { /* private fields */ }Expand description
Processes text (or a list of conversation messages) and deduplicates facts.
Implementations§
Source§impl ConversationProcessor
impl ConversationProcessor
pub fn new(extractor: Box<dyn FactExtractor>) -> Self
Sourcepub fn process_text(
&self,
text: &str,
source_memory_id: Option<i64>,
) -> Vec<ExtractedFact>
pub fn process_text( &self, text: &str, source_memory_id: Option<i64>, ) -> Vec<ExtractedFact>
Extract facts from a single text, deduplicating by (subject, predicate, object). When duplicates exist the one with the highest confidence is kept.
Sourcepub fn process_conversation(
&self,
messages: &[&str],
source_memory_id: Option<i64>,
) -> Vec<ExtractedFact>
pub fn process_conversation( &self, messages: &[&str], source_memory_id: Option<i64>, ) -> Vec<ExtractedFact>
Extract and deduplicate facts from a slice of messages.
Auto Trait Implementations§
impl Freeze for ConversationProcessor
impl !RefUnwindSafe for ConversationProcessor
impl Send for ConversationProcessor
impl Sync for ConversationProcessor
impl Unpin for ConversationProcessor
impl UnsafeUnpin for ConversationProcessor
impl !UnwindSafe for ConversationProcessor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.