Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,8 @@ members = [
"crates/timesfm",
# RuVector integration for TimesFM: Forecaster + anomaly bands + sweep early-stopping
"crates/ruvector-timesfm",
# Locality-Sensitive Fingerprinting for semantic near-duplicate detection in agent memory (ADR-272)
"crates/ruvector-lsf-dedup",
]
resolver = "2"

Expand Down
16 changes: 16 additions & 0 deletions crates/ruvector-lsf-dedup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "ruvector-lsf-dedup"
version = "0.1.0"
edition = "2021"
description = "Locality-Sensitive Fingerprinting for semantic near-duplicate detection in agent memory stores: SimHash, MinHash, and Hybrid approaches with proof-trail logging"
authors = ["ruvnet", "claude-flow"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
keywords = ["agent-memory", "deduplication", "simhash", "minhash", "vector-search"]
categories = ["algorithms", "data-structures"]

[[bin]]
name = "lsf-dedup-bench"
path = "src/main.rs"

[dependencies]
Loading
Loading