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, GraphDocument, GraphEdge, GraphExportFormat, GraphNode,
15 GroundedDocument, HashMapLexicon, HierarchicalConfidence, Identity, IdentityId, IdentitySource,
16 Lexicon, Location, Mention, MentionType, Modality, Number, Person, PhiFeatures, Provenance,
17 Quantifier, RaggedBatch, Relation, Signal, SignalId, SignalRef, Span, SpanCandidate, Track,
18 TrackId, TrackRef, TrackStats, TypeLabel, TypeMapper, ValidationIssue,
19};
20
21pub use crate::core::types::CanonicalId;