orch 0.0.16

Language model orchestration library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! A module containing all logic related to LMs (Language Models).
//! This don't strictly have to be *large* language models (i.e., SLMs such as Phi-3 or Mistral NeMo are included).

mod builder;
mod error;
mod lm_provider;
mod models;

pub use builder::*;
pub use error::*;
pub use lm_provider::*;
pub use models::*;