aeval v0.4.1
Built: 2026-09-04 21:06:10 UTC
Binary Assets
| Asset | SHA256 | Size (bytes) |
|---|---|---|
| aeval-macos-arm64 | 1116538f7dae195e9575be1b764be374346c0a26d3d03d221eaf03c35e15ea3d | 259474464 |
| aeval-macos-x86_64 | d5d5d3346671f537224718f64eaa63e1ad82f74ab7671e5d1ba2e4812a53b64c | 354491040 |
| aeval-linux-x86_64 | d7af8240d5f4d539ca628c7d90f6ae806aaa7c1e2a79f523caed664144e3abd4 | 449357480 |
| aeval-linux-arm64 | 6e7a43927bb2bac0614e19f2cedab1cf6b3cab05f35a508aed6db9d10e41c6fc | 402966816 |
Public Repository Updates
- Updated root
README.mdwith virtual-soundcard setup and audio I/O behavior - Updated runtime
config/ - Updated public
examples/(interrupt, response, multi_turn_dialogue) - Updated required
corpus/subset for those examples - Updated
release/notes and checksums
Audio I/O
- Built-in platform configurations default to native virtual-soundcard audio I/O
- Existing scenario actions remain compatible:
audio.playroutes through the resolved audio I/O mode - macOS soundcard mode requires BlackHole 2ch at 48 kHz; Linux requires the
VirtualAudiosnd-alooproute - A scenario can explicitly select the legacy route with
audio_io.mode: web_hook
Smoke Test Status
- macOS arm64: pass
- macOS x86_64: pass
- Linux x86_64: pass
- Linux arm64: pass
- Real providers on host browser: pass
- Real providers in Docker/headless Linux: pass (platforms: livekit)
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