Skip to content

AirLLM Chat v1.0.0

Choose a tag to compare

@github-actions github-actions released this 30 Apr 20:41
· 15 commits to main since this release

AirLLM Chat - Release Notes Template

Used by .github/workflows/release.yml

What's New

  • πŸͺŸ Windows binary β€” Standalone .exe, no Python needed
  • 🐧 Linux binary β€” Pre-built for Ubuntu/Debian/Fedora
  • 🍎 macOS binary β€” Universal build for Intel & Apple Silicon
  • πŸ“¦ Source distribution β€” tar.gz and zip archives

Downloads

Platform File Description
πŸͺŸ Windows airllm-chat-windows-x64.zip Standalone .exe (Python bundled)
🐧 Linux airllm-chat-linux-x64.tar.gz Pre-built binary (Python bundled)
🍎 macOS airllm-chat-macos.zip Pre-built binary (Python bundled)
πŸ“¦ Source airllm-chat-src.tar.gz Source code (requires Python)
πŸ“¦ Source airllm-chat-src.zip Source code (requires Python)

Quick Start

Windows

  1. Download airllm-chat-windows-x64.zip
  2. Extract all files
  3. Double-click airllm-chat.exe
  4. Browser opens at http://127.0.0.1:7860

Linux

tar -xzf airllm-chat-linux-x64.tar.gz
cd airllm-chat
chmod +x airllm-chat
./airllm-chat

macOS

unzip airllm-chat-macos.zip
cd airllm-chat
chmod +x airllm-chat
./airllm-chat

From Source

tar -xzf airllm-chat-src.tar.gz
cd airllm-chat
python -m venv venv
source venv/bin/activate  # or venv\Scripts\activate on Windows
pip install -r requirements.txt
python app.py

Use with VS Code Extensions (Cline, Continue, etc.)

Start the binary, then configure your extension:

  • Base URL: http://127.0.0.1:7860/v1
  • API Key: sk-local (or anything)
  • Model: Select from the UI or set --model flag

Verify Downloads

All files have SHA256 checksums. Verify with:

sha256sum -c SHA256SUMS.txt

Full Changelog: https://github.com/GhislainAdon/airllm-chat/commits/v1.0.0