Add iroh-driver edge_transport; restructure mvp_chat/orchestrator/worker bins; drop stale gpu_worker_node_e2e and MVP_NODE_PROVISIONING_SPEC. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
19 lines
721 B
Rust
19 lines
721 B
Rust
//! swactor actor shells for the MVP system runtime.
|
|
//!
|
|
//! 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);
|
|
datastream::register_datastream_publisher_codec(registry);
|
|
crate::prompt_rpc::register_codecs(registry);
|
|
}
|