/*
* OpenAI API
*
* The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
*
* The version of the OpenAPI document: 2.3.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// Auto : Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct Auto {}
impl Auto {
/// Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.
pub fn new() -> Auto {
Auto {}
}
}
impl std::fmt::Display for Auto {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match serde_json::to_string(self) {
Ok(s) => write!(f, "{}", s),
Err(_) => Err(std::fmt::Error),
}
}
}