Skip to content

Bump nnsight from 0.5.13 to 0.5.14#103

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/nnsight-0.5.14
Closed

Bump nnsight from 0.5.13 to 0.5.14#103
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/nnsight-0.5.14

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 12, 2026

Bumps nnsight from 0.5.13 to 0.5.14.

Release notes

Sourced from nnsight's releases.

v0.5.14

NNsight v0.5.14 Release Notes

Release Date: January 2026

This release focuses on improving the remote execution experience, vLLM compatibility, developer documentation, and overall code quality. It includes 59 commits across 37 files, with significant enhancements to the job status display system, vLLM input handling, and comprehensive new documentation.


✨ New Features

Enhanced Remote Job Status Display

The remote execution logging system has been completely redesigned with a new JobStatusDisplay class that provides:

  • Real-time visual feedback with Unicode spinners and status icons
  • ANSI color support with automatic detection for terminals and notebooks
  • In-place status updates that don't flood the console with repeated messages
  • Elapsed time tracking per status phase
  • Seamless Jupyter notebook integration with flicker-free HTML rendering using DisplayHandle
# New visual status display when running remote traces
with model.trace("Hello", remote=True):
    output = model.lm_head.output.save()
Output now shows:
⠋ [job-id] QUEUED     (2.3s)
● [job-id] RUNNING    (0.5s)
✓ [job-id] COMPLETED  (1.2s)

vLLM Token Input Compatibility

vLLM now accepts a broader range of input formats, matching the flexibility of LanguageModel:

  • Token ID lists: model.trace([1, 2, 3, 4])
  • HuggingFace tokenizer outputs: model.trace(tokenizer("Hello", return_tensors="pt"))
  • Dictionary with input_ids: model.trace({"input_ids": tensor, "attention_mask": mask})
from nnsight.modeling.vllm import VLLM
model = VLLM("gpt2", dispatch=True)
Now works with pre-tokenized inputs
tokens = tokenizer("Hello world", return_tensors="pt")
with model.trace(tokens, temperature=0.0):
logits = model.logits.output.save()

... (truncated)

Commits
  • 7ab8470 Merge pull request #591 from ndif-team/dev
  • b10985f Merge pull request #585 from Butanium/fix/vllm-auto-dispatch
  • c594335 Merge pull request #588 from Butanium/fix/prepare-input-typing
  • ed49406 Merge pull request #589 from Butanium/feat/vllm-token-input-compat
  • 15624dc refactor(status_display): update display handling in JobStatusDisplay
  • 4e2f03f refactor(status_display): enhance job status update mechanism
  • eb58297 refactor(logging): consolidate job status display into remote backend
  • 0bc6c4b fixed deprecated import
  • b6580a9 feat(vllm): accept token lists and HuggingFace tokenizer results
  • 6701f0d fix(typing): correct _prepare_input type annotations in LanguageModel
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [nnsight](https://github.com/ndif-team/nnsight) from 0.5.13 to 0.5.14.
- [Release notes](https://github.com/ndif-team/nnsight/releases)
- [Commits](ndif-team/nnsight@v0.5.13...v0.5.14)

---
updated-dependencies:
- dependency-name: nnsight
  dependency-version: 0.5.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jan 12, 2026
@vercel
Copy link
Contributor

vercel bot commented Jan 12, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
workbench Error Error Jan 12, 2026 7:27pm

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jan 19, 2026

Superseded by #105.

@dependabot dependabot bot closed this Jan 19, 2026
@dependabot dependabot bot deleted the dependabot/uv/nnsight-0.5.14 branch January 19, 2026 17:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants