use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct CodeInterpreterTool {
#[serde(rename = "type")]
pub r#type: Type,
#[serde(rename = "container")]
pub container: Box<models::CodeInterpreterToolContainer>,
}
impl CodeInterpreterTool {
pub fn new(
r#type: Type,
container: models::CodeInterpreterToolContainer,
) -> CodeInterpreterTool {
CodeInterpreterTool {
r#type,
container: Box::new(container),
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "code_interpreter")]
CodeInterpreter,
}
impl Default for Type {
fn default() -> Type {
Self::CodeInterpreter
}
}
impl std::fmt::Display for CodeInterpreterTool {
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),
}
}
}