Releases: SocketDev/socket-btm
Releases · SocketDev/socket-btm
ONNX Runtime WASM v20251121-8e0a63c
ONNX Runtime v1.20.1 compiled to WASM with SIMD and threading support.
Included Files
ort.wasm- Main WASM binary with SIMD + threadingort.mjs- ES module loaderchecksums.txt- SHA256 checksums for verification
Usage
import * as ort from './ort.mjs';Built from ONNX Runtime v1.20.1
Yoga Layout WASM v20251119-3e6e6fa
Yoga Layout v3.1.0 compiled to WASM for flexbox layout calculations.
Included Files
yoga-v20251119-3e6e6fa.wasm- Yoga Layout WASM binaryyoga-v20251119-3e6e6fa.mjs- ES Module JavaScript bindingsyoga-sync-v20251119-3e6e6fa.js- Synchronous JavaScript wrapperchecksums.txt- SHA256 checksums for verificationchecksums.txt.asc- GPG signature (if available)
Download URLs
https://github.com/SocketDev/socket-btm/releases/download/yoga-layout-v20251119-3e6e6fa/yoga-v20251119-3e6e6fa.wasm
https://github.com/SocketDev/socket-btm/releases/download/yoga-layout-v20251119-3e6e6fa/yoga-v20251119-3e6e6fa.mjs
https://github.com/SocketDev/socket-btm/releases/download/yoga-layout-v20251119-3e6e6fa/yoga-sync-v20251119-3e6e6fa.js
Verification
# Verify checksums
shasum -a 256 -c checksums.txt
# Verify GPG signature (if GPG key is available)
gpg --verify checksums.txt.asc checksums.txtUsage
// ES Module (async)
import Yoga from './yoga-v20251119-3e6e6fa.mjs';
// Synchronous wrapper
import Yoga from './yoga-sync-v20251119-3e6e6fa.js';Built from Yoga Layout v3.1.0
node-smol-builder 20251119-b453a72
Minimal Node.js v24.10.0 binaries for all platforms.
Platforms
- macOS: arm64, x64
- Linux (glibc): x64, arm64
- Linux (musl/Alpine): x64, arm64
- Windows: x64, arm64
Files
node-compiled-darwin-arm64- macOS Apple Siliconnode-compiled-darwin-x64- macOS Intelnode-compiled-linux-x64- Linux x64 (glibc)node-compiled-linux-arm64- Linux ARM64 (glibc)node-compiled-linux-musl-x64- Alpine Linux x64node-compiled-linux-musl-arm64- Alpine Linux ARM64node-compiled-win32-x64.exe- Windows x64node-compiled-win32-arm64.exe- Windows ARM64 (cross-compiled)checksums.txt- SHA256 checksums
Usage
Download the appropriate binary for your platform and run it:
./node-compiled-darwin-arm64 script.jsBuilt from Node.js v24.10.0
AI Models v20251119-3e6e6fa
Production AI models for Socket BTM, optimized with INT4 quantization.
Included Models
MiniLM-L6-v2
- Sentence embeddings model
- 384-dimensional embeddings
- INT4 quantized (~75% size reduction)
CodeT5
- Code understanding model
- INT4 quantized (~75% size reduction)
Files
models-v20251119-3e6e6fa.tar.gz- All production modelschecksums.txt- SHA256 checksums for all .onnx fileschecksums.txt.asc- GPG signature (if available)
Download URL
https://github.com/SocketDev/socket-btm/releases/download/models-v20251119-3e6e6fa/models-v20251119-3e6e6fa.tar.gz
Verification
# Extract and verify checksums
tar -xzf models-v20251119-3e6e6fa.tar.gz
shasum -a 256 -c checksums.txt
# Verify GPG signature (if GPG key is available)
gpg --verify checksums.txt.asc checksums.txtUsage
Extract the archive and load models with ONNX Runtime:
import * as ort from 'onnxruntime-node';
const session = await ort.InferenceSession.create('./minilm-l6/model.onnx');