GAIA v0.14.1 Release Notes
Overview
This release enhances the Code Agent with checklist-based orchestration for web development, upgrades to Lemonade Server v9.1.0, and fixes chat history persistence.
Installation
# Install uv (ultra-fast Python package manager)
# Windows: irm https://astral.sh/uv/install.ps1 | iex
# macOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh
git clone https://github.com/amd/gaia.git
cd gaia
uv venv .venv --python 3.12
source .venv/bin/activate # Windows: .\.venv\Scripts\Activate.ps1
uv pip install -e .
gaia -vNote: As GAIA is upgraded, the above flow is the recommended one. A new installer is coming in a future.
What's New
🛠️ Code Agent Enhancements
New orchestration framework for building web applications:
- Checklist-driven workflows that break complex tasks into structured steps
- Automatic project type detection (Next.js, Python) with appropriate tooling
- Conversation history summarization for faster debugging cycles
- Validation tools for build, lint, and type-checking
gaia code "Create a task management app with user authentication"🍋 Lemonade Server v9.1.0
- Upgraded to Lemonade Server v9.1.0
- Health check verifies Lemonade installation with clear error messages if missing
- Context size validation ensures sufficient tokens before agent execution
💬 Chat Improvements
- History persistence fix: Conversation history now properly saves with
/saveand restores with/resume - Better no-document behavior: Chat agent uses general knowledge instead of failing when no documents are indexed
Improvements
- Linting: Cross-platform linting script (
util/lint.py) for Windows/macOS/Linux - CI/CD: New chat agent test workflow
What's Changed
- GAIA Code Enhancements by @itomek
- Implement cross-platform linting script by @kovtcharov
- Add health check for Lemonade server installation by @kovtcharov
- Add context size validation for Lemonade server by @kovtcharov
- Fix Chat History Persistence by @kovtcharov
- Enhance chat agent behavior when no documents indexed by @kovtcharov
- Faster Web Dev Agent Iterations by @eddierichter-amd
- Update Lemonade version to 9.1.0 by @kovtcharov
Full Changelog: v0.14.0...v0.14.1