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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ jobs:
working-directory: ${{ github.workspace }}/NeMo-Flow
env:
CARGO_REGISTRY_TOKEN: ${{ steps.crates-io-auth.outputs.token }}
run: cargo publish --workspace --no-verify
run: cargo publish -p nemo-flow -p nemo-flow-adaptive -p nemo-flow-ffi --no-verify

- name: Publish to crates.io with registry token
if: ${{ vars.NEMO_FLOW_ENABLE_TRUSTED_PUBLISHING != 'true' }}
working-directory: ${{ github.workspace }}/NeMo-Flow
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --workspace --no-verify
run: cargo publish -p nemo-flow -p nemo-flow-adaptive -p nemo-flow-ffi --no-verify
Comment thread
willkill07 marked this conversation as resolved.

publish-python:
name: Publish / PyPI
Expand All @@ -159,7 +159,7 @@ jobs:
path: dist/

- name: Publish to PyPI with trusted publishing
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0

publish-npm:
name: Publish / npm
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
unzip -q ./consolidated.zip -d combined
echo "Platform binaries included:"
ls -la combined/package/*.node
npm publish combined/package --access public --tag "${NEMO_FLOW_NPM_DIST_TAG}"
npm publish ./combined/package --access public --tag "${NEMO_FLOW_NPM_DIST_TAG}"

- name: Publish WASM package to npm
if: false
Expand Down
20 changes: 20 additions & 0 deletions crates/ffi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!--
SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0
-->

# nemo-flow-ffi

`nemo-flow-ffi` provides the C-compatible ABI layer for NeMo Flow.

It exposes the Rust runtime through exported `nemo_flow_*` symbols and a
generated C header so downstream native bindings can call into the shared
runtime contract.

Use this crate when building language bindings or native integrations that need
the raw C ABI. The repository-maintained Go binding consumes this surface.

For project-level documentation, start with:

- the repo root `README.md`
- `docs/troubleshooting/troubleshooting-guide.md`
26 changes: 26 additions & 0 deletions crates/node/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!--
SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0
-->

# nemo-flow-node

`nemo-flow-node` is the Rust native extension crate behind the NeMo Flow Node.js
package.

It uses napi-rs to expose NeMo Flow runtime scopes, tool and LLM lifecycle
helpers, middleware, subscribers, typed helpers, plugin helpers, and adaptive
runtime helpers to JavaScript and TypeScript.
Comment thread
willkill07 marked this conversation as resolved.

Most Node.js users should install the npm package rather than depend on this
crate directly:

```bash
npm install nemo-flow-node
```

For project-level documentation, start with:

- the repo root `README.md`
- `docs/getting-started/nodejs.md`
- `docs/reference/api/nodejs/index.md`
20 changes: 20 additions & 0 deletions crates/wasm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!--
SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0
-->

# nemo-flow-wasm

`nemo-flow-wasm` provides the WebAssembly binding crate for NeMo Flow.

It uses wasm-bindgen to expose the shared runtime contract to JavaScript
environments that consume the generated WebAssembly package.
Comment thread
willkill07 marked this conversation as resolved.

Most JavaScript users should consume the generated npm package rather than
depend on this crate directly.

For project-level documentation, start with:

- the repo root `README.md`
- `docs/getting-started/installation.md`
- `crates/wasm/package.json`