Thanks to visit codestin.com
Credit goes to amd-gaia.ai

Skip to main content
Local AI · AI PCs · AMD Ryzen AI

GAIA — The Agent Factory.

Build, run, and distribute AI agents that run locally on AI PCs — private by default, no API keys required. Write one in minutes; publish to the Agent Hub and anyone can install it in one click.

Fastest start: download, browse the hub, run an agent — then build your own or embed one in your app. Free · Windows, macOS, Linux · or install via CLI →

Local on AI PCs· Private· Open source (MIT)· Free
Three ways to use GAIA

Run it, integrate it, or build it.

Pick your level — from a one-click desktop app to building and publishing your own agent. All local, all private.

01
No code

Run agents

Install the Agent UI desktop app, pick an agent from the Hub, and go — a local AI that sees your files and never calls the cloud.

npm install -g @amd-gaia/agent-ui
02
Integrate

Embed agents in your app

Drop a published agent into your own product — a local REST sidecar, an MCP server, or the OpenAI-compatible API. No Python for your users.

npm i @amd-gaia/agent-email
03
Build

Build & publish your own

Write an agent with the SDK in a few dozen lines of Python, then publish it to the Hub via a PR so anyone can install it.

gaia agent init my-agent
Run agents now
Browse the hub →
Integrate

Drop GAIA into your own app.

Integrate whole agents — or individual components — into your third-party app. No Python required for your users; GAIA supplies the building blocks, you ship the experience.

· Agents as a local REST sidecar · MCP server (tools for any client) · OpenAI-compatible API · SDK: RAG, VLM, tools, memory
// embed the email agent as a local sidecar
import { fetchBinary, startSidecar } from "@amd-gaia/agent-email";

const { binaryPath } = await fetchBinary({ outDir: "resources" });
const sidecar = await startSidecar({ binaryPath, port: 8131 });
Agent Hub
Beta

There's an agent for that.

Each one is purpose-built for a single job and bulletproof — tested, versioned, and immutable once published.

All agents →
For developers

Prefer the terminal? Start here.

Install the framework and CLI, then build and publish your own agent.

npm
npm install -g @amd-gaia/agent-ui

The desktop app, driven from the CLI.

pip
uv pip install amd-gaia

The Python SDK + CLI framework.

script
curl -fsSL https://amd-gaia.ai/install.sh | sh

One-line install (Windows: irm …install.ps1 | iex).