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>
17 lines
616 B
Rust
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);
|
|
}
|