Align LiveKit plugin ONNX runtime dependencies#1424
Conversation
🦋 Changeset detectedLatest commit: c8e4143 The changes in this PR will be included in the next version bump. This PR includes changesets to release 31 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 57c175e7c8
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "@huggingface/hub": "2.4.1", | ||
| "@huggingface/transformers": "3.7.2", | ||
| "onnxruntime-node": "1.21.0" | ||
| "@huggingface/transformers": "4.2.0", |
There was a problem hiding this comment.
Avoid v4 tokenizer discovery for offline cached revisions
In offline or egress-blocked agents that run downloadFiles() and then initialize the turn detector, this v4 bump regresses the local-only path: Transformers.js 4.2.0 discovers tokenizer files via get_tokenizer_files(modelId) without forwarding revision or local_files_only, so our non-main revisions (v1.2.2-en, v0.4.1-intl) are not found in the revision-specific cache and it attempts metadata against main. When that request cannot reach Hugging Face, AutoTokenizer.from_pretrained(..., { revision, local_files_only: true }) fails even though the tokenizer files were downloaded, so local EOU startup breaks.
Useful? React with 👍 / 👎.
No description provided.