Skip to content
Draft
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
18 changes: 18 additions & 0 deletions .github/workflows/ci_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,24 @@ jobs:
path: ${{ env.NEMO_RELAY_CI_WORKSPACE_TMP }}/wheels/*.whl
if-no-files-found: error

- name: Package Python plugin SDK wheel
if: ${{ matrix.platform == 'linux-amd64' }}
working-directory: ${{ env.NEMO_RELAY_CI_WORKSPACE }}
run: |
set -e
just \
--set output_dir "${{ env.NEMO_RELAY_CI_WORKSPACE_TMP }}" \
--set ref_name "${NEMO_RELAY_PACKAGE_VERSION}" \
package-python-plugin

- name: Upload Python plugin SDK wheel artifact
if: ${{ matrix.platform == 'linux-amd64' }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: python-plugin-wheel
path: ${{ env.NEMO_RELAY_CI_WORKSPACE_TMP }}/plugin-wheels/*.whl
if-no-files-found: error

- name: Prune uv cache
working-directory: ${{ env.NEMO_RELAY_CI_WORKSPACE }}
run: uv cache prune --ci
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repos:
hooks:
- id: ty
name: ty (type check)
entry: uv run ty check . --exclude docs/** --exclude fern/** --exclude third_party/** --exclude ./examples/** --exclude .cache/** --exclude .claude/**
entry: uv run ty check . --extra-search-path python/plugin/src --exclude docs/** --exclude fern/** --exclude third_party/** --exclude ./examples/** --exclude .cache/** --exclude .claude/** --exclude python/plugin/src/nemo_relay_plugin/_proto/**
language: system
types: [python]
pass_filenames: false
Expand Down
631 changes: 631 additions & 0 deletions ATTRIBUTIONS-Python.md

Large diffs are not rendered by default.

2,343 changes: 1,981 additions & 362 deletions ATTRIBUTIONS-Rust.md

Large diffs are not rendered by default.

212 changes: 212 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ members = [
"crates/core",
"crates/types",
"crates/plugin",
"crates/worker-proto",
"crates/worker",
"crates/adaptive",
"crates/pii-redaction",
"crates/cli",
Expand All @@ -28,6 +30,8 @@ repository = "https://github.com/NVIDIA/NeMo-Relay"
nemo-relay = { version = "0.5.0", path = "crates/core", default-features = false }
nemo-relay-types = { version = "0.5.0", path = "crates/types" }
nemo-relay-plugin = { version = "0.5.0", path = "crates/plugin" }
nemo-relay-worker-proto = { version = "0.5.0", path = "crates/worker-proto" }
nemo-relay-worker = { version = "0.5.0", path = "crates/worker" }
nemo-relay-adaptive = { version = "0.5.0", path = "crates/adaptive" }
nemo-relay-pii-redaction = { version = "0.5.0", path = "crates/pii-redaction" }
nemo-relay-ffi = { version = "0.5.0", path = "crates/ffi" }
Expand Down
1 change: 1 addition & 0 deletions about.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ accepted = [
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]

ignore-build-dependencies = false
Loading