orch 0.0.16

Language model orchestration library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A module containing all logic related to LLM execution.
//! An [`Executor`] is the terminology for a component which executes an LLM,
//! and aligns it appropriately (e.g., error correction).
//!
//! It is not to be confused with an [`Orchestrator`] which manages the execution of an LLM
//! or multiple LLMs towards a task.

mod builder;
mod executor;
mod response;
mod structured_executor;
mod text_executor;

pub use builder::*;
pub use executor::*;
pub use response::*;
pub use structured_executor::*;
pub use text_executor::*;