(rng: &mut Rng)
| 201 | } |
| 202 | |
| 203 | fn gen_image_source(rng: &mut Rng) -> ImageSource { |
| 204 | ImageSource { |
| 205 | source_type: "base64".to_string(), |
| 206 | media_type: "image/png".to_string(), |
| 207 | data: rng.string(), |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | fn gen_tool_result_content(rng: &mut Rng) -> ToolResultContent { |
| 212 | if rng.boolean() { |
no test coverage detected