Function
make_exploration
(id: &str, summary: &str)
Source from the content-addressed store, hash-verified
| 40 | } |
| 41 | |
| 42 | fn make_exploration(id: &str, summary: &str) -> ProvenanceNode { |
| 43 | ProvenanceNode { |
| 44 | id: id.into(), |
| 45 | kind: ProvenanceNodeKind::Exploration, |
| 46 | timestamp: 1500, |
| 47 | summary: summary.into(), |
| 48 | detail: None, |
| 49 | change_hash: None, |
| 50 | tool_name: Some("read".into()), |
| 51 | tool_call_id: None, |
| 52 | duration_ms: None, |
| 53 | classified: false, |
| 54 | confidence: None, |
| 55 | consolidated_from: Vec::new(), |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | fn make_verification(id: &str, summary: &str) -> ProvenanceNode { |
| 60 | ProvenanceNode { |
Tested by
no test coverage detected