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
@@ -854,6 +854,7 @@ where
Ok(ToolOutput {
summary,
content: Some(json_content(&items)?),
attachments: Vec::new(),
})
}
}
@@ -890,6 +891,8 @@ where
Ok(ToolOutput {
summary,
content: Some(json_content(&result)?),
attachments: Vec::new(),
})
}
}
@@ -982,6 +985,7 @@ where
Ok(ToolOutput {
summary: format!("sent peer message to `{}`", input.name),
content: None,
attachments: Vec::new(),
})
}
}