1//! 2//! # gpt 3//! This crate provides a simple way to interact with the OpenAI API from Rust. 4//! 5mod chat; 6mod client; 7mod entry_point; 8mod error; 9mod image; 10pub mod prelude;