Skip to main content

nemo_flow/api/
mod.rs

1// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Public API for the NeMo Flow runtime.
5
6/// Lifecycle event types and builder-backed event constructors.
7pub mod event;
8/// LLM lifecycle helpers and managed execution entry points.
9pub mod llm;
10/// Global and scope-local middleware registration helpers.
11pub mod registry;
12/// Advanced runtime state, callbacks, and scope-stack helpers.
13pub mod runtime;
14/// Scope stack lifecycle and mark-event entry points.
15pub mod scope;
16/// Global and scope-local event subscriber registration helpers.
17pub mod subscriber;
18/// Tool lifecycle helpers and managed execution entry points.
19pub mod tool;
20
21mod shared;