kibble 0.1.0

chew through any source into clean datasets — a fast ingestion, RAG & fine-tuning toolkit
Documentation
//! kibble as a library: retrieval + ask, plus the full toolkit under the default `full` feature.
pub mod bm25;
#[cfg(feature = "full")]
pub mod caps;
pub mod dotenv;
pub mod embed;
#[cfg(feature = "full")]
pub mod mega;
#[cfg(feature = "full")]
pub mod records;
pub mod vectors;
#[cfg(feature = "full")]
pub mod serve;
#[cfg(feature = "full")]
pub mod eval;
pub mod web;
#[cfg(feature = "full")]
pub mod git;
#[cfg(feature = "full")]
pub mod codebase;
pub mod config;
#[cfg(feature = "full")]
pub mod dataset;
pub mod net;
#[cfg(feature = "full")]
pub mod build;
#[cfg(feature = "full")]
pub mod catalog;
pub mod clean;
#[cfg(feature = "full")]
pub mod cluster;
pub mod corpus;
#[cfg(feature = "full")]
pub mod ingest;
pub mod text;
#[cfg(feature = "full")]
pub mod pack;
#[cfg(feature = "full")]
pub mod fetch;
#[cfg(feature = "full")]
pub mod extract;
#[cfg(feature = "full")]
pub mod minhash;
#[cfg(feature = "full")]
pub mod simhash;
#[cfg(feature = "full")]
pub mod bench;
pub mod llm;
pub mod websearch;
#[cfg(feature = "full")]
pub mod soul;
#[cfg(feature = "full")]
pub mod mcp;
#[cfg(feature = "full")]
pub mod crawl;
pub mod index;
pub mod init;
#[cfg(feature = "full")]
pub mod rebalance;
pub mod retrieve;
pub mod ask;
#[cfg(feature = "full")]
pub mod tune;
#[cfg(feature = "full")]
pub mod normalize;
#[cfg(feature = "full")]
pub mod train;
#[cfg(feature = "full")]
pub mod classify;