patina-ai 0.23.0

Context orchestration for AI development - captures and evolves patterns over time
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Training pair generators for projections
//!
//! Generate (anchor, positive, negative) triplets from eventlog for contrastive learning

/// A training triplet: anchor, positive (similar), negative (dissimilar)
#[derive(Debug, Clone)]
pub struct TrainingPair {
    pub anchor: String,
    pub positive: String,
    pub negative: String,
}