kibble 0.1.0

chew through any source into clean datasets — a fast ingestion, RAG & fine-tuning toolkit
Documentation
1
2
3
4
# Error Handling
Rust models recoverable errors with Result<T, E> and the ? operator for propagation.
There are no exceptions; failure is a value the caller must handle.
Panics are for unrecoverable bugs, not ordinary control flow.