ratel-ai-core 0.1.4

Tool retrieval and ranking for AI agents — BM25 over tool catalogs. Core of the Ratel context engineering platform.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `ratel-ai-core` — the Rust core of Ratel.
//!
//! See `README.md` and `docs/adr/` for design.

mod indexing;
mod registry;
mod tool;

pub use registry::{SearchHit, ToolRegistry};
pub use tool::Tool;