- 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>
18 lines
591 B
Rust
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;
|
|
}
|