nemo-flow-adaptive 0.2.0

Adaptive runtime primitives and Redis-backed learning components for NeMo Flow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Serializable adaptive runtime data models.

/// Hot-cache structures used by the adaptive runtime on the intercept path.
pub mod cache;
/// Metadata and hint payloads attached to adaptive execution plans.
pub mod metadata;
/// Execution-plan types describing discovered tool parallelism.
pub mod plan;
/// Run and call record types collected by the telemetry pipeline.
pub mod records;

#[cfg(test)]
#[path = "../../tests/unit/types_tests.rs"]
mod tests;