#![allow(
unused_imports,
dead_code,
non_camel_case_types,
unused_variables,
clippy::all
)]
use super::super::context::{LoadContext, SaveContext};
use super::content_part::{ContentPart, ContentPartKind};
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ToolResultStatus {
Success,
Error,
Cancelled,
Timeout,
}
impl Default for ToolResultStatus {
fn default() -> Self {
Self::Success
}
}
impl std::fmt::Display for ToolResultStatus {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Success => write!(f, "success"),
Self::Error => write!(f, "error"),
Self::Cancelled => write!(f, "cancelled"),
Self::Timeout => write!(f, "timeout"),
}
}
}
impl ToolResultStatus {
pub fn from_str_opt(s: &str) -> Option<Self> {
match s {
"success" => Some(Self::Success),
"error" => Some(Self::Error),
"cancelled" => Some(Self::Cancelled),
"timeout" => Some(Self::Timeout),
_ => None,
}
}
pub fn as_str(&self) -> &str {
match self {
Self::Success => "success",
Self::Error => "error",
Self::Cancelled => "cancelled",
Self::Timeout => "timeout",
}
}
}
#[derive(Debug, Clone, Default)]
pub struct ToolResult {
pub parts: Vec<ContentPart>,
pub status: Option<ToolResultStatus>,
pub error_kind: Option<String>,
pub error_message: Option<String>,
pub duration_ms: Option<f64>,
}
impl ToolResult {
pub fn new() -> Self {
Self::default()
}
pub fn from_json(json: &str, ctx: &LoadContext) -> Result<Self, serde_json::Error> {
let value: serde_json::Value = serde_json::from_str(json)?;
Ok(Self::load_from_value(&value, ctx))
}
pub fn from_yaml(yaml: &str, ctx: &LoadContext) -> Result<Self, serde_yaml::Error> {
let value: serde_json::Value = serde_yaml::from_str(yaml)?;
Ok(Self::load_from_value(&value, ctx))
}
pub fn load_from_value(value: &serde_json::Value, ctx: &LoadContext) -> Self {
let value = ctx.process_input(value.clone());
Self {
parts: value
.get("parts")
.map(|v| Self::load_parts(v, ctx))
.unwrap_or_default(),
status: value
.get("status")
.and_then(|v| v.as_str())
.and_then(|s| ToolResultStatus::from_str_opt(s)),
error_kind: value
.get("errorKind")
.and_then(|v| v.as_str())
.map(|s| s.to_string()),
error_message: value
.get("errorMessage")
.and_then(|v| v.as_str())
.map(|s| s.to_string()),
duration_ms: value.get("durationMs").and_then(|v| v.as_f64()),
}
}
pub fn to_value(&self, ctx: &SaveContext) -> serde_json::Value {
let mut result = serde_json::Map::new();
if !self.parts.is_empty() {
result.insert("parts".to_string(), Self::save_parts(&self.parts, ctx));
}
if let Some(ref val) = self.status {
result.insert(
"status".to_string(),
serde_json::Value::String(val.to_string()),
);
}
if let Some(ref val) = self.error_kind {
result.insert(
"errorKind".to_string(),
serde_json::Value::String(val.clone()),
);
}
if let Some(ref val) = self.error_message {
result.insert(
"errorMessage".to_string(),
serde_json::Value::String(val.clone()),
);
}
if let Some(val) = self.duration_ms {
result.insert(
"durationMs".to_string(),
serde_json::Number::from_f64(val as f64)
.map(serde_json::Value::Number)
.unwrap_or(serde_json::Value::Null),
);
}
ctx.process_dict(serde_json::Value::Object(result))
}
pub fn to_json(&self, ctx: &SaveContext) -> Result<String, serde_json::Error> {
serde_json::to_string_pretty(&self.to_value(ctx))
}
pub fn to_yaml(&self, ctx: &SaveContext) -> Result<String, serde_yaml::Error> {
serde_yaml::to_string(&self.to_value(ctx))
}
fn load_parts(data: &serde_json::Value, ctx: &LoadContext) -> Vec<ContentPart> {
match data {
serde_json::Value::Array(arr) => arr
.iter()
.map(|v| ContentPart::load_from_value(v, ctx))
.collect(),
_ => Vec::new(),
}
}
fn save_parts(items: &[ContentPart], ctx: &SaveContext) -> serde_json::Value {
serde_json::Value::Array(
items
.iter()
.map(|item| item.to_value(ctx))
.collect::<Vec<_>>(),
)
}
pub fn text(value: impl Into<String>) -> Self {
ToolResult {
parts: vec![ContentPart {
kind: ContentPartKind::TextPart {
value: value.into(),
},
..Default::default()
}],
..Default::default()
}
}
}
pub trait ToolResultHelpers {
fn text(&self) -> String;
}