← Back to Index

(AMD) Build AI Agents That Run Locally

Source: Hacker News: Front Page
Published: April 13, 2026 at 12:28 PM

Build AI Agents That Run Locally

GAIA is an open-source framework for building AI agents in Python and C++ that run entirely on local hardware. Agents reason, call tools, search documents, and take action — with no cloud dependency and no data leaving the device.

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

Resources