use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum CodeInterpreterToolContainer {
Text(String),
Autocodeinterpretertoolparam(models::AutoCodeInterpreterToolParam),
}
impl Default for CodeInterpreterToolContainer {
fn default() -> Self {
Self::Text(String::new())
}
}
impl CodeInterpreterToolContainer {
pub fn new_text(text: String) -> Self {
Self::Text(text)
}
}
impl From<String> for CodeInterpreterToolContainer {
fn from(s: String) -> Self {
Self::Text(s)
}
}
impl From<&str> for CodeInterpreterToolContainer {
fn from(s: &str) -> Self {
Self::Text(s.to_string())
}
}
impl std::fmt::Display for CodeInterpreterToolContainer {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
CodeInterpreterToolContainer::Text(value) => write!(f, "{}", value),
CodeInterpreterToolContainer::Autocodeinterpretertoolparam(value) => {
match serde_json::to_string(value) {
Ok(s) => write!(f, "{}", s),
Err(_) => Err(std::fmt::Error),
}
}
}
}
}