use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct RunObjectIncompleteDetails {
#[serde(rename = "reason", skip_serializing_if = "Option::is_none")]
pub reason: Option<Reason>,
}
impl RunObjectIncompleteDetails {
pub fn new() -> RunObjectIncompleteDetails {
RunObjectIncompleteDetails { reason: None }
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Reason {
#[serde(rename = "max_completion_tokens")]
MaxCompletionTokens,
#[serde(rename = "max_prompt_tokens")]
MaxPromptTokens,
}
impl Default for Reason {
fn default() -> Reason {
Self::MaxCompletionTokens
}
}
impl std::fmt::Display for RunObjectIncompleteDetails {
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),
}
}
}