npcrs 0.1.14

Rust core for the NPC system — agent kernel, jinx executor, LLM client
Documentation
pub mod response_types;

pub mod audio_gen;
pub mod cost;
pub mod embeddings;
mod image_gen;
#[cfg(feature = "llamacpp")]
pub mod llamacpp;
pub mod model_info;
pub mod response;
pub mod sanitize;

pub use cost::calculate_cost;
pub use image_gen::*;
#[cfg(feature = "llamacpp")]
pub use llamacpp::get_llamacpp_response;
pub use response::get_genai_response;
pub use response_types::*;
pub use sanitize::sanitize_messages;