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
16 changes: 10 additions & 6 deletions bun.lock

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

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@
"type": "git",
"url": "git+https://github.com/devlux76/q2.git"
},
"keywords": ["llm", "onnx", "transformers", "wasm", "quaternary-quantization"],
"keywords": [
"llm",
"onnx",
"transformers",
"wasm",
"quaternary-quantization"
],
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
Expand All @@ -69,6 +75,6 @@
"vitest": "latest"
},
"dependencies": {
"@huggingface/transformers": "latest"
"@huggingface/transformers": "^4.0.0-next.8"

Copilot AI Mar 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a caret range with a pre-release tag ("^4.0.0-next.8") can unintentionally advance to newer pre-releases or the eventual stable 4.0.0 on the next install/lock refresh, which is a meaningful runtime risk for this app. Consider pinning to the exact version ("4.0.0-next.8") if you want deterministic behavior until you explicitly choose to upgrade again.

Suggested change
"@huggingface/transformers": "^4.0.0-next.8"
"@huggingface/transformers": "4.0.0-next.8"

Copilot uses AI. Check for mistakes.
}
}
Loading