narrative-graph 0.1.2

Turn prose into candidate relational facts — entity detection, relation labeling, confidence scoring, entirely local.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod error;
pub mod heuristic;
pub mod types;

pub use error::{NarrativeGraphError, Result};
pub use heuristic::extract_candidate_triples;
pub use types::{Options, TripleCandidate};

#[cfg(feature = "node-api")]
pub mod napi_bindings;