nemo_relay/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 Relay 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/// Plugin-neutral evidence recording for managed LLM calls.
11pub mod optimization;
12/// Global and scope-local middleware registration helpers.
13pub mod registry;
14/// Advanced runtime state, callbacks, and scope-stack helpers.
15pub mod runtime;
16/// Scope stack lifecycle and mark-event entry points.
17pub mod scope;
18/// Global and scope-local event subscriber registration helpers.
19pub mod subscriber;
20/// Tool lifecycle helpers and managed execution entry points.
21pub mod tool;
22
23pub(crate) mod shared;
24pub(crate) mod skill_load;