swactor/crates/mvp-system/src/orchestration/mod.rs
Zachery Aaron Shores-Chmielewski fdfb639f7d refactor(mvp-system): drop wire/codec and node-agent abstractions
- Remove Stage*Wire types, register_codecs, NodeAgent actor/messages, and dashboard
  newtypes (RunId/NodeId/FrameArchive...).
- Replace with static node control and role/stage assignments; collapse staging shard
  lifecycle into gguf_common.
- Gut driver_pumps and delete engine_builder launcher/model/roles.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-07-30 00:23:26 +04:00

18 lines
591 B
Rust

//! MVP run orchestration public surface.
//!
//! This module owns run planning, membership/readiness coordination, deployment
//! dispatch, run authority, prompt admission, and teardown behavior. Provider
//! adapters live in `provider_adapters` so provider-neutral orchestration logic
//! stays separate from local/Docker/VastAI implementation details.
pub(crate) mod actor;
pub(crate) mod app;
pub(crate) mod config;
pub(crate) mod distribution_stack;
#[cfg(test)]
pub(crate) mod engine_builder;
pub(crate) mod provider_adapters {
pub(crate) mod relay;
pub(super) mod vastai;
}