Build local AI agents in Python and C++ for AMD hardware.
Build AI Agents That Run Locally
GAIA is an open-source framework for building AI agents in Python and C++ that run on local hardware. Agents reason, call tools, search documents, and take action — the core runtime needs no cloud, so sensitive data stays on-device. Individual agents can still opt into external services (weather APIs, Jira, MCP servers) when a use case requires them.
Python
C++
from gaia.agents.base.agent import Agent
agent = Agent()
response = agent.process_query("Summarize my meeting notes")
#include <gaia/agent.h>
gaia::Agent agent;
auto result = agent.processQuery("Summarize my meeting notes");
Get Started
Capabilities
Python
C++