pub fn find_semantic_duplicates(
files: &[(String, String)],
threshold: f64,
) -> Vec<(String, String, f64)>Expand description
Identify semantically duplicate blocks across files. Returns pairs of (file_a, file_b, similarity) where similarity > threshold.