nemo-relay-cli 0.7.0-rc.6

Coding-agent gateway CLI for NeMo Relay observability.
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Process entrypoint for the NeMo Relay coding-agent gateway.

use std::process::ExitCode;

fn main() -> ExitCode {
    nemo_relay_cli::run_cli()
}