Add actor-backed manual node provisioning, control-plane endpoints, and fleet UI assets with durable provider lifecycle handling. Simplify Myelin orchestration, node runtime, staging, and telemetry paths while removing obsolete engine-builder, dashboard-view, and local-mock implementations. Align runtime delivery, data-plane, distribution, job-runner, process, telemetry, dashboard, Vast.ai integrations, and their tests with the revised actor and transport contracts.
17 lines
440 B
Rust
17 lines
440 B
Rust
pub(crate) const MO01_HEADER_BYTES: u64 = 40;
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
|
|
pub(crate) enum GgufSource {
|
|
LocalPath(String),
|
|
HuggingFaceGguf {
|
|
repo: String,
|
|
file: String,
|
|
revision: Option<String>,
|
|
},
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
|
|
pub(crate) enum TokenizerSource {
|
|
EmbeddedGguf,
|
|
LocalPath(String),
|
|
}
|