llm-kernel 0.2.0

Foundation library for Rust AI-native apps — provider catalog, LLM client, MCP server, search, telemetry, and safety
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! TOML config loader with auto-create from template.
//!
//! [`load_toml_config`] reads a TOML file and deserializes it into a typed
//! config struct. If the file doesn't exist and a template is provided, it
//! creates the file first.

pub mod loader;
pub mod template;

pub use loader::load_toml_config;
pub use template::default_config_template;