axiomsync 1.0.0

Core data-processing engine for AxiomSync local retrieval runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
pub(super) const LANE_SEMANTIC: &str = "semantic";
pub(super) const LANE_EMBEDDING: &str = "embedding";

pub(super) fn lane_for_event_type(event_type: &str) -> &'static str {
    if event_type == "upsert" || event_type.starts_with("embedding_") {
        LANE_EMBEDDING
    } else {
        LANE_SEMANTIC
    }
}