gliner/lib.rs
1//! An inference engine for [GLiNER](https://github.com/urchade/GLiNER/tree/main) models, which can perform
2//! zero-shot [Named Entity Recognition](https://paperswithcode.com/task/cg) (NER) and many other tasks such
3//! as [Relation Extraction](https://paperswithcode.com/task/relation-extraction).
4//!
5//! This implementation supports both span- and token-oriented models (inference only).
6//!
7//! It aims to provide an efficient, production-grade, user-friendly API in a modern and safe programming language,
8//! as well as a clean and maintainable implementation of the mechanics surrounding the model itself.
9
10pub mod model;
11pub mod text;
12pub mod util;
13