Skip to content

v0.14.1

Latest

Choose a tag to compare

@github-actions github-actions released this 15 Dec 23:31
· 1 commit to main since this release
606effa

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 -v

Note: 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 /save and 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

Full Changelog: v0.14.0...v0.14.1