feat: add scoped multimodal image attachments

This commit is contained in:
2026-08-10 21:49:39 +09:00
parent 64ced7dbad
commit 38b8f26a50
42 changed files with 718 additions and 38 deletions
+4
View File
@@ -328,6 +328,8 @@ impl Interceptor for WorkerInterceptor {
output: ToolOutput {
summary: info.result.summary.clone(),
content: info.result.content.clone(),
attachments: Vec::new(),
},
};
for hook in &self.registry.post_tool_call {
@@ -911,6 +913,8 @@ mod tests {
ToolOutput {
summary: "ok".into(),
content: Some("full".into()),
attachments: Vec::new(),
},
),
meta: info.meta,