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