//! See <https://platform.openai.com/docs/api-reference/models>.
//! Use with [Client::list_models](crate::Client::list_models).
use Deserialize;
pub
/// Describes an OpenAI model offering that can be used with the API.
// /// Permissions of a model
// #[derive(Deserialize, Debug)]
// pub struct ModelPermission {
// pub id: String,
// pub created: u32,
// pub allow_create_engine: bool,
// pub allow_sampling: bool,
// pub allow_logprobs: bool,
// pub allow_search_indices: bool,
// pub allow_view: bool,
// pub allow_fine_tuning: bool,
// pub organization: String,
// pub group: Option<String>,
// pub is_blocking: bool,
// }