LazyBoy2/crates/grokboy-core/src/lib.rs

8 lines
159 B
Rust
Raw Normal View History

//! GrokBoy core: config + OpenAI-compatible streaming chat.
mod config;
mod model;
pub use config::Config;
pub use model::{ChatMessage, Role, stream_chat};