Skip to content

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 13 Aug 14:44
· 12 commits to main since this release
91eff76

Changes

  • feat: add benchmarks for Terminal-Bench 2.1, including scripts and agent integration (ce163f3)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.1/agav-darwin-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

# Intel
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.1/agav-darwin-x64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Linux

# x64
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.1/agav-linux-x64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

# ARM64
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.1/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.1/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav.exe"

# Add to PATH (run once)
$path = [Environment]::GetEnvironmentVariable("Path", "User")
if ($path -notlike "*$env:LOCALAPPDATA*") {
  [Environment]::SetEnvironmentVariable("Path", "$env:LOCALAPPDATA;$path", "User")
}

What's Changed

  • feat: add benchmarks for Terminal-Bench 2.1, including scripts and ag… by @somnath-world123 in #29

New Contributors

Full Changelog: https://github.com/prapaa-ai/agav/commits/v0.1.1