1 2 3 4 5 6 7 8
//! This module implements chains for the ChatGPT model from OpenAI. mod error; mod executor; mod model; mod prompt; pub use executor::{Error, Executor}; pub use model::Model;