Coming soon — Melbourne, AU
We build the AI systems your business runs on
Custom AI agents, automated workflows, and intelligent infrastructure for businesses ready to stop doing things the slow way.
agent.rs
// nublock :: inbox processing agent
async fn process_inbox(&self) {
let stream = self.watch_mailbox().await;
while let Some(mail) = stream.next() {
let intent = classify(&mail).await;
match intent {
Invoice => route_to_xero(mail),
Support => create_ticket(mail),
Lead => notify_team(mail),
}