Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
250 changes: 250 additions & 0 deletions ATTRIBUTIONS-Rust.md

Large diffs are not rendered by default.

57 changes: 56 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ The table below summarizes the support level for each binding surface.
| Python | ✅ Fully Supported | Fully documented with Quick Start and Guides |
| Node.js | ✅ Fully Supported | Fully documented with Quick Start and Guides |
| Rust | ✅ Fully Supported | Fully documented with Quick Start and Guides |
| Coding-Agent CLI | 🚧 Experimental | Install with `cargo install nemo-flow-cli`. |
| Go | 🚧 Experimental | Source-first under `go/nemo_flow`. |
| WebAssembly | 🚧 Experimental | Source-first under `crates/wasm`. |
| FFI | 🚧 Experimental | Source-first under `crates/ffi`. |
Expand Down Expand Up @@ -161,6 +162,7 @@ The following table summarizes maintained third-party integrations and whether e
| [LangChain](third_party/README-langchain.md), [LangGraph](third_party/README-langgraph.md), [LangChain NVIDIA](third_party/README-langchain-nvidia.md) | 🚧 Patch | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
| [opencode](third_party/README-opencode.md) | 🚧 Patch | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
| [OpenClaw](integrations/openclaw/README.md) | `nemo-flow-openclaw` package, `nemo-flow` plugin ID | ✅ Yes | ❌ No | ❌ No | ❌ No |
| [Coding-Agent CLI](docs/integrate-frameworks/coding-agent-gateway.md) | `nemo-flow-cli` package for closed harnesses | ✅ Yes | ❌ No | ❌ No | ❌ No |
| [Hermes Agent](third_party/README-hermes-agent.md) | 🚧 Patch | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |

Patch-based integrations offer experimental support. Our roadmap includes switching over to first-party plugins and packages where upstream extension points allow it.
Expand Down
1 change: 1 addition & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ axum = "0.8"
bytes = "1"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
console = "0.16"
futures-util = "0.3"
http = "1"
http-body-util = "0.1"
Expand Down
34 changes: 23 additions & 11 deletions crates/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ SPDX-License-Identifier: Apache-2.0
[![npm wasm](https://img.shields.io/npm/v/nemo-flow-wasm?label=nemo-flow-wasm&color=CC3534&logo=npm)](https://www.npmjs.com/package/nemo-flow-wasm)
[![Crates.io](https://img.shields.io/crates/v/nemo-flow?label=nemo-flow&color=B7410E&logo=rust)](https://crates.io/crates/nemo-flow)
[![Crates.io](https://img.shields.io/crates/v/nemo-flow-adaptive?label=nemo-flow-adaptive&color=B7410E&logo=rust)](https://crates.io/crates/nemo-flow-adaptive)
[![Crates.io](https://img.shields.io/crates/v/nemo-flow-cli?label=nemo-flow-cli&color=B7410E&logo=rust)](https://crates.io/crates/nemo-flow-cli)
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/NVIDIA/NeMo-Flow)

# nemo-flow-cli
Expand Down Expand Up @@ -50,10 +51,10 @@ with the installed `nemo-flow` command rather than link against the crate.

## Installation

Install the CLI from a repository checkout:
Install the CLI:

```bash
cargo install --path crates/cli
cargo install nemo-flow-cli
```

That command installs the binary as:
Expand Down Expand Up @@ -103,19 +104,30 @@ Project config lives at `./.nemo-flow/config.toml`; user config lives at
The project layer overrides system config, and the user layer overrides the
project layer.

Exporter config uses nested per-backend tables:
Observability exporters are configured through the plugin config. Edit the user
plugin config with:

```bash
nemo-flow plugins edit
```

The canonical plugin file is `plugins.toml`; user config lives at
`~/.config/nemo-flow/plugins.toml` or
`$XDG_CONFIG_HOME/nemo-flow/plugins.toml`. Project config lives at
`.nemo-flow/plugins.toml`.

Minimal ATIF example:

```toml
[exporters.atif]
dir = "./atif"
version = 1

[exporters.atof]
dir = "./atof"
mode = "append"
filename_template = "{session_id}.jsonl"
[[components]]
kind = "observability"
enabled = true

[exporters.openinference]
endpoint = "http://localhost:6006/v1/traces"
[components.config.atif]
enabled = true
output_directory = "./atif"
```

## Documentation
Expand Down
Loading
Loading