minillmlib 0.3.3

A minimalist, async-first Rust library for LLM interactions with streaming support
Documentation
1
2
3
4
5
6
7
//! Utility functions for MiniLLMLib

mod json;
pub mod logging;

pub use json::{extract_json, extract_json_value, pretty_json, to_dict, validate_json_response};
pub use logging::{configure_logging, LogLevel};