GAIA v0.18.1 Release Notes
GAIA v0.18.1 is a patch release covering two regressions reported after v0.18.0. The first is a sweep of brokenamd-gaia.ai/... documentation links across connector cards, the Agent UI splash, the agent registry, the installer, and BuilderAgent templates — every link was missing the /docs/ prefix the Mintlify site serves all content under, so 12 in-product “Learn More” / troubleshooting URLs were silently 404’ing. The second is a CSS class typo in the Agent UI ChatView top navbar that broke the right-side flex container, stacking the action icons vertically instead of laying them out horizontally.
Why upgrade:
- Documentation links resolve again — every
amd-gaia.ai/...URL surfaced by GAIA (connector catalog, Agent UI server splash, agent registry error guidance, BuilderAgent templates, installer messages, WebUI metadata) now routes through the/docs/prefix Mintlify expects. Two regression tests prevent the prefix from silently dropping again. - Agent UI navbar action icons render horizontally — the right-side container of the
ChatViewtop navbar referenced a CSS class that didn’t exist (chat-header-rightvs the definedtask-header-right), so the action icons stacked vertically at all viewport widths. The one-line rename restoresdisplay: flex.
Key Changes
Both changes in v0.18.1 are bug fixes targeting regressions reported after v0.18.0 shipped.- Broken
amd-gaia.aidocumentation links across multiple surfaces (PR #1061, closes #1058) — Every “Learn More”, troubleshooting, and SDK doc link insrc/gaia/was pointing at a barehttps://amd-gaia.ai/<path>URL that 404’d, because the Mintlify Documentation tab serves all content under/docs/. The fix inserts the missing/docs/prefix across all 12 affected locations — the connector catalog, the Agent UI server splash, agent registry error guidance, BuilderAgent template doc-comments, installer messages, and WebUI metadata — and addstests/unit/test_amd_gaia_urls.pyplustests/unit/connectors/test_catalog_docs_url.pyso the prefix can’t silently drop again. - Agent UI top-navbar action icons stacked vertically (PR #1060, fixes #1059) — The right-side container of
ChatView’s top navbar (<div className="chat-header-right">) referenced a CSS class that didn’t exist; the correctly defined rule providingdisplay: flexis.task-header-right. Renaming the one JSXclassNamerestores the horizontal layout at all viewport widths without touching any other file.
Full Changelog
2 commits since v0.18.0:ae94190a— fix(connectors): route all amd-gaia.ai URLs through /docs/ prefix (#1061)896dc203— fix(webui): restore flex layout on top navbar right container (#1060)