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
// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Storage backends for adaptive runtime state and learned artifacts.

/// Erased backend alias used by runtime configuration and dependency injection.
pub mod erased;
/// In-memory backend useful for tests and local-only runtime state.
pub mod memory;
/// Async storage traits implemented by adaptive persistence backends.
pub mod traits;

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