ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Delta deduplication using KMP and Rolling Hash algorithms.

include!("deduplication/thresholds.rs");

pub mod boundary;

pub mod rolling_hash;

pub mod kmp_matcher;

include!("deduplication/deduplicator.rs");

include!("deduplication/tests.rs");