Skip to content

aeval v0.2.6

Choose a tag to compare

@guohai guohai released this 28 Jun 07:36
· 10 commits to main since this release

aeval v0.2.6

Built: 2026-06-28 07:36:12 UTC

Binary Assets

Asset SHA256 Size (bytes)
aeval-macos-arm64 7a95c7e01f1e3352555cd87bb66ee68d6d40c9face189c420a5733ce3851ca21 259332944
aeval-macos-x86_64 624d153e32b6e6a10674d53c0f8098b7ad472103d9453e431bb0997ac715c7c4 352554272
aeval-linux-x86_64 78993b95b0eb00b695b80681afef005efa1fe85333da46f41ecad6bd8de97401 436432624
aeval-linux-arm64 d04f3b4fa8d2b64816db0acad41dd305481e415de01debe93b20bc9ae170e53c 385068848

Public Repository Updates

  • Updated runtime config/
  • Updated public examples/ (interrupt, response, multi_turn_dialogue)
  • Updated required corpus/ subset for those examples
  • Updated release/ notes and checksums
  • Preserved existing root README.md

Smoke Test Status

  • macOS arm64: pass
  • macOS x86_64: pass
  • Linux x86_64: pass
  • Linux arm64: pass

Packaged Binary Validation Status

  • Plugin/stage checks on packaged binaries (macOS + Linux): pass

Release Scenario Test Status

  • Linux x86_64 examples/config runtime: pass
  • Linux arm64 examples/config runtime: pass

One-Line Install (Latest Release)

OS="$(uname -s | tr '[:upper:]' '[:lower:]')"; ARCH="$(uname -m)"; case "${OS}-${ARCH}" in darwin-arm64) TARGET="macos-arm64" ;; darwin-x86_64) TARGET="macos-x86_64" ;; linux-x86_64) TARGET="linux-x86_64" ;; linux-aarch64|linux-arm64) TARGET="linux-arm64" ;; *) echo "Unsupported platform: ${OS}-${ARCH}" >&2; exit 1 ;; esac; curl -fsSL "https://github.com/Agora-Build/aeval/releases/latest/download/aeval-${TARGET}" -o aeval && chmod +x aeval && ./aeval --help

Links