https://github.com/amd/gaia
Run LLM Agents on Ryzen AI PCs in Minutes
https://github.com/amd/gaia
ai amd genai ryzenai
Last synced: 2 months ago
JSON representation
Run LLM Agents on Ryzen AI PCs in Minutes
- Host: GitHub
- URL: https://github.com/amd/gaia
- Owner: amd
- License: mit
- Created: 2024-12-16T01:25:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-20T00:15:08.000Z (about 1 year ago)
- Last Synced: 2025-03-20T01:19:53.285Z (about 1 year ago)
- Topics: ai, amd, genai, ryzenai
- Language: Python
- Homepage: https://github.com/amd/gaia
- Size: 12.8 MB
- Stars: 11
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-gaia - AMD GAIA Repository - Official GitHub repository for GAIA. (Official Resources)
README
#
GAIA: AI Agent Framework for AMD Ryzen AI
[](https://github.com/amd/gaia/tree/main/tests "Check out our cli tests")
[](https://github.com/amd/gaia/releases/latest "Download the latest release")
[](https://pypi.org/project/amd-gaia/)
[](https://github.com/amd/gaia/releases)
[](https://amd-gaia.ai/docs/quickstart "Windows installation")
[](https://amd-gaia.ai/docs/quickstart "Linux installation")
[](https://www.python.org/)
[](https://opensource.org/licenses/MIT)
[](https://discord.com/channels/1392562559122407535/1402013282495102997)
**GAIA** is AMD's open-source framework for building intelligent AI agents that run **100% locally** on AMD Ryzen AI hardware. Keep your data private, eliminate cloud costs, and deploy in air-gapped environments—all with hardware-accelerated performance.
---
## Download
[](https://github.com/amd/gaia/releases/latest)
[](https://github.com/amd/gaia/releases/latest)
[](https://github.com/amd/gaia/releases/latest)
See the [installation guide](https://github.com/amd/gaia/blob/main/docs/guides/install.mdx) for setup instructions.
---
## Why GAIA?
| Feature | Description |
|---------|-------------|
| **100% Local** | All data stays on your machine—perfect for sensitive workloads and air-gapped deployments |
| **Zero Cloud Costs** | No API fees, no usage limits, no subscriptions—unlimited AI at no extra cost |
| **Privacy-First** | HIPAA-compliant, GDPR-friendly—ideal for healthcare, finance, and enterprise |
| **Ryzen AI Optimized** | Hardware-accelerated inference using NPU + iGPU on AMD Ryzen AI processors |
---
## Build Your First Agent
```python
from gaia.agents.base.agent import Agent
from gaia.agents.base.tools import tool
class MyAgent(Agent):
"""A simple agent with custom tools."""
def _get_system_prompt(self) -> str:
return "You are a helpful assistant."
def _register_tools(self):
@tool
def get_weather(city: str) -> dict:
"""Get weather for a city."""
return {"city": city, "temperature": 72, "conditions": "Sunny"}
agent = MyAgent()
result = agent.process_query("What's the weather in Austin?")
print(result)
```
**[See the full quickstart guide →](https://amd-gaia.ai/docs/quickstart)**
---
## Key Capabilities
- **Agent Framework** — Base class with tool orchestration, state management, and error recovery
- **RAG System** — Document indexing and semantic search for Q&A
- **Voice Integration** — Whisper ASR + Kokoro TTS for speech interaction
- **Vision Models** — Extract text from images with Qwen3-VL-4B
- **Plugin System** — Distribute agents via PyPI with auto-discovery
- **Web UI Packaging** — Generate modern interfaces for your agents
---
## C++ Framework
A C++17 port of the GAIA base agent framework is available under [`cpp/`](cpp/README.md). It implements the same agent loop, tool registry, and MCP client interface without any Python dependency — suitable for embedding in native applications or resource-constrained environments.
```cpp
#include
class MyAgent : public gaia::Agent {
protected:
std::string getSystemPrompt() const override {
return "You are a helpful assistant.";
}
};
```
**[C++ build and usage instructions →](cpp/README.md)**
---
## Quick Install
```bash
pip install amd-gaia
```
For complete setup instructions including Lemonade Server, see the **[Quickstart Guide](https://amd-gaia.ai/docs/quickstart)**.
---
## System Requirements
| Requirement | Minimum | Recommended |
|-------------|---------|-------------|
| **Processor** | AMD Ryzen AI 300-series | AMD Ryzen AI Max+ 395 |
| **OS** | Windows 11, Linux | - |
| **RAM** | 16GB | 64GB |
---
## Documentation
- **[Quickstart](https://amd-gaia.ai/docs/quickstart)** — Build your first agent in 10 minutes
- **[SDK Reference](https://amd-gaia.ai/docs/sdk)** — Complete API documentation
- **[Guides](https://amd-gaia.ai/docs/guides)** — Chat, Voice, RAG, and more
- **[FAQ](https://amd-gaia.ai/docs/reference/faq)** — Frequently asked questions
---
## Releases
See the full [Release Notes](https://amd-gaia.ai/docs/releases) on the documentation site, or browse [GitHub Releases](https://github.com/amd/gaia/releases).
### Release Process
To publish a new release (e.g. `v0.17.0`), create a release PR that updates these 3 files:
| # | File | What to change |
|---|------|----------------|
| 1 | `src/gaia/version.py` | Set `__version__ = "0.17.0"` |
| 2 | `docs/releases/v0.17.0.mdx` | Create release notes (see [format guide](https://amd-gaia.ai/docs/releases)) |
| 3 | `docs/docs.json` | **(a)** Add `"releases/v0.17.0"` to the Releases tab pages array, **(b)** update the navbar label to `"v0.17.0 · Lemonade X.Y.Z"` |
Then merge and tag:
```bash
git tag v0.17.0 && git push origin v0.17.0
```
CI validates all three files are consistent with the tag before publishing to [GitHub Releases](https://github.com/amd/gaia/releases) and [PyPI](https://pypi.org/project/amd-gaia/).
---
## Contributing
We welcome contributions! See our [Contributing Guide](CONTRIBUTING.md) for details.
- **Build agents** in your own repository using GAIA as a dependency
- **Improve the framework** — check [GitHub Issues](https://github.com/amd/gaia/issues) for open tasks
- **Add documentation** — examples, tutorials, and guides
---
## Contact
- **Email**: [gaia@amd.com](mailto:gaia@amd.com)
- **Discord**: [Join our community](https://discord.com/channels/1392562559122407535/1402013282495102997)
- **Issues**: [GitHub Issues](https://github.com/amd/gaia/issues)
---
## License
[MIT License](./LICENSE.md)
Copyright(C) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: MIT