minillmlib 0.4.0

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};
pub use logging::{configure_logging, LogLevel};