ratel-ai-core 0.3.0

Tool and skill retrieval for AI agents — selectable BM25, dense (semantic), or hybrid search over catalogs. Core of the Ratel context engineering platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Trace events emitted from every layer of Ratel — the substrate for the
//! inspector, the suggestion analyzer, the reranker training, and the optional
//! self-hosted consolidation server. See ADR-0007 for the schema-ownership
//! and reliability story.

mod event;
mod sink;

pub use event::{
    ChurnKind, EmbedderLoadStatus, Origin, SearchHitTrace, SearchStage, SkillHitTrace,
    TraceEnvelope, TraceEvent,
};
pub use sink::{JsonlSink, MemorySink, NoopSink, TraceSink};