pub trait FactExtractor: Send + Sync {
// Required method
fn extract_facts(&self, text: &str) -> Vec<ExtractedFact>;
}Expand description
Pluggable fact-extraction strategy
pub trait FactExtractor: Send + Sync {
// Required method
fn extract_facts(&self, text: &str) -> Vec<ExtractedFact>;
}Pluggable fact-extraction strategy