amd-gaia 0.15.0__py3-none-any.whl → 0.15.2__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 (185) hide show
  1. {amd_gaia-0.15.0.dist-info → amd_gaia-0.15.2.dist-info}/METADATA +222 -223
  2. amd_gaia-0.15.2.dist-info/RECORD +182 -0
  3. {amd_gaia-0.15.0.dist-info → amd_gaia-0.15.2.dist-info}/WHEEL +1 -1
  4. {amd_gaia-0.15.0.dist-info → amd_gaia-0.15.2.dist-info}/entry_points.txt +1 -0
  5. {amd_gaia-0.15.0.dist-info → amd_gaia-0.15.2.dist-info}/licenses/LICENSE.md +20 -20
  6. gaia/__init__.py +29 -29
  7. gaia/agents/__init__.py +19 -19
  8. gaia/agents/base/__init__.py +9 -9
  9. gaia/agents/base/agent.py +2132 -2177
  10. gaia/agents/base/api_agent.py +119 -120
  11. gaia/agents/base/console.py +1967 -1841
  12. gaia/agents/base/errors.py +237 -237
  13. gaia/agents/base/mcp_agent.py +86 -86
  14. gaia/agents/base/tools.py +88 -83
  15. gaia/agents/blender/__init__.py +7 -0
  16. gaia/agents/blender/agent.py +553 -556
  17. gaia/agents/blender/agent_simple.py +133 -135
  18. gaia/agents/blender/app.py +211 -211
  19. gaia/agents/blender/app_simple.py +41 -41
  20. gaia/agents/blender/core/__init__.py +16 -16
  21. gaia/agents/blender/core/materials.py +506 -506
  22. gaia/agents/blender/core/objects.py +316 -316
  23. gaia/agents/blender/core/rendering.py +225 -225
  24. gaia/agents/blender/core/scene.py +220 -220
  25. gaia/agents/blender/core/view.py +146 -146
  26. gaia/agents/chat/__init__.py +9 -9
  27. gaia/agents/chat/agent.py +809 -835
  28. gaia/agents/chat/app.py +1065 -1058
  29. gaia/agents/chat/session.py +508 -508
  30. gaia/agents/chat/tools/__init__.py +15 -15
  31. gaia/agents/chat/tools/file_tools.py +96 -96
  32. gaia/agents/chat/tools/rag_tools.py +1744 -1729
  33. gaia/agents/chat/tools/shell_tools.py +437 -436
  34. gaia/agents/code/__init__.py +7 -7
  35. gaia/agents/code/agent.py +549 -549
  36. gaia/agents/code/cli.py +377 -0
  37. gaia/agents/code/models.py +135 -135
  38. gaia/agents/code/orchestration/__init__.py +24 -24
  39. gaia/agents/code/orchestration/checklist_executor.py +1763 -1763
  40. gaia/agents/code/orchestration/checklist_generator.py +713 -713
  41. gaia/agents/code/orchestration/factories/__init__.py +9 -9
  42. gaia/agents/code/orchestration/factories/base.py +63 -63
  43. gaia/agents/code/orchestration/factories/nextjs_factory.py +118 -118
  44. gaia/agents/code/orchestration/factories/python_factory.py +106 -106
  45. gaia/agents/code/orchestration/orchestrator.py +841 -841
  46. gaia/agents/code/orchestration/project_analyzer.py +391 -391
  47. gaia/agents/code/orchestration/steps/__init__.py +67 -67
  48. gaia/agents/code/orchestration/steps/base.py +188 -188
  49. gaia/agents/code/orchestration/steps/error_handler.py +314 -314
  50. gaia/agents/code/orchestration/steps/nextjs.py +828 -828
  51. gaia/agents/code/orchestration/steps/python.py +307 -307
  52. gaia/agents/code/orchestration/template_catalog.py +469 -469
  53. gaia/agents/code/orchestration/workflows/__init__.py +14 -14
  54. gaia/agents/code/orchestration/workflows/base.py +80 -80
  55. gaia/agents/code/orchestration/workflows/nextjs.py +186 -186
  56. gaia/agents/code/orchestration/workflows/python.py +94 -94
  57. gaia/agents/code/prompts/__init__.py +11 -11
  58. gaia/agents/code/prompts/base_prompt.py +77 -77
  59. gaia/agents/code/prompts/code_patterns.py +2034 -2036
  60. gaia/agents/code/prompts/nextjs_prompt.py +40 -40
  61. gaia/agents/code/prompts/python_prompt.py +109 -109
  62. gaia/agents/code/schema_inference.py +365 -365
  63. gaia/agents/code/system_prompt.py +41 -41
  64. gaia/agents/code/tools/__init__.py +42 -42
  65. gaia/agents/code/tools/cli_tools.py +1138 -1138
  66. gaia/agents/code/tools/code_formatting.py +319 -319
  67. gaia/agents/code/tools/code_tools.py +769 -769
  68. gaia/agents/code/tools/error_fixing.py +1347 -1347
  69. gaia/agents/code/tools/external_tools.py +180 -180
  70. gaia/agents/code/tools/file_io.py +845 -845
  71. gaia/agents/code/tools/prisma_tools.py +190 -190
  72. gaia/agents/code/tools/project_management.py +1016 -1016
  73. gaia/agents/code/tools/testing.py +321 -321
  74. gaia/agents/code/tools/typescript_tools.py +122 -122
  75. gaia/agents/code/tools/validation_parsing.py +461 -461
  76. gaia/agents/code/tools/validation_tools.py +806 -806
  77. gaia/agents/code/tools/web_dev_tools.py +1758 -1758
  78. gaia/agents/code/validators/__init__.py +16 -16
  79. gaia/agents/code/validators/antipattern_checker.py +241 -241
  80. gaia/agents/code/validators/ast_analyzer.py +197 -197
  81. gaia/agents/code/validators/requirements_validator.py +145 -145
  82. gaia/agents/code/validators/syntax_validator.py +171 -171
  83. gaia/agents/docker/__init__.py +7 -7
  84. gaia/agents/docker/agent.py +643 -642
  85. gaia/agents/emr/__init__.py +8 -8
  86. gaia/agents/emr/agent.py +1504 -1506
  87. gaia/agents/emr/cli.py +1322 -1322
  88. gaia/agents/emr/constants.py +475 -475
  89. gaia/agents/emr/dashboard/__init__.py +4 -4
  90. gaia/agents/emr/dashboard/server.py +1972 -1974
  91. gaia/agents/jira/__init__.py +11 -11
  92. gaia/agents/jira/agent.py +894 -894
  93. gaia/agents/jira/jql_templates.py +299 -299
  94. gaia/agents/routing/__init__.py +7 -7
  95. gaia/agents/routing/agent.py +567 -570
  96. gaia/agents/routing/system_prompt.py +75 -75
  97. gaia/agents/summarize/__init__.py +11 -0
  98. gaia/agents/summarize/agent.py +885 -0
  99. gaia/agents/summarize/prompts.py +129 -0
  100. gaia/api/__init__.py +23 -23
  101. gaia/api/agent_registry.py +238 -238
  102. gaia/api/app.py +305 -305
  103. gaia/api/openai_server.py +575 -575
  104. gaia/api/schemas.py +186 -186
  105. gaia/api/sse_handler.py +373 -373
  106. gaia/apps/__init__.py +4 -4
  107. gaia/apps/llm/__init__.py +6 -6
  108. gaia/apps/llm/app.py +184 -169
  109. gaia/apps/summarize/app.py +116 -633
  110. gaia/apps/summarize/html_viewer.py +133 -133
  111. gaia/apps/summarize/pdf_formatter.py +284 -284
  112. gaia/audio/__init__.py +2 -2
  113. gaia/audio/audio_client.py +439 -439
  114. gaia/audio/audio_recorder.py +269 -269
  115. gaia/audio/kokoro_tts.py +599 -599
  116. gaia/audio/whisper_asr.py +432 -432
  117. gaia/chat/__init__.py +16 -16
  118. gaia/chat/app.py +428 -430
  119. gaia/chat/prompts.py +522 -522
  120. gaia/chat/sdk.py +1228 -1225
  121. gaia/cli.py +5659 -5632
  122. gaia/database/__init__.py +10 -10
  123. gaia/database/agent.py +176 -176
  124. gaia/database/mixin.py +290 -290
  125. gaia/database/testing.py +64 -64
  126. gaia/eval/batch_experiment.py +2332 -2332
  127. gaia/eval/claude.py +542 -542
  128. gaia/eval/config.py +37 -37
  129. gaia/eval/email_generator.py +512 -512
  130. gaia/eval/eval.py +3179 -3179
  131. gaia/eval/groundtruth.py +1130 -1130
  132. gaia/eval/transcript_generator.py +582 -582
  133. gaia/eval/webapp/README.md +167 -167
  134. gaia/eval/webapp/package-lock.json +875 -875
  135. gaia/eval/webapp/package.json +20 -20
  136. gaia/eval/webapp/public/app.js +3402 -3402
  137. gaia/eval/webapp/public/index.html +87 -87
  138. gaia/eval/webapp/public/styles.css +3661 -3661
  139. gaia/eval/webapp/server.js +415 -415
  140. gaia/eval/webapp/test-setup.js +72 -72
  141. gaia/installer/__init__.py +23 -0
  142. gaia/installer/init_command.py +1275 -0
  143. gaia/installer/lemonade_installer.py +619 -0
  144. gaia/llm/__init__.py +10 -2
  145. gaia/llm/base_client.py +60 -0
  146. gaia/llm/exceptions.py +12 -0
  147. gaia/llm/factory.py +70 -0
  148. gaia/llm/lemonade_client.py +3421 -3221
  149. gaia/llm/lemonade_manager.py +294 -294
  150. gaia/llm/providers/__init__.py +9 -0
  151. gaia/llm/providers/claude.py +108 -0
  152. gaia/llm/providers/lemonade.py +118 -0
  153. gaia/llm/providers/openai_provider.py +79 -0
  154. gaia/llm/vlm_client.py +382 -382
  155. gaia/logger.py +189 -189
  156. gaia/mcp/agent_mcp_server.py +245 -245
  157. gaia/mcp/blender_mcp_client.py +138 -138
  158. gaia/mcp/blender_mcp_server.py +648 -648
  159. gaia/mcp/context7_cache.py +332 -332
  160. gaia/mcp/external_services.py +518 -518
  161. gaia/mcp/mcp_bridge.py +811 -550
  162. gaia/mcp/servers/__init__.py +6 -6
  163. gaia/mcp/servers/docker_mcp.py +83 -83
  164. gaia/perf_analysis.py +361 -0
  165. gaia/rag/__init__.py +10 -10
  166. gaia/rag/app.py +293 -293
  167. gaia/rag/demo.py +304 -304
  168. gaia/rag/pdf_utils.py +235 -235
  169. gaia/rag/sdk.py +2194 -2194
  170. gaia/security.py +183 -163
  171. gaia/talk/app.py +287 -289
  172. gaia/talk/sdk.py +538 -538
  173. gaia/testing/__init__.py +87 -87
  174. gaia/testing/assertions.py +330 -330
  175. gaia/testing/fixtures.py +333 -333
  176. gaia/testing/mocks.py +493 -493
  177. gaia/util.py +46 -46
  178. gaia/utils/__init__.py +33 -33
  179. gaia/utils/file_watcher.py +675 -675
  180. gaia/utils/parsing.py +223 -223
  181. gaia/version.py +100 -100
  182. amd_gaia-0.15.0.dist-info/RECORD +0 -168
  183. gaia/agents/code/app.py +0 -266
  184. gaia/llm/llm_client.py +0 -723
  185. {amd_gaia-0.15.0.dist-info → amd_gaia-0.15.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,182 @@
1
+ amd_gaia-0.15.2.dist-info/licenses/LICENSE.md,sha256=yIF_ozJFJ83xmRHBrFVeGoc12JVoCphi1cy07CsfroQ,1083
2
+ gaia/__init__.py,sha256=4SNDd1YBqgMNkH71EY3x81E_CSM4gc3Wl7GClCl1KTI,843
3
+ gaia/cli.py,sha256=sjgL2Ch7Zs0gSclHCdDfuw-lFHRaIzI0-fQ-aWGVYKQ,220283
4
+ gaia/logger.py,sha256=lrE9P2uL97TO35rfRyNMOdjo_BcNlvlym2N18B4sT7Y,6560
5
+ gaia/perf_analysis.py,sha256=RJjv8d52zkbZzPlv7lLLwtQS7qiQY7VX-g-W0skcdyU,11070
6
+ gaia/security.py,sha256=O2XKjAEGkjleWN-MKQPXgk6C4k_n-K4X2OYAdm6YtDA,6816
7
+ gaia/util.py,sha256=QYOjlm4dEJePwptjMJOkVGYXbw7wAee4o4P1KOUKicY,1569
8
+ gaia/version.py,sha256=WRkdcNEUd-2Zi922mMofuQyPsGTDnxUCP8Q-YNQWf10,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=q2UrK-Fa16EC5xASK-F2eJtsG5RJp2f8nbSZM3Avav0,94355
12
+ gaia/agents/base/api_agent.py,sha256=vjFGufBikYcgigjWPxNP-IGJl3joyHsT43mr7uOXs4I,3906
13
+ gaia/agents/base/console.py,sha256=Y-pTmzy7ap3EvoyjhVFfvb5xqAhrXeOaxPlTS_yOXEM,69801
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=zghYt8bVCiwEz-zcrsQpNom3e_JMoY4X1VgP_siYywU,2796
17
+ gaia/agents/blender/__init__.py,sha256=PiQYj1N-w93H_HTWqYnFC55Hy7bBES81B9IP_zRGdbo,231
18
+ gaia/agents/blender/agent.py,sha256=4UYoNUtaEfoHUBfU_MYUWr3SzaMbHAgB11SLQgmzC4U,20602
19
+ gaia/agents/blender/agent_simple.py,sha256=JJAagDUKBTKWRqPxUrpydL843FuSLFS_t4x4DJiq-YQ,4830
20
+ gaia/agents/blender/app.py,sha256=-CpauICzYVsXkTEnKcj03ZeLFHxbAcbpM7DJtZpKJYI,7229
21
+ gaia/agents/blender/app_simple.py,sha256=li-s86X7QwsLD8XtgRDCRRHYs4w118PRRjVI08n71mE,1252
22
+ gaia/agents/blender/core/__init__.py,sha256=NOd22GiSdpHcXNEfHEtBte9iOiyEwp9mZ531_C4ohQY,399
23
+ gaia/agents/blender/core/materials.py,sha256=-7_w3jePL1fvN3vxn3SLTx-9f_Kf5uy95KHJaijWk2Q,17132
24
+ gaia/agents/blender/core/objects.py,sha256=jDZu8ZaHJVTDLaS5yv5aSPlKqCuUvFa5Fg9zxmI_Zyk,10330
25
+ gaia/agents/blender/core/rendering.py,sha256=v8ai0vEA1eL1FnNpW1HKHKxlyv5Emns8FCyWzPih9To,7564
26
+ gaia/agents/blender/core/scene.py,sha256=bSf5hjblYoGZsjsABKXy25E0wP0S7dUMO98RsGE5IcY,6971
27
+ gaia/agents/blender/core/view.py,sha256=eY2DlxIodHb6QPD7okUSo0whHC6ALsuBVGzQBIPSlkQ,4980
28
+ gaia/agents/chat/__init__.py,sha256=Ys_t9QdnLvPTJNgbxrj1PmAFE6ZHJCzmITbO_FFSI9Q,235
29
+ gaia/agents/chat/agent.py,sha256=-mcCM1Z5rJHMFvJ4wuZk66mmQ_qJkHQHyjQ5qs_49ac,32469
30
+ gaia/agents/chat/app.py,sha256=hQwlvZM7Vqa_GMWZxsZQFho8lhm31_Hu6lC7_XJvddQ,47496
31
+ gaia/agents/chat/session.py,sha256=7-MwarXLXSQb4cBVSyPOoHrunpv1RUBPW6g9bpwfPDk,17856
32
+ gaia/agents/chat/tools/__init__.py,sha256=0xQ4S8dJzoOTHOiXJ27Az2lxpxbzM50VN6p4QMAve-I,451
33
+ gaia/agents/chat/tools/file_tools.py,sha256=GkSVfTq96xNgcQ5WgfWvjcfMpD94vBBjO-JMV_t0Rq0,3763
34
+ gaia/agents/chat/tools/rag_tools.py,sha256=17e4vw90pHTZd2Rr9cDAOyNtlFKg_2svFhxiY5_1dkk,79337
35
+ gaia/agents/chat/tools/shell_tools.py,sha256=4bd02jlybnFWj-iiToFkWB_nEQRGNy0duxaedctGpvk,18254
36
+ gaia/agents/code/__init__.py,sha256=0Ad5Cl4uJPqY8iaOc8zTbsWeaY0PQY652JMJj4lljS8,188
37
+ gaia/agents/code/agent.py,sha256=QzoS_Vc6qN7DwpI3SxpRHTzo_c7XuDKhN5spme2Bkpo,21994
38
+ gaia/agents/code/cli.py,sha256=gygaN4chkt14bNfoqDeCucWa5ykuoYggtITbY6Z4EZM,11535
39
+ gaia/agents/code/models.py,sha256=iDMATj6hb00jx6ETNkHh3dL4KIuv3yPrRdc6t1Vt5BU,3157
40
+ gaia/agents/code/schema_inference.py,sha256=2BKXL654waskugH1RM4Pc9WqPwDu4LxdE7SoxA76X4M,12522
41
+ gaia/agents/code/system_prompt.py,sha256=J2V9Rj5lFJe3l0GRiEyFanBaaLhscq1Smi75m47jQio,1484
42
+ gaia/agents/code/orchestration/__init__.py,sha256=vkWH_VOsWCBHw-y9RFcR4VtTvKNSmu266Cifu3anMpA,665
43
+ gaia/agents/code/orchestration/checklist_executor.py,sha256=cqfHBS3tm4hg5ZsoIzhGBpScABskzxtKIr_M5Ah1Brg,62679
44
+ gaia/agents/code/orchestration/checklist_generator.py,sha256=Fthj5MvxW_Vr7MLIi8apl3SSdMQIack2zeSXQbzot6g,28468
45
+ gaia/agents/code/orchestration/orchestrator.py,sha256=a-8-nd_DkIHKXpy74GTzRI9rQTz1euAzZpI_KR2MsCk,32491
46
+ gaia/agents/code/orchestration/project_analyzer.py,sha256=LqsGt39lLC5CHOLDXIZDY3GIOX_GFsyorL11qURgCY8,11866
47
+ gaia/agents/code/orchestration/template_catalog.py,sha256=OTNku6RIBzprfEMV4Xz8Y0BZEX5k96ErFOp_O5nl140,17870
48
+ gaia/agents/code/orchestration/factories/__init__.py,sha256=ItWI-P8BgLnr7U0bd2oY7qrITrtzNrDlYBK4yGrJBZ4,341
49
+ gaia/agents/code/orchestration/factories/base.py,sha256=M7R7jjelBL_gfzmPw70kTM4aYuatLbpU3sVBwD3mjCM,1853
50
+ gaia/agents/code/orchestration/factories/nextjs_factory.py,sha256=bB2p-NZ-ve4eNu4ILCa5fGVYHonhJn0DBPHnRk3Xuhw,3594
51
+ gaia/agents/code/orchestration/factories/python_factory.py,sha256=dJAozAssjqY4wUbTPb2NF2biO3xdRgGiD9T8sS_n_co,3051
52
+ gaia/agents/code/orchestration/steps/__init__.py,sha256=rIh3DEKoTijzBNk57bOpnoOA2K4XlTzw3YrXWplDGqo,1592
53
+ gaia/agents/code/orchestration/steps/base.py,sha256=vUYTn2UOw5Hl2hU3TnG8ETHM_Abeh12xxHirgLzVHwg,5803
54
+ gaia/agents/code/orchestration/steps/error_handler.py,sha256=4TsDf_JAtUSd6_mkh4BpjUBCVjycEC1XU56S6YaQj10,11657
55
+ gaia/agents/code/orchestration/steps/nextjs.py,sha256=1Hh5OnGBA0dmLbzNnvdeYW9NC_9QLeJUEJxtO7epc9k,30350
56
+ gaia/agents/code/orchestration/steps/python.py,sha256=Qc_CRvDEeu68mFWdP2nN4jE0n3jqSCTIgZjVW3Pl5iY,10439
57
+ gaia/agents/code/orchestration/workflows/__init__.py,sha256=ku8UwHKzVujHAJPddder_TciBhALWSsPYHNFEcWP_aw,409
58
+ gaia/agents/code/orchestration/workflows/base.py,sha256=ELWtTpEbn-j8T1jxN6pz0xF9tBDTBZyQcqANGCdAgKM,2433
59
+ gaia/agents/code/orchestration/workflows/nextjs.py,sha256=uh24eTkLQshaxck5y7txJvxD0iqJ9JstifTkTZaCfwY,6068
60
+ gaia/agents/code/orchestration/workflows/python.py,sha256=loEiXotb_oJKQXGjgVQybpv2AmD-p-QY-gT9dPIn8Hs,2457
61
+ gaia/agents/code/prompts/__init__.py,sha256=augJiIL5IEIEwdBFQ8olB6i88gRHq8p-K2_KBC1M-QQ,309
62
+ gaia/agents/code/prompts/base_prompt.py,sha256=V6VpCH61V4kWHeawJabmCQaGIBsa6zqWVWUrs-Y9eCg,2734
63
+ gaia/agents/code/prompts/code_patterns.py,sha256=lUS1PhZde0OWzU2O6j2Dtlc5RGH2k7Zm332BXAzekeM,67508
64
+ gaia/agents/code/prompts/nextjs_prompt.py,sha256=L4Mz9mzKbTpzv9oK67VJw0GtA0n5LJgb26nB_UgEvsc,1336
65
+ gaia/agents/code/prompts/python_prompt.py,sha256=b7nDto8WLzpcV2blb6ALu9_500zLxMeHeZxxHFrMM9s,5157
66
+ gaia/agents/code/tools/__init__.py,sha256=RwzWZSJfWzNNe5HLFUOckvT9JI2pQCDs_kA_Kx98iyo,1194
67
+ gaia/agents/code/tools/cli_tools.py,sha256=c5Ubm953b-OUjD3NIMgGecaUzmMCwqEKFQTB2L5B9A0,38676
68
+ gaia/agents/code/tools/code_formatting.py,sha256=4cqsJgXf6Hn54l3D-7LRTXoxnrj9pTG7Fvyd30vzvYA,12258
69
+ gaia/agents/code/tools/code_tools.py,sha256=bs1JdC79H4ib2ZmwFR8001BdeP5jx3Z7H4D8BrBzpi8,27433
70
+ gaia/agents/code/tools/error_fixing.py,sha256=x2LWwngM-ZMeQfmTb2NTyG5HZ2MXd8ZG1oOKFFJfLjQ,57642
71
+ gaia/agents/code/tools/external_tools.py,sha256=H1CFMclLpKFzMuvYGcyKbvFqq8CQnuyt5egvUtOn8Go,7313
72
+ gaia/agents/code/tools/file_io.py,sha256=cjydKRBtkeS8eQH1mx853QU6xVbl9-rDVwngJUnc3Ss,33007
73
+ gaia/agents/code/tools/prisma_tools.py,sha256=UrdP6QqrIMsVfHpeLQxtlwVgeYH9kVJSl6iQ--LIpuA,7711
74
+ gaia/agents/code/tools/project_management.py,sha256=CNFp3qFLAIpol15ODwYgnzVIiXaIYvlDL4UG1ru5K9g,45115
75
+ gaia/agents/code/tools/testing.py,sha256=L6Snfwp5zNl4ia9dl8hZS8CldW0mLSMKjEWT4xM9R8s,13162
76
+ gaia/agents/code/tools/typescript_tools.py,sha256=PqpkcRpMMHPLKnsrcEJM_okMz6h620b1FRdOGvADQpQ,4377
77
+ gaia/agents/code/tools/validation_parsing.py,sha256=jVJhUDGSfGDaHsCAjRsGHPWykn8O_vL9cBzuBo6B3Zc,16839
78
+ gaia/agents/code/tools/validation_tools.py,sha256=fj8p5n9l-cUVy1edhAsxK7S6GLTRwigZhe-BKcbWby0,35549
79
+ gaia/agents/code/tools/web_dev_tools.py,sha256=b4wQnhI8FZs1PaW8KQ-JycRyWpT3fr1l-Q6euDKwqPs,76586
80
+ gaia/agents/code/validators/__init__.py,sha256=LFCRlftCkIlSBx9hHP67NnQA98LkOe4ecTi1q0ixmCg,493
81
+ gaia/agents/code/validators/antipattern_checker.py,sha256=IOSdY-2nfBor5eRqq9ybbVlor4B6ykdwaNrE0rm88js,8373
82
+ gaia/agents/code/validators/ast_analyzer.py,sha256=X-Yo365WhmGIKijzndmrBxO_QtMVYIhU-XnZFic4DOQ,6783
83
+ gaia/agents/code/validators/requirements_validator.py,sha256=e49UW4j4_PUwid5rDdJG7fGngcRSYNin9iyHXs-2LfQ,4874
84
+ gaia/agents/code/validators/syntax_validator.py,sha256=dHKIJDkkHywvxZXaSHT-gYqmq7WU2HNiEXn5k87Xc7Y,5202
85
+ gaia/agents/docker/__init__.py,sha256=CJrfgp08EiwRFdecnRMF9GAVegtwZSr5GYjsOpLUPTg,212
86
+ gaia/agents/docker/agent.py,sha256=kqfi5A59Vyo5GWAuS95AaTUbujcPGA9mYS7zMeWfFXY,24993
87
+ gaia/agents/emr/__init__.py,sha256=pkwTATtg2FTAMIOTVRxJyp2chmg6mEB90bMObk_lQDI,257
88
+ gaia/agents/emr/agent.py,sha256=5vaZBeI5VfADJhyASC5HhFCliQsPee2VmTDgHl7qEcU,58342
89
+ gaia/agents/emr/cli.py,sha256=ox6cmBxaixvp2-ChK6hXKS5jSK8y_Td4lRmt6ErWMVM,45453
90
+ gaia/agents/emr/constants.py,sha256=O8U6UJGxsrDCCs-FRFGbPXVA9uzvaAhqsrbajBDTGeo,14090
91
+ gaia/agents/emr/dashboard/__init__.py,sha256=LuxNnUsmYYrsTTEa9jIAQtvsEkKiY_I9AuaRmU7aav0,142
92
+ gaia/agents/emr/dashboard/server.py,sha256=YQTrYM-vOt0I8KXXjzI1pNgDYoK10ZRd86NyrrD-nmM,76965
93
+ gaia/agents/jira/__init__.py,sha256=7REShMYH9BTXmYaqBPpm9jDzE2LofMX_1-PKWWH6eiE,395
94
+ gaia/agents/jira/agent.py,sha256=jbAPNfO8_0QM9gAeH278MtExVwib_z3yGfGZSwkzFsI,34478
95
+ gaia/agents/jira/jql_templates.py,sha256=c1BKGPoeOWeB-EExFzTkb2UcGuC_wWsiOEqpX0oImSg,11136
96
+ gaia/agents/routing/__init__.py,sha256=bmKSrA51BsPSHuAUTuDXWMrHIpG_ja9UTCWQuD81feE,239
97
+ gaia/agents/routing/agent.py,sha256=ERlBIb9GPdiY4Spg0GgxGC2Nu5tfGmEOF8d_vm8weKM,21012
98
+ gaia/agents/routing/system_prompt.py,sha256=XOuQRYvsh4GDLwUcSoutf2Zz-YwTq3g33GVuQ3-6GYA,3661
99
+ gaia/agents/summarize/__init__.py,sha256=hZgWtAdKKiyHjc1sy0HwAiwJeQFyKd_Mo5cHC7Pzdrc,247
100
+ gaia/agents/summarize/agent.py,sha256=xoe-6Bb2QeaDWA11GLkfLutaMYnx3ucDMpwJCxAFzdU,37679
101
+ gaia/agents/summarize/prompts.py,sha256=Is-WrNnbl86acOCh_Y_eYhfY6PU68_MUhO1k0AUaEtY,6266
102
+ gaia/api/__init__.py,sha256=BGWiO7Hg75lgf5cjujA4QIl65L-gbpR7WYiRlQI7f6A,641
103
+ gaia/api/agent_registry.py,sha256=tmYZOE7KTn1UdXtEGSTLtmBmMsQMVlhVgX-0m--UrHY,7997
104
+ gaia/api/app.py,sha256=63xtdFjHxQczzl9D5f6zme9chORtj8wD3-Zdcbg3hE8,10081
105
+ gaia/api/openai_server.py,sha256=NFBJGHNn6FT06eBRCIJd9eURGckAmX2v6ZqMY5XC7l4,19644
106
+ gaia/api/schemas.py,sha256=yVgHEGtslbkgJKgflolcYlKvr4I13R4Re1K6cyu4JL0,4936
107
+ gaia/api/sse_handler.py,sha256=dHJmB2mgMoKctx_IKUM-KQKDY0PsKlg0rtKW6UlcMvM,13154
108
+ gaia/apps/__init__.py,sha256=YnsP88ZyPLsKkMlEKyzq2TYGOV5nZvmp2V9cMtjb9fw,131
109
+ gaia/apps/llm/__init__.py,sha256=dKYgZ2z17HGYR_MDMk-18WUofVodd6dSGeSY1yzth3A,156
110
+ gaia/apps/llm/app.py,sha256=z3SCiBrKszzpyo12s04O07KWCLlVGcjqT9V1WC0exVo,5353
111
+ gaia/apps/summarize/app.py,sha256=CHxP2UZZ_alwm6tNgJ5mEYkWv6W0gISpd_zae0Lm_4U,3747
112
+ gaia/apps/summarize/html_viewer.py,sha256=PybAu7Kh47zCnvI9dKoGWw9ePK9E-ixskSzV5jB54Ig,4181
113
+ gaia/apps/summarize/pdf_formatter.py,sha256=JhYXyNYP7juknTE09WRudfAKSmQpmkmpDvkBtGpFZhE,10427
114
+ gaia/audio/__init__.py,sha256=cO4hVV7D0gDWg4ReEnwTSazG_35Mpi5FCLwbSsoXg6U,106
115
+ gaia/audio/audio_client.py,sha256=rN_KuVLAb2z7P87jjbevBpx4Fj3318VzeiPaV7TaUWU,18540
116
+ gaia/audio/audio_recorder.py,sha256=0ZxBPPMn52Y9hJeMmRycTkP0a9W-o0WwpKzxn-bD8Q4,9740
117
+ gaia/audio/kokoro_tts.py,sha256=_7tXznt42EXcM4ZaDoShZ0sSJffn9IEpnkVIhKKxstg,21831
118
+ gaia/audio/whisper_asr.py,sha256=prytZRuS465oeMkaj8ygdfb_QrTs71ucllWnp1-DNiY,16516
119
+ gaia/chat/__init__.py,sha256=SdzKPgy_XeQp6uj6HBeUwcRBK0xja7eFMow2eaKYlSE,349
120
+ gaia/chat/app.py,sha256=vQUfC7fyLNYm5KT-z_sxWT54Jg35i5sd3dYqKg1wWS4,12316
121
+ gaia/chat/prompts.py,sha256=2U1CaIM_TwLr7klZlbmNrwEV0tbWR8HE0RJ3HGZcfdU,21567
122
+ gaia/chat/sdk.py,sha256=joL82YWZRn350E9vD3cchHjmIUlSN-jWcWoUXbyk7Tg,44661
123
+ gaia/database/__init__.py,sha256=fLH8BhaDMMAluXQg5r82agX3kVKsH1DxvQKs5YdZ_kE,338
124
+ gaia/database/agent.py,sha256=VElmpJrPEs3qta-HK4V7LR6CH813ZF3w8XkLmSHZH4U,5767
125
+ gaia/database/mixin.py,sha256=t3YD-3wPViYnSVZeUFOdM8xigppeNkpLjpccc5EaALk,8731
126
+ gaia/database/testing.py,sha256=iyYsDuSGtL7PdMMNj2mJ0aifIwIJZ2orXX4SUjnbBTc,1839
127
+ gaia/eval/batch_experiment.py,sha256=p6_lwBnyuNs7SYJszxoIpQmxNBHP2SuO5Tomr-sZst4,99552
128
+ gaia/eval/claude.py,sha256=edyLhHcC0NKqOX3B8WuG8jPpX3vchaobkw7z3v5AMfM,20644
129
+ gaia/eval/config.py,sha256=WnnUnvEZLDnvJPECUja73KaqAJAWNhXiM-anYOHfrAE,1621
130
+ gaia/eval/email_generator.py,sha256=MTQhOXgv0X2Bo3Pbul47y6aYdc_lr9Lhq9QR3wFMPIQ,21207
131
+ gaia/eval/eval.py,sha256=SNXJKcsfUIMfaC1IdWpajLJp-v0TovFvjU04-kBQVZI,147830
132
+ gaia/eval/groundtruth.py,sha256=Szy7Ohs9d5bi9mdaAiEoVH7yZMu955xBlSMC4Q7-jB8,48412
133
+ gaia/eval/transcript_generator.py,sha256=SCV_oMkaUgrDOZWQ0Qq98MpHV_PENjiNsDTIfUOC-GE,24916
134
+ gaia/eval/webapp/README.md,sha256=Fp9JWE4odUFUFS0gPz2Gq_wboAlahvrxieX9A7csbUs,4906
135
+ gaia/eval/webapp/package-lock.json,sha256=jCPY560mhYH7RudmTQkyS_dZ1jK2JcG7MqXfOMtZhNU,31245
136
+ gaia/eval/webapp/package.json,sha256=N3l3hu51Y8k0VfigxX3cf1ymn3y78QM5Q-LEm4D9g68,639
137
+ gaia/eval/webapp/server.js,sha256=0CInL-VACKKi6OXHEysbaWcF9Pq7GBhiI12nO57QXrQ,15799
138
+ gaia/eval/webapp/test-setup.js,sha256=NfIwc-hcnrVbNHyUvtvZWP88na9gdNXxnlQKGArG3YA,2637
139
+ gaia/eval/webapp/public/app.js,sha256=-qqTCqIXLJ2JKBMcXnNPM04XBD-ioX_4JzR50Gr3qu8,164547
140
+ gaia/eval/webapp/public/index.html,sha256=qfo97RArd77bSMAWQrNnUVp7_To8e6XCXV3iHqNmw1E,4738
141
+ gaia/eval/webapp/public/styles.css,sha256=toAtkMtfYB16ZApZXTQQ6i7IYC2S9CahUT6oj1a0B0Y,71381
142
+ gaia/installer/__init__.py,sha256=NvQ-XNJsAnjwfyF2YwkerNcztTMDMxKXf_9NGoNYQdY,503
143
+ gaia/installer/init_command.py,sha256=vx9PMct5Uxs_6PKvsN4GbsqE_AmPStJHenk72ka43VE,47854
144
+ gaia/installer/lemonade_installer.py,sha256=DL8ziWnXubbj-5Tc7eBuEO_Sfa7t1Y7cLq0qUKqxXYg,21611
145
+ gaia/llm/__init__.py,sha256=fdu07-f682NvxLR-wgwaY5s0L-ZEphXD0sfUp-LAQn8,355
146
+ gaia/llm/base_client.py,sha256=g9JXXWslQLdwzeURnddmZzj7u27VMu2nILm5OSCA05Q,1701
147
+ gaia/llm/exceptions.py,sha256=aQ7sk_KtwW5MlJP6HFFnnKDhevNfsNIvYOTF8UUJnaQ,413
148
+ gaia/llm/factory.py,sha256=IkbCHCIbLADWuU1_HoooJTDhr0xu_mDQVzhxtc-S9tY,2508
149
+ gaia/llm/lemonade_client.py,sha256=pv-736R1Qpodfa2XLLJQesV4I7WeEu69SYjrMke7P_w,126772
150
+ gaia/llm/lemonade_manager.py,sha256=R93qqmsuYqSf4gLG0R1BTTkZxu9WCLmKCHLvzu1K_yE,11017
151
+ gaia/llm/vlm_client.py,sha256=D4bV-XmO2-Lu34qFGqP5l0zN6p0x85to3aJRGQ4SA0A,13247
152
+ gaia/llm/providers/__init__.py,sha256=h2qbDWhOfE9G6YHgLMYzTw5bv1L63cSGuwEzML6iJU8,329
153
+ gaia/llm/providers/claude.py,sha256=r22rb8sZR-wt-LzNEDU49drftPOn5ZY1MrftO65_78M,3262
154
+ gaia/llm/providers/lemonade.py,sha256=BbeSzNzqRnEiUn9P55TYUf9kuGN_NL1ib9XO9pPH5Sw,4004
155
+ gaia/llm/providers/openai_provider.py,sha256=eU1NRtSPCfW0wKiK2ePcWNczvwt1E4koD9aL_D6cwc0,2502
156
+ gaia/mcp/agent_mcp_server.py,sha256=YU_BgRRK0VPaJJgO1CgFodFuYrO6XoRCo3cfltpTlQY,10152
157
+ gaia/mcp/blender_mcp_client.py,sha256=M5aI5esMPFqVrxYE0m7_xPAI-y8eTMgorlcflfyMM44,4967
158
+ gaia/mcp/blender_mcp_server.py,sha256=LuybEk842XT5GHQoVsRBaQTLCz4zegbUgOL5Vq2mZF0,22505
159
+ gaia/mcp/context7_cache.py,sha256=oE7aKI5F50l2sK2YnWtAj9dR3wfs9bK_y6VYB01HbF4,10949
160
+ gaia/mcp/external_services.py,sha256=MBF0LUFefIjkWUNaEi79LObDm-i1ulpNXCoNp8F7714,18029
161
+ gaia/mcp/mcp_bridge.py,sha256=nVv-r5DgaETm0GXxdUsgfNmuKc8kPSd-ls9-V3UowE8,31262
162
+ gaia/mcp/servers/__init__.py,sha256=nVMdu9WxedDKQXu4ke2UEnvOBicM5NprXd_X3KyGxGE,152
163
+ gaia/mcp/servers/docker_mcp.py,sha256=lVMltYWoahOEZRE3wX6RTuQXiZW1iScGflq6-QmnePk,2100
164
+ gaia/rag/__init__.py,sha256=aoe0OsqNFEIqRfyT4eC5k8x2LYUlgNWd_JONCT4pzuY,326
165
+ gaia/rag/app.py,sha256=c4uTS7pcAPV2G9zci6zYBjxbe2kWyEvKAEBToyw8j4Y,8579
166
+ gaia/rag/demo.py,sha256=OSrJYSY-1V8j0i6F286bLhFD9_FXHUsi5KerInu7H6U,10305
167
+ gaia/rag/pdf_utils.py,sha256=0gI30uv_nbryEaNdPYQHsFzSFnDx-UeuKfuFzByHwtw,7461
168
+ gaia/rag/sdk.py,sha256=SPiRoAsPCDdDhoR6kgLnAFSwxAKAO46HiMdUYEb91qk,85806
169
+ gaia/talk/app.py,sha256=N_qqjkP6jPw4U7OE0BENYs1OQwfwdeyAbP8RdXjLvjg,7910
170
+ gaia/talk/sdk.py,sha256=YgxkxpFUVz4ZcW1UfxIHYTDDOwQyBypqJe3q0J6gEG4,17324
171
+ gaia/testing/__init__.py,sha256=KZNDdFiCVeUD2CoEKuaKtBdHOFUA9rHvuw2oKD9dd20,1925
172
+ gaia/testing/assertions.py,sha256=RvNmIA1naG-lz9S_MSC38U4nfWzM3XweTYiezl9VynM,9845
173
+ gaia/testing/fixtures.py,sha256=JwjQsHhGPz5_NSB2tZAIy96Cea7UweQ4oOZu_FAulmc,10107
174
+ gaia/testing/mocks.py,sha256=ojqkCYXBEAiMqiv6icfCVKOL6fw0RIc-Cv67uq08jNI,13895
175
+ gaia/utils/__init__.py,sha256=HnxwoKZvPoYWcSdf-iu5rYzwySkpuqSAwyFSFIHjBNI,733
176
+ gaia/utils/file_watcher.py,sha256=ZTlPvAmrSUtm42he29YCHfy3YByg03C4tFTPWM4ZsEc,22388
177
+ gaia/utils/parsing.py,sha256=PZ0aizm-pVox2pAqZA8Xc-k10c-bAXh71C5RkbyniyA,6695
178
+ amd_gaia-0.15.2.dist-info/METADATA,sha256=N7qMt4xbXkMCfIXQ25E6KTELtE8Rwk7SDpJnk7TffMA,8463
179
+ amd_gaia-0.15.2.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
180
+ amd_gaia-0.15.2.dist-info/entry_points.txt,sha256=nXsKQ1xgHlGqfZgBksSaEOL0TA8zV7lXJaxVSlgsygE,223
181
+ amd_gaia-0.15.2.dist-info/top_level.txt,sha256=79yz2gLmqK4bFQkuN8_cnHVY-lobuVT0Ww4YoO6OFvU,5
182
+ amd_gaia-0.15.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (C) 2024-2025 ADVANCED MICRO DEVICES
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ MIT License
2
+
3
+ Copyright (C) 2024-2025 ADVANCED MICRO DEVICES
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
gaia/__init__.py CHANGED
@@ -1,29 +1,29 @@
1
- # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
- # SPDX-License-Identifier: MIT
3
- """
4
- GAIA - Generative AI Is Awesome
5
-
6
- AMD's framework for running generative AI applications locally on AMD hardware.
7
- """
8
-
9
- # Load environment variables from .env file BEFORE any other imports
10
- # This ensures all SDK components respect .env configuration
11
- from dotenv import load_dotenv
12
-
13
- load_dotenv()
14
-
15
- # pylint: disable=wrong-import-position
16
- from gaia.agents.base import Agent, MCPAgent, tool # noqa: F401, E402
17
- from gaia.database import DatabaseAgent, DatabaseMixin # noqa: F401, E402
18
- from gaia.utils import FileChangeHandler, FileWatcher, FileWatcherMixin # noqa: F401
19
-
20
- __all__ = [
21
- "Agent",
22
- "DatabaseAgent",
23
- "DatabaseMixin",
24
- "FileChangeHandler",
25
- "FileWatcher",
26
- "FileWatcherMixin",
27
- "MCPAgent",
28
- "tool",
29
- ]
1
+ # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
+ # SPDX-License-Identifier: MIT
3
+ """
4
+ GAIA - Generative AI Is Awesome
5
+
6
+ AMD's framework for running generative AI applications locally on AMD hardware.
7
+ """
8
+
9
+ # Load environment variables from .env file BEFORE any other imports
10
+ # This ensures all SDK components respect .env configuration
11
+ from dotenv import load_dotenv
12
+
13
+ load_dotenv()
14
+
15
+ # pylint: disable=wrong-import-position
16
+ from gaia.agents.base import Agent, MCPAgent, tool # noqa: F401, E402
17
+ from gaia.database import DatabaseAgent, DatabaseMixin # noqa: F401, E402
18
+ from gaia.utils import FileChangeHandler, FileWatcher, FileWatcherMixin # noqa: F401
19
+
20
+ __all__ = [
21
+ "Agent",
22
+ "DatabaseAgent",
23
+ "DatabaseMixin",
24
+ "FileChangeHandler",
25
+ "FileWatcher",
26
+ "FileWatcherMixin",
27
+ "MCPAgent",
28
+ "tool",
29
+ ]
gaia/agents/__init__.py CHANGED
@@ -1,19 +1,19 @@
1
- # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
- # SPDX-License-Identifier: MIT
3
-
4
- from gaia.logger import get_logger
5
-
6
- logger = get_logger(__name__)
7
-
8
- # Optional imports for other agents
9
- try:
10
- from gaia.apps.llm.app import LlmApp as llm
11
- except ImportError:
12
- logger.debug("llm app not available")
13
- llm = None
14
-
15
- try:
16
- from gaia.chat.app import ChatApp as chat
17
- except ImportError:
18
- logger.debug("Chat app not available")
19
- chat = None
1
+ # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
+ # SPDX-License-Identifier: MIT
3
+
4
+ from gaia.logger import get_logger
5
+
6
+ logger = get_logger(__name__)
7
+
8
+ # Optional imports for other agents
9
+ try:
10
+ from gaia.apps.llm.app import LlmApp as llm
11
+ except ImportError:
12
+ logger.debug("llm app not available")
13
+ llm = None
14
+
15
+ try:
16
+ from gaia.chat.app import ChatApp as chat
17
+ except ImportError:
18
+ logger.debug("Chat app not available")
19
+ chat = None
@@ -1,9 +1,9 @@
1
- # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
- # SPDX-License-Identifier: MIT
3
- """
4
- Base agent functionality for building domain-specific agents.
5
- """
6
-
7
- from gaia.agents.base.agent import Agent # noqa: F401
8
- from gaia.agents.base.mcp_agent import MCPAgent # noqa: F401
9
- from gaia.agents.base.tools import _TOOL_REGISTRY, tool # noqa: F401
1
+ # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
+ # SPDX-License-Identifier: MIT
3
+ """
4
+ Base agent functionality for building domain-specific agents.
5
+ """
6
+
7
+ from gaia.agents.base.agent import Agent # noqa: F401
8
+ from gaia.agents.base.mcp_agent import MCPAgent # noqa: F401
9
+ from gaia.agents.base.tools import _TOOL_REGISTRY, tool # noqa: F401