New to GAIA? Start with the Quickstart for first-time setup, then come back here.
What You Can Do
Find Anything on Your PC
Ask the agent to locate files across your drives — by name, type, content, or recency. No more digging through folder trees.“Find all Python files in my Downloads folder” “Show me the largest files on my Desktop” “Search my project for files that import pandas”The agent searches your common folders first, then offers a deep search across all drives if nothing turns up.
Analyze Any Document
Drag files into the chat — or just ask the agent to find them. It indexes the content and lets you ask questions, extract data, compare sections, or get summaries. Works with:“Summarize this PDF in 3 bullet points” “Compare these two contracts and list the differences” “What’s the total spend in this expense report?”
Install
Pick the install path that fits you best:- Desktop installer (easiest)
- npm
- Python CLI
Prebuilt desktop installers are published on the
GitHub Releases page alongside
each tagged release. They bundle the Electron shell; Lemonade Server and
the default model are downloaded automatically on first launch. This is
the simplest path for non-developer end users.Artifact naming (See the Packaging & Distribution page for more detail on
the installers, supported platforms, and signing.
electron-builder.yml):
gaia-agent-ui-<version>-<arch>-setup.<ext> — e.g. gaia-agent-ui-0.17.2-x64-setup.exe
and gaia-agent-ui-0.17.2-amd64.deb.Windows (.exe):- Download
gaia-agent-ui-<version>-x64-setup.exefrom Releases. - Double-click to install, then launch “GAIA” from the Start Menu (binary:
gaia-desktop). - Update by downloading and running the newer installer.
- Uninstall via Windows Settings → Apps → Installed apps → GAIA.
Uninstall
- npm
- Python CLI
Roll back to a previous version
If an update introduces a regression, you can roll back to a specific earlier release directly from the app — no need to hunt down an old installer on GitHub. How to roll back (desktop installer only):- Open Settings → About.
- Click “Roll back to a previous version”.
- The app fetches the list of published releases from GitHub and shows them newest-first, with your currently installed version marked.
- Click an older release to open a confirmation step.
- Confirm — the app downloads the selected version and shows a native “Restart now?” prompt when ready. Click Restart and the older version launches.
Platform support
The rollback list only shows releases that have an installer for your current platform. Releases without a matching artifact are filtered out automatically.
Sessions and Shortcuts
Sessions let you organize conversations by topic. They sync between the CLI (gaia chat) and the Agent UI — start in one, pick up in the other. Export any session as Markdown or JSON from the session menu.
Memory
The agent can remember facts, preferences, and decisions across sessions. Memory is opt-in (beta) and disabled by default — see the Agent Memory guide to enable it and learn what the Brain icon’s dashboard exposes.Scheduled Tasks
Run a prompt on a recurring schedule — “every morning at 9, summarize my inbox” — without leaving the UI. Click the Clock icon in the sidebar to open the Schedule Manager. Describe the schedule in natural language; the parser previews the interpretation live before you create it:
Each schedule runs in its own chat session, so the full history of runs (prompt + response per run) is one click away via the session list. Pause, resume, or delete schedules from the panel; run counts and the next-run countdown update live.
Behavior notes:
- Scheduled runs execute through the local LLM — nothing leaves your machine.
- Runs are suspended while mobile access (tunnel) is active, matching the autonomous agent loop’s security posture. Set
GAIA_AUTONOMOUS_ALLOW_TUNNEL=1to override. - One run executes at a time; overlapping schedules queue.
- Per-run timeout defaults to 300 s; override with
GAIA_SCHEDULE_TIMEOUT.
/api/schedules (create/list/get), /api/schedules/{name} (pause/resume/cancel via PUT, delete via DELETE), /api/schedules/{name}/results (run history), and /api/schedules/parse (natural-language preview).
Policy Alerts and Receipts
When a governance-enabled agent blocks a tool call, the Agent UI shows a non-actionable policy alert instead of an approval prompt. Policy blocks appear as inline Policy Shield activity cards, critical notifications, and a toast with a View receipt link when a receipt ID is available. Policy alerts are durable session history. If you reload the UI or reconnect after a blocked request with no assistant text, the block reason, rule IDs, policy version, and receipt ID remain attached to the assistant message.Extend with MCP
The agent supports the Model Context Protocol in both directions — connect external tools to expand what the agent can do, or expose the Agent UI itself so other AI tools can drive it.Add Tools to the Agent
Connect GitHub, Slack, databases, and more via MCP servers
Expose Agent UI to Other Tools
Let Claude Code, Cursor, or any MCP client control GAIA agents
Troubleshooting
Lemonade Server not running
Lemonade Server not running
gaia init --profile minimal or follow the Setup Guide.No model loaded
No model loaded
Port 4200 already in use
Port 4200 already in use
Database locked error
Database locked error
Close any other GAIA Agent UI or CLI instances. Only one writer at a time is supported.
Document indexing fails
Document indexing fails
- Ensure the file is a supported format and not password-protected
- Keep file size under 100MB
- For PDF image extraction, download the VLM model:
gaia download --agent chat
First-run network egress to huggingface.co
First-run network egress to huggingface.co
The first time you index a document, Lemonade Server pulls the embedding
model (
user.embeddinggemma-300m-GGUF, ~334 MB) from huggingface.co,
cached under ~/.cache/huggingface/hub/. Subsequent runs are offline.
(Agent memory adds a small cross-encoder reranker,
cross-encoder/ms-marco-MiniLM-L-6-v2 (~22 MB), fetched via
sentence-transformers on first hybrid search.)If your environment blocks huggingface.co, pre-seed the cache on a
machine with internet access and copy it to the target machine, or set
HF_HOME to point at a pre-populated cache directory before launching
the UI.Frontend shows JSON instead of the UI
Frontend shows JSON instead of the UI
The Agent UI frontend has not been built.npm install (Then restart
gaia-ui): This is handled automatically — gaia-ui tells the Python server where to find the pre-built frontend. If you still see this error, try reinstalling: npm install -g @amd-gaia/agent-ui@latest Then restart with gaia-ui.Source/dev installs (git clone): Run gaia init to build it automatically, or manually (from the repo root):gaia chat --ui.pip/PyPI installs (without gaia-ui): Use the npm install path — the pip package does not include frontend source files.LLM response times out or fails
LLM response times out or fails
If you see “I wasn’t able to generate a response” errors, check your MCP server configuration. Misconfigured or unreachable MCP servers cause the agent to wait up to 10 seconds per server before responding.Check your config:If it contains servers you don’t recognize or aren’t running, either remove them or reset the file:You can also manage MCP servers through the Agent UI settings panel or with the CLI:
Architecture
For the REST API reference and backend classes, see the Agent UI SDK Reference.Next Steps
Agent UI SDK Reference
REST endpoints, database schema, and Python backend API
Document Q&A Agent
CLI-based document agent with RAG, debug mode, and chunking strategies
Build Your First Agent
Create a custom agent with tools in minutes
MCP Server
Connect Claude Code, Cursor, or any MCP client to the Agent UI
Hardware: Tested on AMD Ryzen AI MAX+ 395 with Qwen3.5-35B-A3B-GGUF via Lemonade Server. Other configurations may work — report issues here.