Skip to content

AI Workbench v1.9.2

Choose a tag to compare

@github-actions github-actions released this 28 Jul 08:57
· 6 commits to main since this release

AI Workbench v1.9.2

What's Changed

Changed

  • [CHG] Resolve all outstanding cargo clippy -- -D warnings failures. The project no longer builds with the strict clippy profile due to 11 lint errors in test modules and initialization patterns: items_after_test_module (src/browser/opener.rs, src/update/check.rs), field_reassign_with_default in five test helpers (src/config.rs, src/setup/wizard.rs, src/ui/settings.rs), and useless_vec in semver-selection tests (src/update/check.rs). All affected code now uses struct-literal initialization with ..Default::default(), places test modules at the end of their files, and replaces single-use vec! literals with arrays. No runtime behavior changed; this is a maintenance/CI-hardening release.

Downloads

Platform Architecture Download
Linux x64 ai-workbench-x86_64-unknown-linux-gnu.tar.gz
Linux ARM64 ai-workbench-aarch64-unknown-linux-gnu.tar.gz
macOS Apple Silicon (M1/M2/M3/M4) ai-workbench-aarch64-apple-darwin.tar.gz
macOS Intel ai-workbench-x86_64-apple-darwin.tar.gz
Windows x64 ai-workbench-x86_64-pc-windows-msvc.zip
Windows ARM64 ai-workbench-aarch64-pc-windows-msvc.zip

Installation

Homebrew (macOS / Linux):

brew install eqms/ai-workbench/ai-workbench

Unix (Linux/macOS):

# Download and extract
tar xzf ai-workbench-*.tar.gz
chmod +x ai-workbench
./ai-workbench

Windows:

# Extract zip and run
Expand-Archive ai-workbench-*.zip -DestinationPath .
.\ai-workbench.exe

Auto-Update

AI Workbench includes built-in auto-update functionality. Updates are checked automatically on startup.

See README for full documentation.