ctxpack 0.1.0

Configuration-driven source packing for LLM context, with a versioning protocol for incremental patch/replace
1
2
3
4
pub trait TransformStage {
    fn encode(&self, input: &str) -> String;
    fn decode(&self, input: &str) -> String;
}