gliner2 0.1.1

Rust implementation of GLiNER2 with compatibility for upstream weights and Python training output.
Documentation
pub mod backends;
pub mod config;
pub mod decode;
pub mod engine;
pub mod extract;
pub mod preprocess;
pub mod processor;
pub mod schema;
pub mod span_utils;

pub use config::ExtractorConfig;
pub use engine::Gliner2Engine;

#[cfg(feature = "candle")]
pub use backends::candle::CandleExtractor;
#[cfg(feature = "tch")]
pub use backends::tch::TchExtractor;
pub use decode::Entity;
pub use extract::{
    BatchSchemaMode, ExtractOptions, batch_extract, extract_from_preprocessed, extract_with_schema,
};
pub use preprocess::{PreprocessedBatch, PreprocessedInput, TaskType, collate_preprocessed};
pub use processor::SchemaTransformer;
pub use schema::{
    ExtractionMetadata, ParsedFieldSpec, RegexMatchMode, RegexValidator, Schema, StructureBuilder,
    ValueDtype, create_schema, infer_metadata_from_schema, parse_field_spec,
};

// Compile-time assertions: backends and shared types must be Send+Sync for Rayon parallelism.
const _: () = {
    fn _assert_send_sync<T: Send + Sync>() {}

    #[cfg(feature = "candle")]
    fn _check_candle() {
        _assert_send_sync::<backends::candle::CandleExtractor>();
    }
    #[cfg(feature = "tch")]
    fn _check_tch() {
        _assert_send_sync::<backends::tch::TchExtractor>();
    }
    fn _check_transformer() {
        _assert_send_sync::<processor::SchemaTransformer>();
    }
};