agent-atlas 0.1.2

Deterministic knowledge base indexer for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Global aggregation: term index, folder signatures
//!
//! This module handles:
//! - Global term document frequency computation
//! - TF-IDF scoring across corpus
//! - Folder signature generation

mod folder_sig;
mod term_index;

pub use folder_sig::*;
pub use term_index::*;