opencrabs 0.3.37

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Service Layer
//!
//! This module contains the business logic services that orchestrate
//! operations between the database layer and the application layer.

mod context;
pub mod file;
pub mod message;
pub mod plan;
pub mod session;

pub use context::{ServiceContext, ServiceManager};
pub use file::FileService;
pub use message::MessageService;
pub use plan::PlanService;
pub use session::SessionService;