ai-workbench-lib 0.4.0

AI Workbench library for file processing, splitting, and model interactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! File Splitter Library
//! 
//! Provides intelligent file splitting capabilities for large documents based on file type.
//! Supports text files, CSV/tabular data, JSON, and source code with configurable
//! chunk sizes and logical boundary preservation.

pub mod types;
pub mod splitter;
pub mod splitter_types;

// Re-export main types and the FileSplitter
pub use types::*;
pub use splitter::FileSplitter;