tuitbot-core 0.1.47

Core library for Tuitbot autonomous X growth assistant
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Context aggregation service for strategy-grade intelligence.
//!
//! Provides reusable functions to aggregate historical data into
//! actionable context: author profiles, engagement recommendations,
//! and topic performance snapshots.

pub mod author;
pub mod engagement;
pub mod graph_expansion;
pub mod hybrid_retrieval;
pub mod retrieval;
pub mod semantic_index;
pub mod semantic_search;
pub mod topics;
pub mod winning_dna;

#[cfg(test)]
mod tests;