1#![warn(missing_docs)]
2
3pub mod coalesce;
8pub mod core;
9pub mod minimal;
10
11pub use crate::core::{
12 generate_span_candidates, CorefChain, CorefDocument, CoreferenceResolver, Corpus,
13 DiscontinuousSpan, Entity, EntityBuilder, EntityCategory, EntityType, EntityViewport,
14 ExtractionMethod, Gender, GroundedDocument, HashMapLexicon, HierarchicalConfidence, Identity,
15 IdentityId, IdentitySource, Lexicon, Location, Mention, MentionType, Modality, Number, Person,
16 PhiFeatures, Provenance, Quantifier, RaggedBatch, Relation, Signal, SignalId, SignalRef, Span,
17 SpanCandidate, Track, TrackId, TrackRef, TrackStats, TypeLabel, TypeMapper, ValidationIssue,
18};
19
20pub use crate::core::types::CanonicalId;