MCPcopy Create free account
hub / github.com/AI45Lab/Code / artifact_uris

Function artifact_uris

core/src/trace.rs:163–171  ·  view source on GitHub ↗
(metadata: Option<&serde_json::Value>)

Source from the content-addressed store, hash-verified

161}
162
163fn artifact_uris(metadata: Option<&serde_json::Value>) -> Vec<String> {
164 let mut uris = Vec::new();
165 if let Some(metadata) = metadata {
166 collect_artifact_uris(metadata, &mut uris);
167 }
168 uris.sort();
169 uris.dedup();
170 uris
171}
172
173fn collect_artifact_uris(value: &serde_json::Value, uris: &mut Vec<String>) {
174 match value {

Callers 2

tool_executionMethod · 0.70
program_executionMethod · 0.70

Calls 1

collect_artifact_urisFunction · 0.70

Tested by

no test coverage detected