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