amd-gaia 0.14.3__py3-none-any.whl → 0.15.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. {amd_gaia-0.14.3.dist-info → amd_gaia-0.15.1.dist-info}/METADATA +223 -223
  2. amd_gaia-0.15.1.dist-info/RECORD +178 -0
  3. {amd_gaia-0.14.3.dist-info → amd_gaia-0.15.1.dist-info}/entry_points.txt +1 -0
  4. {amd_gaia-0.14.3.dist-info → amd_gaia-0.15.1.dist-info}/licenses/LICENSE.md +20 -20
  5. gaia/__init__.py +29 -29
  6. gaia/agents/__init__.py +19 -19
  7. gaia/agents/base/__init__.py +9 -9
  8. gaia/agents/base/agent.py +2177 -2177
  9. gaia/agents/base/api_agent.py +120 -120
  10. gaia/agents/base/console.py +1841 -1841
  11. gaia/agents/base/errors.py +237 -237
  12. gaia/agents/base/mcp_agent.py +86 -86
  13. gaia/agents/base/tools.py +83 -83
  14. gaia/agents/blender/agent.py +556 -556
  15. gaia/agents/blender/agent_simple.py +133 -135
  16. gaia/agents/blender/app.py +211 -211
  17. gaia/agents/blender/app_simple.py +41 -41
  18. gaia/agents/blender/core/__init__.py +16 -16
  19. gaia/agents/blender/core/materials.py +506 -506
  20. gaia/agents/blender/core/objects.py +316 -316
  21. gaia/agents/blender/core/rendering.py +225 -225
  22. gaia/agents/blender/core/scene.py +220 -220
  23. gaia/agents/blender/core/view.py +146 -146
  24. gaia/agents/chat/__init__.py +9 -9
  25. gaia/agents/chat/agent.py +835 -835
  26. gaia/agents/chat/app.py +1058 -1058
  27. gaia/agents/chat/session.py +508 -508
  28. gaia/agents/chat/tools/__init__.py +15 -15
  29. gaia/agents/chat/tools/file_tools.py +96 -96
  30. gaia/agents/chat/tools/rag_tools.py +1729 -1729
  31. gaia/agents/chat/tools/shell_tools.py +436 -436
  32. gaia/agents/code/__init__.py +7 -7
  33. gaia/agents/code/agent.py +549 -549
  34. gaia/agents/code/cli.py +377 -0
  35. gaia/agents/code/models.py +135 -135
  36. gaia/agents/code/orchestration/__init__.py +24 -24
  37. gaia/agents/code/orchestration/checklist_executor.py +1763 -1763
  38. gaia/agents/code/orchestration/checklist_generator.py +713 -713
  39. gaia/agents/code/orchestration/factories/__init__.py +9 -9
  40. gaia/agents/code/orchestration/factories/base.py +63 -63
  41. gaia/agents/code/orchestration/factories/nextjs_factory.py +118 -118
  42. gaia/agents/code/orchestration/factories/python_factory.py +106 -106
  43. gaia/agents/code/orchestration/orchestrator.py +841 -841
  44. gaia/agents/code/orchestration/project_analyzer.py +391 -391
  45. gaia/agents/code/orchestration/steps/__init__.py +67 -67
  46. gaia/agents/code/orchestration/steps/base.py +188 -188
  47. gaia/agents/code/orchestration/steps/error_handler.py +314 -314
  48. gaia/agents/code/orchestration/steps/nextjs.py +828 -828
  49. gaia/agents/code/orchestration/steps/python.py +307 -307
  50. gaia/agents/code/orchestration/template_catalog.py +469 -469
  51. gaia/agents/code/orchestration/workflows/__init__.py +14 -14
  52. gaia/agents/code/orchestration/workflows/base.py +80 -80
  53. gaia/agents/code/orchestration/workflows/nextjs.py +186 -186
  54. gaia/agents/code/orchestration/workflows/python.py +94 -94
  55. gaia/agents/code/prompts/__init__.py +11 -11
  56. gaia/agents/code/prompts/base_prompt.py +77 -77
  57. gaia/agents/code/prompts/code_patterns.py +2036 -2036
  58. gaia/agents/code/prompts/nextjs_prompt.py +40 -40
  59. gaia/agents/code/prompts/python_prompt.py +109 -109
  60. gaia/agents/code/schema_inference.py +365 -365
  61. gaia/agents/code/system_prompt.py +41 -41
  62. gaia/agents/code/tools/__init__.py +42 -42
  63. gaia/agents/code/tools/cli_tools.py +1138 -1138
  64. gaia/agents/code/tools/code_formatting.py +319 -319
  65. gaia/agents/code/tools/code_tools.py +769 -769
  66. gaia/agents/code/tools/error_fixing.py +1347 -1347
  67. gaia/agents/code/tools/external_tools.py +180 -180
  68. gaia/agents/code/tools/file_io.py +845 -845
  69. gaia/agents/code/tools/prisma_tools.py +190 -190
  70. gaia/agents/code/tools/project_management.py +1016 -1016
  71. gaia/agents/code/tools/testing.py +321 -321
  72. gaia/agents/code/tools/typescript_tools.py +122 -122
  73. gaia/agents/code/tools/validation_parsing.py +461 -461
  74. gaia/agents/code/tools/validation_tools.py +806 -806
  75. gaia/agents/code/tools/web_dev_tools.py +1758 -1758
  76. gaia/agents/code/validators/__init__.py +16 -16
  77. gaia/agents/code/validators/antipattern_checker.py +241 -241
  78. gaia/agents/code/validators/ast_analyzer.py +197 -197
  79. gaia/agents/code/validators/requirements_validator.py +145 -145
  80. gaia/agents/code/validators/syntax_validator.py +171 -171
  81. gaia/agents/docker/__init__.py +7 -7
  82. gaia/agents/docker/agent.py +642 -642
  83. gaia/agents/emr/__init__.py +8 -8
  84. gaia/agents/emr/agent.py +1506 -1506
  85. gaia/agents/emr/cli.py +1322 -1322
  86. gaia/agents/emr/constants.py +475 -475
  87. gaia/agents/emr/dashboard/__init__.py +4 -4
  88. gaia/agents/emr/dashboard/server.py +1974 -1974
  89. gaia/agents/jira/__init__.py +11 -11
  90. gaia/agents/jira/agent.py +894 -894
  91. gaia/agents/jira/jql_templates.py +299 -299
  92. gaia/agents/routing/__init__.py +7 -7
  93. gaia/agents/routing/agent.py +567 -570
  94. gaia/agents/routing/system_prompt.py +75 -75
  95. gaia/agents/summarize/__init__.py +11 -0
  96. gaia/agents/summarize/agent.py +885 -0
  97. gaia/agents/summarize/prompts.py +129 -0
  98. gaia/api/__init__.py +23 -23
  99. gaia/api/agent_registry.py +238 -238
  100. gaia/api/app.py +305 -305
  101. gaia/api/openai_server.py +575 -575
  102. gaia/api/schemas.py +186 -186
  103. gaia/api/sse_handler.py +373 -373
  104. gaia/apps/__init__.py +4 -4
  105. gaia/apps/llm/__init__.py +6 -6
  106. gaia/apps/llm/app.py +173 -169
  107. gaia/apps/summarize/app.py +116 -633
  108. gaia/apps/summarize/html_viewer.py +133 -133
  109. gaia/apps/summarize/pdf_formatter.py +284 -284
  110. gaia/audio/__init__.py +2 -2
  111. gaia/audio/audio_client.py +439 -439
  112. gaia/audio/audio_recorder.py +269 -269
  113. gaia/audio/kokoro_tts.py +599 -599
  114. gaia/audio/whisper_asr.py +432 -432
  115. gaia/chat/__init__.py +16 -16
  116. gaia/chat/app.py +430 -430
  117. gaia/chat/prompts.py +522 -522
  118. gaia/chat/sdk.py +1228 -1225
  119. gaia/cli.py +5481 -5621
  120. gaia/database/__init__.py +10 -10
  121. gaia/database/agent.py +176 -176
  122. gaia/database/mixin.py +290 -290
  123. gaia/database/testing.py +64 -64
  124. gaia/eval/batch_experiment.py +2332 -2332
  125. gaia/eval/claude.py +542 -542
  126. gaia/eval/config.py +37 -37
  127. gaia/eval/email_generator.py +512 -512
  128. gaia/eval/eval.py +3179 -3179
  129. gaia/eval/groundtruth.py +1130 -1130
  130. gaia/eval/transcript_generator.py +582 -582
  131. gaia/eval/webapp/README.md +167 -167
  132. gaia/eval/webapp/package-lock.json +875 -875
  133. gaia/eval/webapp/package.json +20 -20
  134. gaia/eval/webapp/public/app.js +3402 -3402
  135. gaia/eval/webapp/public/index.html +87 -87
  136. gaia/eval/webapp/public/styles.css +3661 -3661
  137. gaia/eval/webapp/server.js +415 -415
  138. gaia/eval/webapp/test-setup.js +72 -72
  139. gaia/llm/__init__.py +9 -2
  140. gaia/llm/base_client.py +60 -0
  141. gaia/llm/exceptions.py +12 -0
  142. gaia/llm/factory.py +70 -0
  143. gaia/llm/lemonade_client.py +3236 -3221
  144. gaia/llm/lemonade_manager.py +294 -294
  145. gaia/llm/providers/__init__.py +9 -0
  146. gaia/llm/providers/claude.py +108 -0
  147. gaia/llm/providers/lemonade.py +120 -0
  148. gaia/llm/providers/openai_provider.py +79 -0
  149. gaia/llm/vlm_client.py +382 -382
  150. gaia/logger.py +189 -189
  151. gaia/mcp/agent_mcp_server.py +245 -245
  152. gaia/mcp/blender_mcp_client.py +138 -138
  153. gaia/mcp/blender_mcp_server.py +648 -648
  154. gaia/mcp/context7_cache.py +332 -332
  155. gaia/mcp/external_services.py +518 -518
  156. gaia/mcp/mcp_bridge.py +811 -550
  157. gaia/mcp/servers/__init__.py +6 -6
  158. gaia/mcp/servers/docker_mcp.py +83 -83
  159. gaia/perf_analysis.py +361 -0
  160. gaia/rag/__init__.py +10 -10
  161. gaia/rag/app.py +293 -293
  162. gaia/rag/demo.py +304 -304
  163. gaia/rag/pdf_utils.py +235 -235
  164. gaia/rag/sdk.py +2194 -2194
  165. gaia/security.py +163 -163
  166. gaia/talk/app.py +289 -289
  167. gaia/talk/sdk.py +538 -538
  168. gaia/testing/__init__.py +87 -87
  169. gaia/testing/assertions.py +330 -330
  170. gaia/testing/fixtures.py +333 -333
  171. gaia/testing/mocks.py +493 -493
  172. gaia/util.py +46 -46
  173. gaia/utils/__init__.py +33 -33
  174. gaia/utils/file_watcher.py +675 -675
  175. gaia/utils/parsing.py +223 -223
  176. gaia/version.py +100 -100
  177. amd_gaia-0.14.3.dist-info/RECORD +0 -168
  178. gaia/agents/code/app.py +0 -266
  179. gaia/llm/llm_client.py +0 -729
  180. {amd_gaia-0.14.3.dist-info → amd_gaia-0.15.1.dist-info}/WHEEL +0 -0
  181. {amd_gaia-0.14.3.dist-info → amd_gaia-0.15.1.dist-info}/top_level.txt +0 -0
@@ -1,223 +1,223 @@
1
- Metadata-Version: 2.4
2
- Name: amd-gaia
3
- Version: 0.14.3
4
- Summary: GAIA is a lightweight agent framework designed for the edge and AI PCs.
5
- Home-page: https://github.com/amd/gaia
6
- Author: AMD
7
- License: MIT
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Operating System :: OS Independent
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.10
14
- Classifier: Programming Language :: Python :: 3.11
15
- Classifier: Programming Language :: Python :: 3.12
16
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
- Requires-Python: >=3.10
18
- Description-Content-Type: text/markdown
19
- License-File: LICENSE.md
20
- Requires-Dist: openai
21
- Requires-Dist: pydantic>=2.9.2
22
- Requires-Dist: transformers
23
- Requires-Dist: accelerate
24
- Requires-Dist: python-dotenv
25
- Requires-Dist: aiohttp
26
- Requires-Dist: rich
27
- Requires-Dist: watchdog>=2.1.0
28
- Requires-Dist: pillow>=9.0.0
29
- Provides-Extra: api
30
- Requires-Dist: fastapi>=0.115.0; extra == "api"
31
- Requires-Dist: uvicorn>=0.32.0; extra == "api"
32
- Requires-Dist: python-multipart>=0.0.9; extra == "api"
33
- Provides-Extra: audio
34
- Requires-Dist: torch<2.4,>=2.0.0; extra == "audio"
35
- Requires-Dist: torchvision<0.19.0; extra == "audio"
36
- Requires-Dist: torchaudio; extra == "audio"
37
- Provides-Extra: blender
38
- Requires-Dist: bpy; extra == "blender"
39
- Provides-Extra: mcp
40
- Requires-Dist: mcp>=1.1.0; extra == "mcp"
41
- Requires-Dist: starlette; extra == "mcp"
42
- Requires-Dist: uvicorn; extra == "mcp"
43
- Provides-Extra: dev
44
- Requires-Dist: pytest; extra == "dev"
45
- Requires-Dist: pytest-benchmark; extra == "dev"
46
- Requires-Dist: pytest-mock; extra == "dev"
47
- Requires-Dist: pytest-asyncio; extra == "dev"
48
- Requires-Dist: memory_profiler; extra == "dev"
49
- Requires-Dist: matplotlib; extra == "dev"
50
- Requires-Dist: adjustText; extra == "dev"
51
- Requires-Dist: plotly; extra == "dev"
52
- Requires-Dist: black; extra == "dev"
53
- Requires-Dist: pylint; extra == "dev"
54
- Requires-Dist: isort; extra == "dev"
55
- Requires-Dist: flake8; extra == "dev"
56
- Requires-Dist: autoflake; extra == "dev"
57
- Requires-Dist: mypy; extra == "dev"
58
- Requires-Dist: bandit; extra == "dev"
59
- Requires-Dist: responses; extra == "dev"
60
- Requires-Dist: requests; extra == "dev"
61
- Provides-Extra: eval
62
- Requires-Dist: anthropic; extra == "eval"
63
- Requires-Dist: bs4; extra == "eval"
64
- Requires-Dist: scikit-learn>=1.5.0; extra == "eval"
65
- Requires-Dist: numpy<2.3.0,>=2.0; extra == "eval"
66
- Requires-Dist: pypdf; extra == "eval"
67
- Provides-Extra: talk
68
- Requires-Dist: pyaudio; extra == "talk"
69
- Requires-Dist: openai-whisper; extra == "talk"
70
- Requires-Dist: numpy==1.26.4; extra == "talk"
71
- Requires-Dist: kokoro>=0.3.1; extra == "talk"
72
- Requires-Dist: soundfile; extra == "talk"
73
- Requires-Dist: sounddevice; extra == "talk"
74
- Provides-Extra: youtube
75
- Requires-Dist: llama-index-readers-youtube-transcript; extra == "youtube"
76
- Provides-Extra: rag
77
- Requires-Dist: pypdf; extra == "rag"
78
- Requires-Dist: pymupdf>=1.24.0; extra == "rag"
79
- Requires-Dist: sentence-transformers; extra == "rag"
80
- Requires-Dist: faiss-cpu>=1.7.0; extra == "rag"
81
- Provides-Extra: lint
82
- Requires-Dist: black; extra == "lint"
83
- Requires-Dist: pylint; extra == "lint"
84
- Requires-Dist: isort; extra == "lint"
85
- Requires-Dist: flake8; extra == "lint"
86
- Requires-Dist: autoflake; extra == "lint"
87
- Requires-Dist: mypy; extra == "lint"
88
- Requires-Dist: bandit; extra == "lint"
89
- Dynamic: author
90
- Dynamic: classifier
91
- Dynamic: description
92
- Dynamic: description-content-type
93
- Dynamic: home-page
94
- Dynamic: license
95
- Dynamic: license-file
96
- Dynamic: provides-extra
97
- Dynamic: requires-dist
98
- Dynamic: requires-python
99
- Dynamic: summary
100
-
101
- # <img src="https://raw.githubusercontent.com/amd/gaia/main/src/gaia/img/gaia.ico" alt="GAIA Logo" width="64" height="64" style="vertical-align: middle;"> GAIA: AI Agent Framework for AMD Ryzen AI
102
-
103
- [![GAIA Build Installer](https://github.com/amd/gaia/actions/workflows/build_installer.yml/badge.svg)](https://github.com/amd/gaia/tree/main/tests "Check out our build")
104
- [![GAIA CLI Tests](https://github.com/amd/gaia/actions/workflows/test_gaia_cli.yml/badge.svg)](https://github.com/amd/gaia/tree/main/tests "Check out our cli tests")
105
- [![Latest Release](https://img.shields.io/github/v/release/amd/gaia?include_prereleases)](https://github.com/amd/gaia/releases/latest "Download the latest release")
106
- [![PyPI](https://img.shields.io/pypi/v/amd-gaia)](https://pypi.org/project/amd-gaia/)
107
- [![GitHub downloads](https://img.shields.io/github/downloads/amd/gaia/total.svg)](https://github.com/amd/gaia/releases)
108
- [![OS - Windows](https://img.shields.io/badge/OS-Windows-blue)](https://amd-gaia.ai/quickstart "Windows installation")
109
- [![OS - Linux](https://img.shields.io/badge/OS-Linux-green)](https://amd-gaia.ai/quickstart "Linux installation")
110
- [![Python 3.10+](https://img.shields.io/badge/Python-3.10+-blue?logo=python&logoColor=white)](https://www.python.org/)
111
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
112
- [![Discord](https://img.shields.io/badge/Discord-Join%20Community-7289DA?logo=discord&logoColor=white)](https://discord.com/channels/1392562559122407535/1402013282495102997)
113
-
114
- **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.
115
-
116
- <p align="center">
117
- <a href="https://amd-gaia.ai/quickstart"><strong>Get Started →</strong></a>
118
- </p>
119
-
120
- ---
121
-
122
- ## Why GAIA?
123
-
124
- | Feature | Description |
125
- |---------|-------------|
126
- | **100% Local** | All data stays on your machine—perfect for sensitive workloads and air-gapped deployments |
127
- | **Zero Cloud Costs** | No API fees, no usage limits, no subscriptions—unlimited AI at no extra cost |
128
- | **Privacy-First** | HIPAA-compliant, GDPR-friendly—ideal for healthcare, finance, and enterprise |
129
- | **Ryzen AI Optimized** | Hardware-accelerated inference using NPU + iGPU on AMD Ryzen AI processors |
130
-
131
- ---
132
-
133
- ## Build Your First Agent
134
-
135
- ```python
136
- from gaia.agents.base.agent import Agent
137
- from gaia.agents.base.tools import tool
138
-
139
- class MyAgent(Agent):
140
- """A simple agent with custom tools."""
141
-
142
- def _get_system_prompt(self) -> str:
143
- return "You are a helpful assistant."
144
-
145
- def _register_tools(self):
146
- @tool
147
- def get_weather(city: str) -> dict:
148
- """Get weather for a city."""
149
- return {"city": city, "temperature": 72, "conditions": "Sunny"}
150
-
151
- agent = MyAgent()
152
- result = agent.process_query("What's the weather in Austin?")
153
- print(result)
154
- ```
155
-
156
- **[See the full quickstart guide →](https://amd-gaia.ai/quickstart)**
157
-
158
- ---
159
-
160
- ## Key Capabilities
161
-
162
- - **Agent Framework** — Base class with tool orchestration, state management, and error recovery
163
- - **RAG System** — Document indexing and semantic search for Q&A
164
- - **Voice Integration** — Whisper ASR + Kokoro TTS for speech interaction
165
- - **Vision Models** — Extract text from images with Qwen2.5-VL
166
- - **Plugin System** — Distribute agents via PyPI with auto-discovery
167
- - **Web UI Packaging** — Generate modern interfaces for your agents
168
-
169
- ---
170
-
171
- ## Quick Install
172
-
173
- ```bash
174
- pip install amd-gaia
175
- ```
176
-
177
- For complete setup instructions including Lemonade Server, see the **[Quickstart Guide](https://amd-gaia.ai/quickstart)**.
178
-
179
- ---
180
-
181
- ## System Requirements
182
-
183
- | Requirement | Minimum | Recommended |
184
- |-------------|---------|-------------|
185
- | **Processor** | AMD Ryzen AI 300-series | AMD Ryzen AI Max+ 395 |
186
- | **OS** | Windows 11, Linux | - |
187
- | **RAM** | 16GB | 64GB |
188
-
189
- ---
190
-
191
- ## Documentation
192
-
193
- - **[Quickstart](https://amd-gaia.ai/quickstart)** — Build your first agent in 10 minutes
194
- - **[SDK Reference](https://amd-gaia.ai/sdk)** — Complete API documentation
195
- - **[Guides](https://amd-gaia.ai/guides/chat)** — Chat, Voice, RAG, and more
196
- - **[FAQ](https://amd-gaia.ai/reference/faq)** — Frequently asked questions
197
-
198
- ---
199
-
200
- ## Contributing
201
-
202
- We welcome contributions! See our [Contributing Guide](CONTRIBUTING.md) for details.
203
-
204
- - **Build agents** in your own repository using GAIA as a dependency
205
- - **Improve the framework** — check [GitHub Issues](https://github.com/amd/gaia/issues) for open tasks
206
- - **Add documentation** — examples, tutorials, and guides
207
-
208
- ---
209
-
210
- ## Contact
211
-
212
- - **Email**: [gaia@amd.com](mailto:gaia@amd.com)
213
- - **Discord**: [Join our community](https://discord.com/channels/1392562559122407535/1402013282495102997)
214
- - **Issues**: [GitHub Issues](https://github.com/amd/gaia/issues)
215
-
216
- ---
217
-
218
- ## License
219
-
220
- [MIT License](./LICENSE.md)
221
-
222
- Copyright(C) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
223
- SPDX-License-Identifier: MIT
1
+ Metadata-Version: 2.4
2
+ Name: amd-gaia
3
+ Version: 0.15.1
4
+ Summary: GAIA is a lightweight agent framework designed for the edge and AI PCs.
5
+ Home-page: https://github.com/amd/gaia
6
+ Author: AMD
7
+ License: MIT
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE.md
20
+ Requires-Dist: openai
21
+ Requires-Dist: pydantic>=2.9.2
22
+ Requires-Dist: transformers
23
+ Requires-Dist: accelerate
24
+ Requires-Dist: python-dotenv
25
+ Requires-Dist: aiohttp
26
+ Requires-Dist: rich
27
+ Requires-Dist: watchdog>=2.1.0
28
+ Requires-Dist: pillow>=9.0.0
29
+ Provides-Extra: api
30
+ Requires-Dist: fastapi>=0.115.0; extra == "api"
31
+ Requires-Dist: uvicorn>=0.32.0; extra == "api"
32
+ Requires-Dist: python-multipart>=0.0.9; extra == "api"
33
+ Provides-Extra: audio
34
+ Requires-Dist: torch<2.4,>=2.0.0; extra == "audio"
35
+ Requires-Dist: torchvision<0.19.0; extra == "audio"
36
+ Requires-Dist: torchaudio; extra == "audio"
37
+ Provides-Extra: blender
38
+ Requires-Dist: bpy; extra == "blender"
39
+ Provides-Extra: mcp
40
+ Requires-Dist: mcp>=1.1.0; extra == "mcp"
41
+ Requires-Dist: starlette; extra == "mcp"
42
+ Requires-Dist: uvicorn; extra == "mcp"
43
+ Provides-Extra: dev
44
+ Requires-Dist: pytest; extra == "dev"
45
+ Requires-Dist: pytest-benchmark; extra == "dev"
46
+ Requires-Dist: pytest-mock; extra == "dev"
47
+ Requires-Dist: pytest-asyncio; extra == "dev"
48
+ Requires-Dist: memory_profiler; extra == "dev"
49
+ Requires-Dist: matplotlib; extra == "dev"
50
+ Requires-Dist: adjustText; extra == "dev"
51
+ Requires-Dist: plotly; extra == "dev"
52
+ Requires-Dist: black; extra == "dev"
53
+ Requires-Dist: pylint; extra == "dev"
54
+ Requires-Dist: isort; extra == "dev"
55
+ Requires-Dist: flake8; extra == "dev"
56
+ Requires-Dist: autoflake; extra == "dev"
57
+ Requires-Dist: mypy; extra == "dev"
58
+ Requires-Dist: bandit; extra == "dev"
59
+ Requires-Dist: responses; extra == "dev"
60
+ Requires-Dist: requests; extra == "dev"
61
+ Provides-Extra: eval
62
+ Requires-Dist: anthropic; extra == "eval"
63
+ Requires-Dist: bs4; extra == "eval"
64
+ Requires-Dist: scikit-learn>=1.5.0; extra == "eval"
65
+ Requires-Dist: numpy<2.3.0,>=2.0; extra == "eval"
66
+ Requires-Dist: pypdf; extra == "eval"
67
+ Provides-Extra: talk
68
+ Requires-Dist: pyaudio; extra == "talk"
69
+ Requires-Dist: openai-whisper; extra == "talk"
70
+ Requires-Dist: numpy==1.26.4; extra == "talk"
71
+ Requires-Dist: kokoro>=0.3.1; extra == "talk"
72
+ Requires-Dist: soundfile; extra == "talk"
73
+ Requires-Dist: sounddevice; extra == "talk"
74
+ Provides-Extra: youtube
75
+ Requires-Dist: llama-index-readers-youtube-transcript; extra == "youtube"
76
+ Provides-Extra: rag
77
+ Requires-Dist: pypdf; extra == "rag"
78
+ Requires-Dist: pymupdf>=1.24.0; extra == "rag"
79
+ Requires-Dist: sentence-transformers; extra == "rag"
80
+ Requires-Dist: faiss-cpu>=1.7.0; extra == "rag"
81
+ Provides-Extra: lint
82
+ Requires-Dist: black; extra == "lint"
83
+ Requires-Dist: pylint; extra == "lint"
84
+ Requires-Dist: isort; extra == "lint"
85
+ Requires-Dist: flake8; extra == "lint"
86
+ Requires-Dist: autoflake; extra == "lint"
87
+ Requires-Dist: mypy; extra == "lint"
88
+ Requires-Dist: bandit; extra == "lint"
89
+ Dynamic: author
90
+ Dynamic: classifier
91
+ Dynamic: description
92
+ Dynamic: description-content-type
93
+ Dynamic: home-page
94
+ Dynamic: license
95
+ Dynamic: license-file
96
+ Dynamic: provides-extra
97
+ Dynamic: requires-dist
98
+ Dynamic: requires-python
99
+ Dynamic: summary
100
+
101
+ # <img src="https://raw.githubusercontent.com/amd/gaia/main/src/gaia/img/gaia.ico" alt="GAIA Logo" width="64" height="64" style="vertical-align: middle;"> GAIA: AI Agent Framework for AMD Ryzen AI
102
+
103
+ [![GAIA Build Installer](https://github.com/amd/gaia/actions/workflows/build_installer.yml/badge.svg)](https://github.com/amd/gaia/tree/main/tests "Check out our build")
104
+ [![GAIA CLI Tests](https://github.com/amd/gaia/actions/workflows/test_gaia_cli.yml/badge.svg)](https://github.com/amd/gaia/tree/main/tests "Check out our cli tests")
105
+ [![Latest Release](https://img.shields.io/github/v/release/amd/gaia?include_prereleases)](https://github.com/amd/gaia/releases/latest "Download the latest release")
106
+ [![PyPI](https://img.shields.io/pypi/v/amd-gaia)](https://pypi.org/project/amd-gaia/)
107
+ [![GitHub downloads](https://img.shields.io/github/downloads/amd/gaia/total.svg)](https://github.com/amd/gaia/releases)
108
+ [![OS - Windows](https://img.shields.io/badge/OS-Windows-blue)](https://amd-gaia.ai/quickstart "Windows installation")
109
+ [![OS - Linux](https://img.shields.io/badge/OS-Linux-green)](https://amd-gaia.ai/quickstart "Linux installation")
110
+ [![Python 3.10+](https://img.shields.io/badge/Python-3.10+-blue?logo=python&logoColor=white)](https://www.python.org/)
111
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
112
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Community-7289DA?logo=discord&logoColor=white)](https://discord.com/channels/1392562559122407535/1402013282495102997)
113
+
114
+ **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.
115
+
116
+ <p align="center">
117
+ <a href="https://amd-gaia.ai/quickstart"><strong>Get Started →</strong></a>
118
+ </p>
119
+
120
+ ---
121
+
122
+ ## Why GAIA?
123
+
124
+ | Feature | Description |
125
+ |---------|-------------|
126
+ | **100% Local** | All data stays on your machine—perfect for sensitive workloads and air-gapped deployments |
127
+ | **Zero Cloud Costs** | No API fees, no usage limits, no subscriptions—unlimited AI at no extra cost |
128
+ | **Privacy-First** | HIPAA-compliant, GDPR-friendly—ideal for healthcare, finance, and enterprise |
129
+ | **Ryzen AI Optimized** | Hardware-accelerated inference using NPU + iGPU on AMD Ryzen AI processors |
130
+
131
+ ---
132
+
133
+ ## Build Your First Agent
134
+
135
+ ```python
136
+ from gaia.agents.base.agent import Agent
137
+ from gaia.agents.base.tools import tool
138
+
139
+ class MyAgent(Agent):
140
+ """A simple agent with custom tools."""
141
+
142
+ def _get_system_prompt(self) -> str:
143
+ return "You are a helpful assistant."
144
+
145
+ def _register_tools(self):
146
+ @tool
147
+ def get_weather(city: str) -> dict:
148
+ """Get weather for a city."""
149
+ return {"city": city, "temperature": 72, "conditions": "Sunny"}
150
+
151
+ agent = MyAgent()
152
+ result = agent.process_query("What's the weather in Austin?")
153
+ print(result)
154
+ ```
155
+
156
+ **[See the full quickstart guide →](https://amd-gaia.ai/quickstart)**
157
+
158
+ ---
159
+
160
+ ## Key Capabilities
161
+
162
+ - **Agent Framework** — Base class with tool orchestration, state management, and error recovery
163
+ - **RAG System** — Document indexing and semantic search for Q&A
164
+ - **Voice Integration** — Whisper ASR + Kokoro TTS for speech interaction
165
+ - **Vision Models** — Extract text from images with Qwen2.5-VL
166
+ - **Plugin System** — Distribute agents via PyPI with auto-discovery
167
+ - **Web UI Packaging** — Generate modern interfaces for your agents
168
+
169
+ ---
170
+
171
+ ## Quick Install
172
+
173
+ ```bash
174
+ pip install amd-gaia
175
+ ```
176
+
177
+ For complete setup instructions including Lemonade Server, see the **[Quickstart Guide](https://amd-gaia.ai/quickstart)**.
178
+
179
+ ---
180
+
181
+ ## System Requirements
182
+
183
+ | Requirement | Minimum | Recommended |
184
+ |-------------|---------|-------------|
185
+ | **Processor** | AMD Ryzen AI 300-series | AMD Ryzen AI Max+ 395 |
186
+ | **OS** | Windows 11, Linux | - |
187
+ | **RAM** | 16GB | 64GB |
188
+
189
+ ---
190
+
191
+ ## Documentation
192
+
193
+ - **[Quickstart](https://amd-gaia.ai/quickstart)** — Build your first agent in 10 minutes
194
+ - **[SDK Reference](https://amd-gaia.ai/sdk)** — Complete API documentation
195
+ - **[Guides](https://amd-gaia.ai/guides/chat)** — Chat, Voice, RAG, and more
196
+ - **[FAQ](https://amd-gaia.ai/reference/faq)** — Frequently asked questions
197
+
198
+ ---
199
+
200
+ ## Contributing
201
+
202
+ We welcome contributions! See our [Contributing Guide](CONTRIBUTING.md) for details.
203
+
204
+ - **Build agents** in your own repository using GAIA as a dependency
205
+ - **Improve the framework** — check [GitHub Issues](https://github.com/amd/gaia/issues) for open tasks
206
+ - **Add documentation** — examples, tutorials, and guides
207
+
208
+ ---
209
+
210
+ ## Contact
211
+
212
+ - **Email**: [gaia@amd.com](mailto:gaia@amd.com)
213
+ - **Discord**: [Join our community](https://discord.com/channels/1392562559122407535/1402013282495102997)
214
+ - **Issues**: [GitHub Issues](https://github.com/amd/gaia/issues)
215
+
216
+ ---
217
+
218
+ ## License
219
+
220
+ [MIT License](./LICENSE.md)
221
+
222
+ Copyright(C) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
223
+ SPDX-License-Identifier: MIT
@@ -0,0 +1,178 @@
1
+ amd_gaia-0.15.1.dist-info/licenses/LICENSE.md,sha256=yIF_ozJFJ83xmRHBrFVeGoc12JVoCphi1cy07CsfroQ,1083
2
+ gaia/__init__.py,sha256=4SNDd1YBqgMNkH71EY3x81E_CSM4gc3Wl7GClCl1KTI,843
3
+ gaia/cli.py,sha256=vZqXsf2PoQEiKoHVLlVnjQEO4iU3nS-nJCkTQnHAzZ4,213698
4
+ gaia/logger.py,sha256=lrE9P2uL97TO35rfRyNMOdjo_BcNlvlym2N18B4sT7Y,6560
5
+ gaia/perf_analysis.py,sha256=RJjv8d52zkbZzPlv7lLLwtQS7qiQY7VX-g-W0skcdyU,11070
6
+ gaia/security.py,sha256=V3gLT_emdE4PeI4fUpFFkaRjkAiExYt5VQ-x_dgAdR0,5826
7
+ gaia/util.py,sha256=QYOjlm4dEJePwptjMJOkVGYXbw7wAee4o4P1KOUKicY,1569
8
+ gaia/version.py,sha256=4mV1qXwtJKSJfXl-1t1rOdtIxw0aN5cRyHfp5fC7P0M,2840
9
+ gaia/agents/__init__.py,sha256=-xX8KhEOt3OglQnHJh_fh2WlRibvnNptOsRMzpkUb-c,471
10
+ gaia/agents/base/__init__.py,sha256=rgZ1-KKULJpy337UWHaEyU-SPTmqbUHTjBuaiAI87I8,364
11
+ gaia/agents/base/agent.py,sha256=dBK-tl0hBEaeVPxOWMZu6_ZoYOruVmClS4qYPm-KdA8,96464
12
+ gaia/agents/base/api_agent.py,sha256=oZOv9C968PiJrpQr-ssbAa8Gox8Rv21QQ0iW98x4ghc,3907
13
+ gaia/agents/base/console.py,sha256=D0zC7T6FxXigA-SRHBCHTYt3y7gBHyghq-4dpExYQn0,65468
14
+ gaia/agents/base/errors.py,sha256=UQs9Zt-Rhl480d5h3qoAzC8UKZsdy-gQGzrDlE73DFA,7011
15
+ gaia/agents/base/mcp_agent.py,sha256=j53OIpwvn-bGOnq5UxlctLcX65mjaxKPziveWRiGalw,2352
16
+ gaia/agents/base/tools.py,sha256=pj9mus4a2TKR9b2rlKZttCPZ0TnwItuA-DXHtD-nn6Q,2614
17
+ gaia/agents/blender/agent.py,sha256=58JNWre9GrG9YsCSY3GORg7FA7dBnwvOa4fCiRnhIxE,20714
18
+ gaia/agents/blender/agent_simple.py,sha256=JJAagDUKBTKWRqPxUrpydL843FuSLFS_t4x4DJiq-YQ,4830
19
+ gaia/agents/blender/app.py,sha256=-CpauICzYVsXkTEnKcj03ZeLFHxbAcbpM7DJtZpKJYI,7229
20
+ gaia/agents/blender/app_simple.py,sha256=li-s86X7QwsLD8XtgRDCRRHYs4w118PRRjVI08n71mE,1252
21
+ gaia/agents/blender/core/__init__.py,sha256=NOd22GiSdpHcXNEfHEtBte9iOiyEwp9mZ531_C4ohQY,399
22
+ gaia/agents/blender/core/materials.py,sha256=-7_w3jePL1fvN3vxn3SLTx-9f_Kf5uy95KHJaijWk2Q,17132
23
+ gaia/agents/blender/core/objects.py,sha256=jDZu8ZaHJVTDLaS5yv5aSPlKqCuUvFa5Fg9zxmI_Zyk,10330
24
+ gaia/agents/blender/core/rendering.py,sha256=v8ai0vEA1eL1FnNpW1HKHKxlyv5Emns8FCyWzPih9To,7564
25
+ gaia/agents/blender/core/scene.py,sha256=bSf5hjblYoGZsjsABKXy25E0wP0S7dUMO98RsGE5IcY,6971
26
+ gaia/agents/blender/core/view.py,sha256=lWEjYMvJ7LabODLZSvroYNPLNoWylne5tp2BSd8LRss,4978
27
+ gaia/agents/chat/__init__.py,sha256=Ys_t9QdnLvPTJNgbxrj1PmAFE6ZHJCzmITbO_FFSI9Q,235
28
+ gaia/agents/chat/agent.py,sha256=IADyZ1dQpl5QEbq0cIa7Nf64_3IdkGFYK3w3dD4kMMU,33449
29
+ gaia/agents/chat/app.py,sha256=qE4IFV754nb6Lo_H9huJ14ZzSCRtaAkrWKthySf2hnw,47159
30
+ gaia/agents/chat/session.py,sha256=7-MwarXLXSQb4cBVSyPOoHrunpv1RUBPW6g9bpwfPDk,17856
31
+ gaia/agents/chat/tools/__init__.py,sha256=0xQ4S8dJzoOTHOiXJ27Az2lxpxbzM50VN6p4QMAve-I,451
32
+ gaia/agents/chat/tools/file_tools.py,sha256=GkSVfTq96xNgcQ5WgfWvjcfMpD94vBBjO-JMV_t0Rq0,3763
33
+ gaia/agents/chat/tools/rag_tools.py,sha256=ozCUlLVZRYsXb4uwNQifL16nSOhxijq46yEqF9I9yAU,78779
34
+ gaia/agents/chat/tools/shell_tools.py,sha256=mm4HYUy89cfVc3-7k6l1R8xdieOFdznuQyT6R23LCb8,18229
35
+ gaia/agents/code/__init__.py,sha256=0Ad5Cl4uJPqY8iaOc8zTbsWeaY0PQY652JMJj4lljS8,188
36
+ gaia/agents/code/agent.py,sha256=QzoS_Vc6qN7DwpI3SxpRHTzo_c7XuDKhN5spme2Bkpo,21994
37
+ gaia/agents/code/cli.py,sha256=gygaN4chkt14bNfoqDeCucWa5ykuoYggtITbY6Z4EZM,11535
38
+ gaia/agents/code/models.py,sha256=iDMATj6hb00jx6ETNkHh3dL4KIuv3yPrRdc6t1Vt5BU,3157
39
+ gaia/agents/code/schema_inference.py,sha256=2BKXL654waskugH1RM4Pc9WqPwDu4LxdE7SoxA76X4M,12522
40
+ gaia/agents/code/system_prompt.py,sha256=J2V9Rj5lFJe3l0GRiEyFanBaaLhscq1Smi75m47jQio,1484
41
+ gaia/agents/code/orchestration/__init__.py,sha256=vkWH_VOsWCBHw-y9RFcR4VtTvKNSmu266Cifu3anMpA,665
42
+ gaia/agents/code/orchestration/checklist_executor.py,sha256=cqfHBS3tm4hg5ZsoIzhGBpScABskzxtKIr_M5Ah1Brg,62679
43
+ gaia/agents/code/orchestration/checklist_generator.py,sha256=Fthj5MvxW_Vr7MLIi8apl3SSdMQIack2zeSXQbzot6g,28468
44
+ gaia/agents/code/orchestration/orchestrator.py,sha256=a-8-nd_DkIHKXpy74GTzRI9rQTz1euAzZpI_KR2MsCk,32491
45
+ gaia/agents/code/orchestration/project_analyzer.py,sha256=LqsGt39lLC5CHOLDXIZDY3GIOX_GFsyorL11qURgCY8,11866
46
+ gaia/agents/code/orchestration/template_catalog.py,sha256=OTNku6RIBzprfEMV4Xz8Y0BZEX5k96ErFOp_O5nl140,17870
47
+ gaia/agents/code/orchestration/factories/__init__.py,sha256=ItWI-P8BgLnr7U0bd2oY7qrITrtzNrDlYBK4yGrJBZ4,341
48
+ gaia/agents/code/orchestration/factories/base.py,sha256=M7R7jjelBL_gfzmPw70kTM4aYuatLbpU3sVBwD3mjCM,1853
49
+ gaia/agents/code/orchestration/factories/nextjs_factory.py,sha256=bB2p-NZ-ve4eNu4ILCa5fGVYHonhJn0DBPHnRk3Xuhw,3594
50
+ gaia/agents/code/orchestration/factories/python_factory.py,sha256=dJAozAssjqY4wUbTPb2NF2biO3xdRgGiD9T8sS_n_co,3051
51
+ gaia/agents/code/orchestration/steps/__init__.py,sha256=rIh3DEKoTijzBNk57bOpnoOA2K4XlTzw3YrXWplDGqo,1592
52
+ gaia/agents/code/orchestration/steps/base.py,sha256=vUYTn2UOw5Hl2hU3TnG8ETHM_Abeh12xxHirgLzVHwg,5803
53
+ gaia/agents/code/orchestration/steps/error_handler.py,sha256=4TsDf_JAtUSd6_mkh4BpjUBCVjycEC1XU56S6YaQj10,11657
54
+ gaia/agents/code/orchestration/steps/nextjs.py,sha256=1Hh5OnGBA0dmLbzNnvdeYW9NC_9QLeJUEJxtO7epc9k,30350
55
+ gaia/agents/code/orchestration/steps/python.py,sha256=Qc_CRvDEeu68mFWdP2nN4jE0n3jqSCTIgZjVW3Pl5iY,10439
56
+ gaia/agents/code/orchestration/workflows/__init__.py,sha256=ku8UwHKzVujHAJPddder_TciBhALWSsPYHNFEcWP_aw,409
57
+ gaia/agents/code/orchestration/workflows/base.py,sha256=ELWtTpEbn-j8T1jxN6pz0xF9tBDTBZyQcqANGCdAgKM,2433
58
+ gaia/agents/code/orchestration/workflows/nextjs.py,sha256=uh24eTkLQshaxck5y7txJvxD0iqJ9JstifTkTZaCfwY,6068
59
+ gaia/agents/code/orchestration/workflows/python.py,sha256=loEiXotb_oJKQXGjgVQybpv2AmD-p-QY-gT9dPIn8Hs,2457
60
+ gaia/agents/code/prompts/__init__.py,sha256=augJiIL5IEIEwdBFQ8olB6i88gRHq8p-K2_KBC1M-QQ,309
61
+ gaia/agents/code/prompts/base_prompt.py,sha256=V6VpCH61V4kWHeawJabmCQaGIBsa6zqWVWUrs-Y9eCg,2734
62
+ gaia/agents/code/prompts/code_patterns.py,sha256=MTza2RZDFs_5zoEXb8mz8sCwR_y7HqqVbIOm84XPlQY,67530
63
+ gaia/agents/code/prompts/nextjs_prompt.py,sha256=L4Mz9mzKbTpzv9oK67VJw0GtA0n5LJgb26nB_UgEvsc,1336
64
+ gaia/agents/code/prompts/python_prompt.py,sha256=b7nDto8WLzpcV2blb6ALu9_500zLxMeHeZxxHFrMM9s,5157
65
+ gaia/agents/code/tools/__init__.py,sha256=RwzWZSJfWzNNe5HLFUOckvT9JI2pQCDs_kA_Kx98iyo,1194
66
+ gaia/agents/code/tools/cli_tools.py,sha256=c5Ubm953b-OUjD3NIMgGecaUzmMCwqEKFQTB2L5B9A0,38676
67
+ gaia/agents/code/tools/code_formatting.py,sha256=4cqsJgXf6Hn54l3D-7LRTXoxnrj9pTG7Fvyd30vzvYA,12258
68
+ gaia/agents/code/tools/code_tools.py,sha256=bs1JdC79H4ib2ZmwFR8001BdeP5jx3Z7H4D8BrBzpi8,27433
69
+ gaia/agents/code/tools/error_fixing.py,sha256=x2LWwngM-ZMeQfmTb2NTyG5HZ2MXd8ZG1oOKFFJfLjQ,57642
70
+ gaia/agents/code/tools/external_tools.py,sha256=H1CFMclLpKFzMuvYGcyKbvFqq8CQnuyt5egvUtOn8Go,7313
71
+ gaia/agents/code/tools/file_io.py,sha256=cjydKRBtkeS8eQH1mx853QU6xVbl9-rDVwngJUnc3Ss,33007
72
+ gaia/agents/code/tools/prisma_tools.py,sha256=UrdP6QqrIMsVfHpeLQxtlwVgeYH9kVJSl6iQ--LIpuA,7711
73
+ gaia/agents/code/tools/project_management.py,sha256=CNFp3qFLAIpol15ODwYgnzVIiXaIYvlDL4UG1ru5K9g,45115
74
+ gaia/agents/code/tools/testing.py,sha256=L6Snfwp5zNl4ia9dl8hZS8CldW0mLSMKjEWT4xM9R8s,13162
75
+ gaia/agents/code/tools/typescript_tools.py,sha256=PqpkcRpMMHPLKnsrcEJM_okMz6h620b1FRdOGvADQpQ,4377
76
+ gaia/agents/code/tools/validation_parsing.py,sha256=jVJhUDGSfGDaHsCAjRsGHPWykn8O_vL9cBzuBo6B3Zc,16839
77
+ gaia/agents/code/tools/validation_tools.py,sha256=fj8p5n9l-cUVy1edhAsxK7S6GLTRwigZhe-BKcbWby0,35549
78
+ gaia/agents/code/tools/web_dev_tools.py,sha256=b4wQnhI8FZs1PaW8KQ-JycRyWpT3fr1l-Q6euDKwqPs,76586
79
+ gaia/agents/code/validators/__init__.py,sha256=LFCRlftCkIlSBx9hHP67NnQA98LkOe4ecTi1q0ixmCg,493
80
+ gaia/agents/code/validators/antipattern_checker.py,sha256=IOSdY-2nfBor5eRqq9ybbVlor4B6ykdwaNrE0rm88js,8373
81
+ gaia/agents/code/validators/ast_analyzer.py,sha256=X-Yo365WhmGIKijzndmrBxO_QtMVYIhU-XnZFic4DOQ,6783
82
+ gaia/agents/code/validators/requirements_validator.py,sha256=e49UW4j4_PUwid5rDdJG7fGngcRSYNin9iyHXs-2LfQ,4874
83
+ gaia/agents/code/validators/syntax_validator.py,sha256=dHKIJDkkHywvxZXaSHT-gYqmq7WU2HNiEXn5k87Xc7Y,5202
84
+ gaia/agents/docker/__init__.py,sha256=CJrfgp08EiwRFdecnRMF9GAVegtwZSr5GYjsOpLUPTg,212
85
+ gaia/agents/docker/agent.py,sha256=XCXUdZnGHxaX7MC1NagAFwPxlbqZCWMMbeG5T6PZLRY,24992
86
+ gaia/agents/emr/__init__.py,sha256=pkwTATtg2FTAMIOTVRxJyp2chmg6mEB90bMObk_lQDI,257
87
+ gaia/agents/emr/agent.py,sha256=Gi7FAWaGQDxy252qVrmmcED3SDGWgIXRZWgPDnRadnw,58383
88
+ gaia/agents/emr/cli.py,sha256=5PohlvjTKxAUPWZpzr4RZd8kXsSWwB6Eg-Vl-SBZGvU,45464
89
+ gaia/agents/emr/constants.py,sha256=O8U6UJGxsrDCCs-FRFGbPXVA9uzvaAhqsrbajBDTGeo,14090
90
+ gaia/agents/emr/dashboard/__init__.py,sha256=LuxNnUsmYYrsTTEa9jIAQtvsEkKiY_I9AuaRmU7aav0,142
91
+ gaia/agents/emr/dashboard/server.py,sha256=uY3GfuDy9OH44GJ7cIKUKf2asyytymCwcac4s7ykl6Q,77005
92
+ gaia/agents/jira/__init__.py,sha256=7REShMYH9BTXmYaqBPpm9jDzE2LofMX_1-PKWWH6eiE,395
93
+ gaia/agents/jira/agent.py,sha256=jbAPNfO8_0QM9gAeH278MtExVwib_z3yGfGZSwkzFsI,34478
94
+ gaia/agents/jira/jql_templates.py,sha256=c1BKGPoeOWeB-EExFzTkb2UcGuC_wWsiOEqpX0oImSg,11136
95
+ gaia/agents/routing/__init__.py,sha256=bmKSrA51BsPSHuAUTuDXWMrHIpG_ja9UTCWQuD81feE,239
96
+ gaia/agents/routing/agent.py,sha256=ERlBIb9GPdiY4Spg0GgxGC2Nu5tfGmEOF8d_vm8weKM,21012
97
+ gaia/agents/routing/system_prompt.py,sha256=XOuQRYvsh4GDLwUcSoutf2Zz-YwTq3g33GVuQ3-6GYA,3661
98
+ gaia/agents/summarize/__init__.py,sha256=hZgWtAdKKiyHjc1sy0HwAiwJeQFyKd_Mo5cHC7Pzdrc,247
99
+ gaia/agents/summarize/agent.py,sha256=xoe-6Bb2QeaDWA11GLkfLutaMYnx3ucDMpwJCxAFzdU,37679
100
+ gaia/agents/summarize/prompts.py,sha256=Is-WrNnbl86acOCh_Y_eYhfY6PU68_MUhO1k0AUaEtY,6266
101
+ gaia/api/__init__.py,sha256=BGWiO7Hg75lgf5cjujA4QIl65L-gbpR7WYiRlQI7f6A,641
102
+ gaia/api/agent_registry.py,sha256=tmYZOE7KTn1UdXtEGSTLtmBmMsQMVlhVgX-0m--UrHY,7997
103
+ gaia/api/app.py,sha256=63xtdFjHxQczzl9D5f6zme9chORtj8wD3-Zdcbg3hE8,10081
104
+ gaia/api/openai_server.py,sha256=NFBJGHNn6FT06eBRCIJd9eURGckAmX2v6ZqMY5XC7l4,19644
105
+ gaia/api/schemas.py,sha256=yVgHEGtslbkgJKgflolcYlKvr4I13R4Re1K6cyu4JL0,4936
106
+ gaia/api/sse_handler.py,sha256=dHJmB2mgMoKctx_IKUM-KQKDY0PsKlg0rtKW6UlcMvM,13154
107
+ gaia/apps/__init__.py,sha256=YnsP88ZyPLsKkMlEKyzq2TYGOV5nZvmp2V9cMtjb9fw,131
108
+ gaia/apps/llm/__init__.py,sha256=dKYgZ2z17HGYR_MDMk-18WUofVodd6dSGeSY1yzth3A,156
109
+ gaia/apps/llm/app.py,sha256=7EBFN6GVHVGSnZbOOP-MA_q8H0myzjDtvUNh6Rlikas,4984
110
+ gaia/apps/summarize/app.py,sha256=CHxP2UZZ_alwm6tNgJ5mEYkWv6W0gISpd_zae0Lm_4U,3747
111
+ gaia/apps/summarize/html_viewer.py,sha256=PybAu7Kh47zCnvI9dKoGWw9ePK9E-ixskSzV5jB54Ig,4181
112
+ gaia/apps/summarize/pdf_formatter.py,sha256=JhYXyNYP7juknTE09WRudfAKSmQpmkmpDvkBtGpFZhE,10427
113
+ gaia/audio/__init__.py,sha256=cO4hVV7D0gDWg4ReEnwTSazG_35Mpi5FCLwbSsoXg6U,106
114
+ gaia/audio/audio_client.py,sha256=rN_KuVLAb2z7P87jjbevBpx4Fj3318VzeiPaV7TaUWU,18540
115
+ gaia/audio/audio_recorder.py,sha256=0ZxBPPMn52Y9hJeMmRycTkP0a9W-o0WwpKzxn-bD8Q4,9740
116
+ gaia/audio/kokoro_tts.py,sha256=_7tXznt42EXcM4ZaDoShZ0sSJffn9IEpnkVIhKKxstg,21831
117
+ gaia/audio/whisper_asr.py,sha256=prytZRuS465oeMkaj8ygdfb_QrTs71ucllWnp1-DNiY,16516
118
+ gaia/chat/__init__.py,sha256=SdzKPgy_XeQp6uj6HBeUwcRBK0xja7eFMow2eaKYlSE,349
119
+ gaia/chat/app.py,sha256=YKfJsf0bp3YqRIu8l8aTZdEuxdKgvtvMbOrOgOYZjF8,12330
120
+ gaia/chat/prompts.py,sha256=2U1CaIM_TwLr7klZlbmNrwEV0tbWR8HE0RJ3HGZcfdU,21567
121
+ gaia/chat/sdk.py,sha256=joL82YWZRn350E9vD3cchHjmIUlSN-jWcWoUXbyk7Tg,44661
122
+ gaia/database/__init__.py,sha256=fLH8BhaDMMAluXQg5r82agX3kVKsH1DxvQKs5YdZ_kE,338
123
+ gaia/database/agent.py,sha256=VElmpJrPEs3qta-HK4V7LR6CH813ZF3w8XkLmSHZH4U,5767
124
+ gaia/database/mixin.py,sha256=t3YD-3wPViYnSVZeUFOdM8xigppeNkpLjpccc5EaALk,8731
125
+ gaia/database/testing.py,sha256=iyYsDuSGtL7PdMMNj2mJ0aifIwIJZ2orXX4SUjnbBTc,1839
126
+ gaia/eval/batch_experiment.py,sha256=p6_lwBnyuNs7SYJszxoIpQmxNBHP2SuO5Tomr-sZst4,99552
127
+ gaia/eval/claude.py,sha256=edyLhHcC0NKqOX3B8WuG8jPpX3vchaobkw7z3v5AMfM,20644
128
+ gaia/eval/config.py,sha256=WnnUnvEZLDnvJPECUja73KaqAJAWNhXiM-anYOHfrAE,1621
129
+ gaia/eval/email_generator.py,sha256=MTQhOXgv0X2Bo3Pbul47y6aYdc_lr9Lhq9QR3wFMPIQ,21207
130
+ gaia/eval/eval.py,sha256=SNXJKcsfUIMfaC1IdWpajLJp-v0TovFvjU04-kBQVZI,147830
131
+ gaia/eval/groundtruth.py,sha256=Szy7Ohs9d5bi9mdaAiEoVH7yZMu955xBlSMC4Q7-jB8,48412
132
+ gaia/eval/transcript_generator.py,sha256=SCV_oMkaUgrDOZWQ0Qq98MpHV_PENjiNsDTIfUOC-GE,24916
133
+ gaia/eval/webapp/README.md,sha256=Fp9JWE4odUFUFS0gPz2Gq_wboAlahvrxieX9A7csbUs,4906
134
+ gaia/eval/webapp/package-lock.json,sha256=jCPY560mhYH7RudmTQkyS_dZ1jK2JcG7MqXfOMtZhNU,31245
135
+ gaia/eval/webapp/package.json,sha256=N3l3hu51Y8k0VfigxX3cf1ymn3y78QM5Q-LEm4D9g68,639
136
+ gaia/eval/webapp/server.js,sha256=0CInL-VACKKi6OXHEysbaWcF9Pq7GBhiI12nO57QXrQ,15799
137
+ gaia/eval/webapp/test-setup.js,sha256=NfIwc-hcnrVbNHyUvtvZWP88na9gdNXxnlQKGArG3YA,2637
138
+ gaia/eval/webapp/public/app.js,sha256=-qqTCqIXLJ2JKBMcXnNPM04XBD-ioX_4JzR50Gr3qu8,164547
139
+ gaia/eval/webapp/public/index.html,sha256=qfo97RArd77bSMAWQrNnUVp7_To8e6XCXV3iHqNmw1E,4738
140
+ gaia/eval/webapp/public/styles.css,sha256=toAtkMtfYB16ZApZXTQQ6i7IYC2S9CahUT6oj1a0B0Y,71381
141
+ gaia/llm/__init__.py,sha256=K-2-6ajS82JArumYvH085fDl-AujwfZ7waCTL4iqv3U,308
142
+ gaia/llm/base_client.py,sha256=g9JXXWslQLdwzeURnddmZzj7u27VMu2nILm5OSCA05Q,1701
143
+ gaia/llm/exceptions.py,sha256=aQ7sk_KtwW5MlJP6HFFnnKDhevNfsNIvYOTF8UUJnaQ,413
144
+ gaia/llm/factory.py,sha256=IkbCHCIbLADWuU1_HoooJTDhr0xu_mDQVzhxtc-S9tY,2508
145
+ gaia/llm/lemonade_client.py,sha256=1cuIbBQu5UIgEjvhRUYnpIIP9GDmiasddcThZcBNBKI,119083
146
+ gaia/llm/lemonade_manager.py,sha256=R93qqmsuYqSf4gLG0R1BTTkZxu9WCLmKCHLvzu1K_yE,11017
147
+ gaia/llm/vlm_client.py,sha256=D4bV-XmO2-Lu34qFGqP5l0zN6p0x85to3aJRGQ4SA0A,13247
148
+ gaia/llm/providers/__init__.py,sha256=h2qbDWhOfE9G6YHgLMYzTw5bv1L63cSGuwEzML6iJU8,329
149
+ gaia/llm/providers/claude.py,sha256=r22rb8sZR-wt-LzNEDU49drftPOn5ZY1MrftO65_78M,3262
150
+ gaia/llm/providers/lemonade.py,sha256=-GjDjZZKcWkeoNKea6AUMk1c4Hy2kDzcms_ub5BaNJg,4192
151
+ gaia/llm/providers/openai_provider.py,sha256=eU1NRtSPCfW0wKiK2ePcWNczvwt1E4koD9aL_D6cwc0,2502
152
+ gaia/mcp/agent_mcp_server.py,sha256=YU_BgRRK0VPaJJgO1CgFodFuYrO6XoRCo3cfltpTlQY,10152
153
+ gaia/mcp/blender_mcp_client.py,sha256=M5aI5esMPFqVrxYE0m7_xPAI-y8eTMgorlcflfyMM44,4967
154
+ gaia/mcp/blender_mcp_server.py,sha256=LuybEk842XT5GHQoVsRBaQTLCz4zegbUgOL5Vq2mZF0,22505
155
+ gaia/mcp/context7_cache.py,sha256=oE7aKI5F50l2sK2YnWtAj9dR3wfs9bK_y6VYB01HbF4,10949
156
+ gaia/mcp/external_services.py,sha256=MBF0LUFefIjkWUNaEi79LObDm-i1ulpNXCoNp8F7714,18029
157
+ gaia/mcp/mcp_bridge.py,sha256=nVv-r5DgaETm0GXxdUsgfNmuKc8kPSd-ls9-V3UowE8,31262
158
+ gaia/mcp/servers/__init__.py,sha256=nVMdu9WxedDKQXu4ke2UEnvOBicM5NprXd_X3KyGxGE,152
159
+ gaia/mcp/servers/docker_mcp.py,sha256=lVMltYWoahOEZRE3wX6RTuQXiZW1iScGflq6-QmnePk,2100
160
+ gaia/rag/__init__.py,sha256=aoe0OsqNFEIqRfyT4eC5k8x2LYUlgNWd_JONCT4pzuY,326
161
+ gaia/rag/app.py,sha256=c4uTS7pcAPV2G9zci6zYBjxbe2kWyEvKAEBToyw8j4Y,8579
162
+ gaia/rag/demo.py,sha256=OSrJYSY-1V8j0i6F286bLhFD9_FXHUsi5KerInu7H6U,10305
163
+ gaia/rag/pdf_utils.py,sha256=0gI30uv_nbryEaNdPYQHsFzSFnDx-UeuKfuFzByHwtw,7461
164
+ gaia/rag/sdk.py,sha256=4kFHE-zlNLSj8hdapoYuES1Ew05hkVRKEBF52I194tU,85817
165
+ gaia/talk/app.py,sha256=zf7Az7LoNpImYK9vdgf7gaAFXPIQcnheH8jqChzEZlc,7924
166
+ gaia/talk/sdk.py,sha256=YgxkxpFUVz4ZcW1UfxIHYTDDOwQyBypqJe3q0J6gEG4,17324
167
+ gaia/testing/__init__.py,sha256=KZNDdFiCVeUD2CoEKuaKtBdHOFUA9rHvuw2oKD9dd20,1925
168
+ gaia/testing/assertions.py,sha256=RvNmIA1naG-lz9S_MSC38U4nfWzM3XweTYiezl9VynM,9845
169
+ gaia/testing/fixtures.py,sha256=JwjQsHhGPz5_NSB2tZAIy96Cea7UweQ4oOZu_FAulmc,10107
170
+ gaia/testing/mocks.py,sha256=ojqkCYXBEAiMqiv6icfCVKOL6fw0RIc-Cv67uq08jNI,13895
171
+ gaia/utils/__init__.py,sha256=HnxwoKZvPoYWcSdf-iu5rYzwySkpuqSAwyFSFIHjBNI,733
172
+ gaia/utils/file_watcher.py,sha256=ZTlPvAmrSUtm42he29YCHfy3YByg03C4tFTPWM4ZsEc,22388
173
+ gaia/utils/parsing.py,sha256=PZ0aizm-pVox2pAqZA8Xc-k10c-bAXh71C5RkbyniyA,6695
174
+ amd_gaia-0.15.1.dist-info/METADATA,sha256=42H7lodyn4kAppu7u20k27kxGDJbhBHnEdwLQR-z3rE,8633
175
+ amd_gaia-0.15.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
176
+ amd_gaia-0.15.1.dist-info/entry_points.txt,sha256=nXsKQ1xgHlGqfZgBksSaEOL0TA8zV7lXJaxVSlgsygE,223
177
+ amd_gaia-0.15.1.dist-info/top_level.txt,sha256=79yz2gLmqK4bFQkuN8_cnHVY-lobuVT0Ww4YoO6OFvU,5
178
+ amd_gaia-0.15.1.dist-info/RECORD,,
@@ -1,6 +1,7 @@
1
1
  [console_scripts]
2
2
  gaia = gaia.cli:main
3
3
  gaia-cli = gaia.cli:main
4
+ gaia-code = gaia.agents.code.cli:main
4
5
  gaia-emr = gaia.agents.emr.cli:main
5
6
  gaia-mcp = gaia.mcp.mcp_bridge:main
6
7
  gaia-mcp-atlassian = gaia.mcp.atlassian_mcp:main