- Split arena/ring/object-record into a new data-plane crate and node/plugin contracts into a provisioning crate. - Reorganize mvp-system into orchestration, staging, node, chat, and worker modules; extract binaries into chat/runtime and node/worker_node_runtime. - Add MVP_SYSTEM_MODULE_BOUNDARY_SPEC. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
11 lines
393 B
Rust
11 lines
393 B
Rust
//! Reusable provider-neutral provisioning contracts.
|
|
//!
|
|
//! This crate owns lease, boot, destroy, bootstrap-session, and provider plugin
|
|
//! state machines that do not depend on GGUF, prompts, stage execution, Docker,
|
|
//! VastAI, or MVP runtime policy. Concrete provider adapters live in application
|
|
//! crates and implement these contracts.
|
|
|
|
pub mod node;
|
|
pub mod plugin;
|
|
|
|
pub use node::*;
|