Tool Outputの仕様簡素化

This commit is contained in:
2026-04-12 05:19:00 +09:00
parent dc1a335e1c
commit 2c5a0edef3
23 changed files with 212 additions and 1159 deletions
+2 -2
View File
@@ -292,9 +292,9 @@ impl Interceptor for ToolResultPrinterPolicy {
.unwrap_or_else(|| info.result.tool_use_id.clone());
if info.result.is_error {
println!(" Result ({}): ❌ {}", name, info.result.content);
println!(" Result ({}): ❌ {}", name, info.result.summary);
} else {
println!(" Result ({}): ✅ {}", name, info.result.content);
println!(" Result ({}): ✅ {}", name, info.result.summary);
}
PostToolAction::Continue