Standard tool success without images.
(data: Value, result_for_assistant: Option<String>)
| 2258 | |
| 2259 | /// Standard tool success without images. |
| 2260 | pub fn ok(data: Value, result_for_assistant: Option<String>) -> Self { |
| 2261 | Self::Result { |
| 2262 | data, |
| 2263 | result_for_assistant, |
| 2264 | image_attachments: None, |
| 2265 | } |
| 2266 | } |
| 2267 | |
| 2268 | /// Tool success with optional images for multimodal tool results (Anthropic). |
| 2269 | pub fn ok_with_images( |
no outgoing calls
no test coverage detected