Getting Started
This section helps you install and begin using Mojentic in Rust.
Install
Add the dependency (placeholder until published):
[dependencies]
mojentic = { path = "../" }
Minimal Example
use mojentic::{Broker, Message};
fn main() {
let mut broker = Broker::default();
broker.emit(Message::text("hello world"));
}
Next Steps
- Learn the LLM broker → Broker
- Dive into Core concepts → Layer 1 overview