kibble 0.1.0

chew through any source into clean datasets — a fast ingestion, RAG & fine-tuning toolkit
Documentation
1
2
3
4
# Borrowing
Borrowing lets you access data without taking ownership.
A shared borrow (&T) is read-only and can be aliased; a mutable borrow (&mut T) is exclusive.
The borrow checker rejects code that would let a reference outlive the data it points to.