Skip to content

Releases: unitedeffectslabs/agent-memory

Native artifact: libtokenizers 1.27.0 static lib, Windows x64 (GNU, source-built)

Choose a tag to compare

@NestorCanales NestorCanales released this 17 Jul 18:52
bc9dadc

Static tokenizer library (libtokenizers.a) for Windows x64, built from the official daulet/tokenizers v1.27.0 source tag (MIT). No upstream Windows prebuilt exists — the project publishes prebuilt archives for macOS and Linux only — so the local-embeddings epic builds and hosts it here, pinned by SHA-256 in assets/manifest.json like every other artifact.

Built on Windows with the GNU Rust toolchain (matches the MinGW gcc that CGo uses to link the Go binary — the MSVC toolchain would produce an incompatible .lib):

rustup default stable-x86_64-pc-windows-gnu
git clone --depth 1 --branch v1.27.0 https://github.com/daulet/tokenizers
cd tokenizers && cargo build --release
# artifact: target/release/libtokenizers_ffi.a  (renamed to libtokenizers.a to match -ltokenizers)

Toolchain: rustc 1.97.1 (GNU), Go 1.26.5, MinGW gcc 16.1.0. Full procedure + link-flag notes in Documentation/windows-build.md.

Native artifact: ONNX Runtime 1.26.0 CPU dylib, macOS x86_64 (source-built)

Choose a tag to compare

@NestorCanales NestorCanales released this 17 Jul 15:12
bc9dadc

Source-built ONNX Runtime 1.26.0 CPU-only dylib for macOS x86_64 (Intel Macs).

Microsoft's official macOS-Intel prebuilts stopped at 1.23.0; the local-embeddings epic pins ORT 1.26.0 on every platform to match the onnxruntime_go v1.31.0 headers, so this artifact is built from the official source tag v1.26.0 (MIT license) and hosted here. Consumed exclusively by make assets via assets/manifest.json (SHA-256 pinned).

Build recipe (from an arm64 Mac, cross-compiling — reproducible):

git clone --depth 1 --branch v1.26.0 --recursive https://github.com/microsoft/onnxruntime
./build.sh --config Release --build_dir build/macos_x64 --osx_arch x86_64 \
  --build_shared_lib --parallel --skip_tests --compile_no_warning_as_error
# artifact: build/macos_x64/Release/libonnxruntime.1.26.0.dylib

Toolchain: CMake 4.4.0, Python 3.12, Xcode CLT (macOS 26). Verified by running the repo's localembed integration test as an x86_64 binary under Rosetta 2: PASS, cosine distances match the arm64/Linux builds.