swactor/crates/mvp-system/src/actors/mod.rs
Zachery Aaron Shores-Chmielewski 0ffc5fd275 feat: add mvp provisioning subsystem and datastream transport
mvp-system: provisioner actor, provisioning module, node_agent, dashboard_view,
observability_surface; expand gpu_worker ctl/ingress/egress and run_plan.
iroh-driver: replace relay binary with datastream_transport; datastream gains endpoint
abstraction. Archive pipeline-parallel-inference app to old-pipeline-parallel-inference.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-06-25 16:30:18 +04:00

17 lines
616 B
Rust

//! swactor actor shells for the MVP system local E2E stack.
//!
//! Each actor module owns its message type. Pure state machines remain in the
//! existing domain modules; actors translate mailbox messages into those cores and
//! report emitted commands/events back through actor messages.
pub mod codec;
pub mod node_agent;
pub mod orchestrator;
pub mod provisioner;
pub mod stage_controller;
pub fn register_mvp_actor_codecs(registry: &mut swactor_transport::CodecRegistry) {
node_agent::register_codecs(registry);
orchestrator::register_codecs(registry);
provisioner::register_codecs(registry);
}