(&self, artifact_uri: &str)
| 36 | } |
| 37 | |
| 38 | pub(super) fn artifact(&self, artifact_uri: &str) -> Option<ToolArtifact> { |
| 39 | self.tool_executor.get_artifact(artifact_uri) |
| 40 | } |
| 41 | |
| 42 | pub(super) async fn read_file(&self, path: &str) -> Result<String> { |
| 43 | let args = serde_json::json!({ "file_path": path }); |
no test coverage detected