amd-gaia 0.14.2__py3-none-any.whl → 0.14.3__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.
- {amd_gaia-0.14.2.dist-info → amd_gaia-0.14.3.dist-info}/METADATA +5 -2
- amd_gaia-0.14.3.dist-info/RECORD +168 -0
- {amd_gaia-0.14.2.dist-info → amd_gaia-0.14.3.dist-info}/entry_points.txt +1 -0
- gaia/__init__.py +28 -1
- gaia/agents/__init__.py +1 -1
- gaia/agents/base/__init__.py +1 -1
- gaia/agents/base/agent.py +110 -33
- gaia/agents/base/api_agent.py +1 -1
- gaia/agents/base/console.py +399 -15
- gaia/agents/base/errors.py +237 -0
- gaia/agents/base/mcp_agent.py +1 -1
- gaia/agents/base/tools.py +1 -1
- gaia/agents/blender/agent.py +1 -1
- gaia/agents/blender/agent_simple.py +1 -1
- gaia/agents/blender/app.py +1 -1
- gaia/agents/blender/app_simple.py +1 -1
- gaia/agents/blender/core/__init__.py +1 -1
- gaia/agents/blender/core/materials.py +1 -1
- gaia/agents/blender/core/objects.py +1 -1
- gaia/agents/blender/core/rendering.py +1 -1
- gaia/agents/blender/core/scene.py +1 -1
- gaia/agents/blender/core/view.py +1 -1
- gaia/agents/chat/__init__.py +1 -1
- gaia/agents/chat/agent.py +36 -153
- gaia/agents/chat/app.py +1 -1
- gaia/agents/chat/session.py +1 -1
- gaia/agents/chat/tools/__init__.py +1 -1
- gaia/agents/chat/tools/file_tools.py +1 -1
- gaia/agents/chat/tools/rag_tools.py +1 -1
- gaia/agents/chat/tools/shell_tools.py +1 -1
- gaia/agents/code/__init__.py +1 -1
- gaia/agents/code/agent.py +3 -1
- gaia/agents/code/orchestration/__init__.py +1 -1
- gaia/agents/code/orchestration/checklist_executor.py +1 -1
- gaia/agents/code/orchestration/checklist_generator.py +1 -1
- gaia/agents/code/orchestration/factories/__init__.py +1 -1
- gaia/agents/code/orchestration/factories/base.py +1 -1
- gaia/agents/code/orchestration/factories/nextjs_factory.py +1 -1
- gaia/agents/code/orchestration/factories/python_factory.py +1 -1
- gaia/agents/code/orchestration/orchestrator.py +212 -1
- gaia/agents/code/orchestration/project_analyzer.py +1 -1
- gaia/agents/code/orchestration/steps/__init__.py +1 -1
- gaia/agents/code/orchestration/steps/base.py +1 -1
- gaia/agents/code/orchestration/steps/error_handler.py +1 -1
- gaia/agents/code/orchestration/steps/nextjs.py +1 -1
- gaia/agents/code/orchestration/steps/python.py +1 -1
- gaia/agents/code/orchestration/template_catalog.py +1 -1
- gaia/agents/code/orchestration/workflows/__init__.py +1 -1
- gaia/agents/code/orchestration/workflows/base.py +1 -1
- gaia/agents/code/orchestration/workflows/nextjs.py +1 -1
- gaia/agents/code/orchestration/workflows/python.py +1 -1
- gaia/agents/code/prompts/__init__.py +1 -1
- gaia/agents/code/prompts/base_prompt.py +1 -1
- gaia/agents/code/prompts/code_patterns.py +1 -1
- gaia/agents/code/prompts/nextjs_prompt.py +1 -1
- gaia/agents/code/prompts/python_prompt.py +1 -1
- gaia/agents/code/schema_inference.py +1 -1
- gaia/agents/code/system_prompt.py +1 -1
- gaia/agents/code/tools/__init__.py +1 -1
- gaia/agents/code/tools/cli_tools.py +1 -1
- gaia/agents/code/tools/code_formatting.py +1 -1
- gaia/agents/code/tools/code_tools.py +1 -1
- gaia/agents/code/tools/error_fixing.py +1 -1
- gaia/agents/code/tools/external_tools.py +1 -1
- gaia/agents/code/tools/prisma_tools.py +1 -1
- gaia/agents/code/tools/project_management.py +1 -1
- gaia/agents/code/tools/testing.py +1 -1
- gaia/agents/code/tools/typescript_tools.py +1 -1
- gaia/agents/code/tools/validation_parsing.py +1 -1
- gaia/agents/code/tools/validation_tools.py +5 -2
- gaia/agents/code/tools/web_dev_tools.py +1 -2
- gaia/agents/docker/__init__.py +1 -1
- gaia/agents/emr/__init__.py +8 -0
- gaia/agents/emr/agent.py +1506 -0
- gaia/agents/emr/cli.py +1322 -0
- gaia/agents/emr/constants.py +475 -0
- gaia/agents/emr/dashboard/__init__.py +4 -0
- gaia/agents/emr/dashboard/server.py +1974 -0
- gaia/agents/routing/__init__.py +1 -1
- gaia/agents/routing/agent.py +65 -7
- gaia/agents/routing/system_prompt.py +1 -1
- gaia/api/__init__.py +1 -1
- gaia/api/agent_registry.py +1 -1
- gaia/api/app.py +1 -1
- gaia/api/openai_server.py +1 -1
- gaia/api/schemas.py +1 -1
- gaia/api/sse_handler.py +5 -2
- gaia/apps/__init__.py +1 -1
- gaia/apps/llm/__init__.py +1 -1
- gaia/audio/__init__.py +1 -1
- gaia/audio/audio_client.py +1 -1
- gaia/audio/audio_recorder.py +1 -1
- gaia/audio/kokoro_tts.py +1 -1
- gaia/audio/whisper_asr.py +1 -1
- gaia/chat/__init__.py +1 -1
- gaia/chat/prompts.py +1 -1
- gaia/chat/sdk.py +25 -0
- gaia/cli.py +2 -2
- gaia/database/__init__.py +10 -0
- gaia/database/agent.py +176 -0
- gaia/database/mixin.py +290 -0
- gaia/database/testing.py +64 -0
- gaia/eval/batch_experiment.py +1 -1
- gaia/eval/claude.py +1 -1
- gaia/eval/config.py +1 -1
- gaia/eval/email_generator.py +1 -1
- gaia/eval/eval.py +1 -1
- gaia/eval/groundtruth.py +1 -1
- gaia/eval/transcript_generator.py +1 -1
- gaia/eval/webapp/public/app.js +1 -1
- gaia/eval/webapp/server.js +1 -1
- gaia/eval/webapp/test-setup.js +1 -1
- gaia/llm/__init__.py +1 -1
- gaia/llm/lemonade_client.py +149 -11
- gaia/llm/lemonade_manager.py +36 -11
- gaia/llm/llm_client.py +1 -1
- gaia/llm/vlm_client.py +93 -18
- gaia/logger.py +1 -1
- gaia/mcp/agent_mcp_server.py +1 -1
- gaia/mcp/blender_mcp_client.py +1 -1
- gaia/mcp/blender_mcp_server.py +1 -1
- gaia/mcp/context7_cache.py +1 -1
- gaia/mcp/servers/__init__.py +1 -1
- gaia/mcp/servers/docker_mcp.py +1 -1
- gaia/security.py +1 -1
- gaia/testing/__init__.py +87 -0
- gaia/testing/assertions.py +330 -0
- gaia/testing/fixtures.py +333 -0
- gaia/testing/mocks.py +493 -0
- gaia/util.py +1 -1
- gaia/utils/__init__.py +33 -0
- gaia/utils/file_watcher.py +675 -0
- gaia/utils/parsing.py +223 -0
- gaia/version.py +2 -2
- amd_gaia-0.14.2.dist-info/RECORD +0 -800
- gaia/eval/webapp/node_modules/.bin/mime +0 -16
- gaia/eval/webapp/node_modules/.bin/mime.cmd +0 -17
- gaia/eval/webapp/node_modules/.bin/mime.ps1 +0 -28
- gaia/eval/webapp/node_modules/.package-lock.json +0 -865
- gaia/eval/webapp/node_modules/accepts/HISTORY.md +0 -243
- gaia/eval/webapp/node_modules/accepts/LICENSE +0 -23
- gaia/eval/webapp/node_modules/accepts/README.md +0 -140
- gaia/eval/webapp/node_modules/accepts/index.js +0 -238
- gaia/eval/webapp/node_modules/accepts/package.json +0 -47
- gaia/eval/webapp/node_modules/array-flatten/LICENSE +0 -21
- gaia/eval/webapp/node_modules/array-flatten/README.md +0 -43
- gaia/eval/webapp/node_modules/array-flatten/array-flatten.js +0 -64
- gaia/eval/webapp/node_modules/array-flatten/package.json +0 -39
- gaia/eval/webapp/node_modules/body-parser/HISTORY.md +0 -672
- gaia/eval/webapp/node_modules/body-parser/LICENSE +0 -23
- gaia/eval/webapp/node_modules/body-parser/README.md +0 -476
- gaia/eval/webapp/node_modules/body-parser/SECURITY.md +0 -25
- gaia/eval/webapp/node_modules/body-parser/index.js +0 -156
- gaia/eval/webapp/node_modules/body-parser/lib/read.js +0 -205
- gaia/eval/webapp/node_modules/body-parser/lib/types/json.js +0 -247
- gaia/eval/webapp/node_modules/body-parser/lib/types/raw.js +0 -101
- gaia/eval/webapp/node_modules/body-parser/lib/types/text.js +0 -121
- gaia/eval/webapp/node_modules/body-parser/lib/types/urlencoded.js +0 -307
- gaia/eval/webapp/node_modules/body-parser/package.json +0 -56
- gaia/eval/webapp/node_modules/bytes/History.md +0 -97
- gaia/eval/webapp/node_modules/bytes/LICENSE +0 -23
- gaia/eval/webapp/node_modules/bytes/Readme.md +0 -152
- gaia/eval/webapp/node_modules/bytes/index.js +0 -170
- gaia/eval/webapp/node_modules/bytes/package.json +0 -42
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/.nycrc +0 -9
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/LICENSE +0 -21
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/README.md +0 -62
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/actualApply.d.ts +0 -1
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/actualApply.js +0 -10
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/applyBind.d.ts +0 -19
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/applyBind.js +0 -10
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/functionApply.d.ts +0 -1
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/functionApply.js +0 -4
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/functionCall.d.ts +0 -1
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/functionCall.js +0 -4
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/index.d.ts +0 -64
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/index.js +0 -15
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/package.json +0 -85
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/reflectApply.d.ts +0 -3
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/reflectApply.js +0 -4
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/test/index.js +0 -63
- gaia/eval/webapp/node_modules/call-bind-apply-helpers/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/call-bound/.eslintrc +0 -13
- gaia/eval/webapp/node_modules/call-bound/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/call-bound/.nycrc +0 -9
- gaia/eval/webapp/node_modules/call-bound/CHANGELOG.md +0 -42
- gaia/eval/webapp/node_modules/call-bound/LICENSE +0 -21
- gaia/eval/webapp/node_modules/call-bound/README.md +0 -53
- gaia/eval/webapp/node_modules/call-bound/index.d.ts +0 -94
- gaia/eval/webapp/node_modules/call-bound/index.js +0 -19
- gaia/eval/webapp/node_modules/call-bound/package.json +0 -99
- gaia/eval/webapp/node_modules/call-bound/test/index.js +0 -61
- gaia/eval/webapp/node_modules/call-bound/tsconfig.json +0 -10
- gaia/eval/webapp/node_modules/content-disposition/HISTORY.md +0 -60
- gaia/eval/webapp/node_modules/content-disposition/LICENSE +0 -22
- gaia/eval/webapp/node_modules/content-disposition/README.md +0 -142
- gaia/eval/webapp/node_modules/content-disposition/index.js +0 -458
- gaia/eval/webapp/node_modules/content-disposition/package.json +0 -44
- gaia/eval/webapp/node_modules/content-type/HISTORY.md +0 -29
- gaia/eval/webapp/node_modules/content-type/LICENSE +0 -22
- gaia/eval/webapp/node_modules/content-type/README.md +0 -94
- gaia/eval/webapp/node_modules/content-type/index.js +0 -225
- gaia/eval/webapp/node_modules/content-type/package.json +0 -42
- gaia/eval/webapp/node_modules/cookie/LICENSE +0 -24
- gaia/eval/webapp/node_modules/cookie/README.md +0 -317
- gaia/eval/webapp/node_modules/cookie/SECURITY.md +0 -25
- gaia/eval/webapp/node_modules/cookie/index.js +0 -334
- gaia/eval/webapp/node_modules/cookie/package.json +0 -44
- gaia/eval/webapp/node_modules/cookie-signature/.npmignore +0 -4
- gaia/eval/webapp/node_modules/cookie-signature/History.md +0 -38
- gaia/eval/webapp/node_modules/cookie-signature/Readme.md +0 -42
- gaia/eval/webapp/node_modules/cookie-signature/index.js +0 -51
- gaia/eval/webapp/node_modules/cookie-signature/package.json +0 -18
- gaia/eval/webapp/node_modules/debug/.coveralls.yml +0 -1
- gaia/eval/webapp/node_modules/debug/.eslintrc +0 -11
- gaia/eval/webapp/node_modules/debug/.npmignore +0 -9
- gaia/eval/webapp/node_modules/debug/.travis.yml +0 -14
- gaia/eval/webapp/node_modules/debug/CHANGELOG.md +0 -362
- gaia/eval/webapp/node_modules/debug/LICENSE +0 -19
- gaia/eval/webapp/node_modules/debug/Makefile +0 -50
- gaia/eval/webapp/node_modules/debug/README.md +0 -312
- gaia/eval/webapp/node_modules/debug/component.json +0 -19
- gaia/eval/webapp/node_modules/debug/karma.conf.js +0 -70
- gaia/eval/webapp/node_modules/debug/node.js +0 -1
- gaia/eval/webapp/node_modules/debug/package.json +0 -49
- gaia/eval/webapp/node_modules/debug/src/browser.js +0 -185
- gaia/eval/webapp/node_modules/debug/src/debug.js +0 -202
- gaia/eval/webapp/node_modules/debug/src/index.js +0 -10
- gaia/eval/webapp/node_modules/debug/src/inspector-log.js +0 -15
- gaia/eval/webapp/node_modules/debug/src/node.js +0 -248
- gaia/eval/webapp/node_modules/depd/History.md +0 -103
- gaia/eval/webapp/node_modules/depd/LICENSE +0 -22
- gaia/eval/webapp/node_modules/depd/Readme.md +0 -280
- gaia/eval/webapp/node_modules/depd/index.js +0 -538
- gaia/eval/webapp/node_modules/depd/lib/browser/index.js +0 -77
- gaia/eval/webapp/node_modules/depd/package.json +0 -45
- gaia/eval/webapp/node_modules/destroy/LICENSE +0 -23
- gaia/eval/webapp/node_modules/destroy/README.md +0 -63
- gaia/eval/webapp/node_modules/destroy/index.js +0 -209
- gaia/eval/webapp/node_modules/destroy/package.json +0 -48
- gaia/eval/webapp/node_modules/dunder-proto/.eslintrc +0 -5
- gaia/eval/webapp/node_modules/dunder-proto/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/dunder-proto/.nycrc +0 -13
- gaia/eval/webapp/node_modules/dunder-proto/CHANGELOG.md +0 -24
- gaia/eval/webapp/node_modules/dunder-proto/LICENSE +0 -21
- gaia/eval/webapp/node_modules/dunder-proto/README.md +0 -54
- gaia/eval/webapp/node_modules/dunder-proto/get.d.ts +0 -5
- gaia/eval/webapp/node_modules/dunder-proto/get.js +0 -30
- gaia/eval/webapp/node_modules/dunder-proto/package.json +0 -76
- gaia/eval/webapp/node_modules/dunder-proto/set.d.ts +0 -5
- gaia/eval/webapp/node_modules/dunder-proto/set.js +0 -35
- gaia/eval/webapp/node_modules/dunder-proto/test/get.js +0 -34
- gaia/eval/webapp/node_modules/dunder-proto/test/index.js +0 -4
- gaia/eval/webapp/node_modules/dunder-proto/test/set.js +0 -50
- gaia/eval/webapp/node_modules/dunder-proto/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/ee-first/LICENSE +0 -22
- gaia/eval/webapp/node_modules/ee-first/README.md +0 -80
- gaia/eval/webapp/node_modules/ee-first/index.js +0 -95
- gaia/eval/webapp/node_modules/ee-first/package.json +0 -29
- gaia/eval/webapp/node_modules/encodeurl/LICENSE +0 -22
- gaia/eval/webapp/node_modules/encodeurl/README.md +0 -109
- gaia/eval/webapp/node_modules/encodeurl/index.js +0 -60
- gaia/eval/webapp/node_modules/encodeurl/package.json +0 -40
- gaia/eval/webapp/node_modules/es-define-property/.eslintrc +0 -13
- gaia/eval/webapp/node_modules/es-define-property/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/es-define-property/.nycrc +0 -9
- gaia/eval/webapp/node_modules/es-define-property/CHANGELOG.md +0 -29
- gaia/eval/webapp/node_modules/es-define-property/LICENSE +0 -21
- gaia/eval/webapp/node_modules/es-define-property/README.md +0 -49
- gaia/eval/webapp/node_modules/es-define-property/index.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-define-property/index.js +0 -14
- gaia/eval/webapp/node_modules/es-define-property/package.json +0 -81
- gaia/eval/webapp/node_modules/es-define-property/test/index.js +0 -56
- gaia/eval/webapp/node_modules/es-define-property/tsconfig.json +0 -10
- gaia/eval/webapp/node_modules/es-errors/.eslintrc +0 -5
- gaia/eval/webapp/node_modules/es-errors/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/es-errors/CHANGELOG.md +0 -40
- gaia/eval/webapp/node_modules/es-errors/LICENSE +0 -21
- gaia/eval/webapp/node_modules/es-errors/README.md +0 -55
- gaia/eval/webapp/node_modules/es-errors/eval.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/eval.js +0 -4
- gaia/eval/webapp/node_modules/es-errors/index.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/index.js +0 -4
- gaia/eval/webapp/node_modules/es-errors/package.json +0 -80
- gaia/eval/webapp/node_modules/es-errors/range.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/range.js +0 -4
- gaia/eval/webapp/node_modules/es-errors/ref.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/ref.js +0 -4
- gaia/eval/webapp/node_modules/es-errors/syntax.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/syntax.js +0 -4
- gaia/eval/webapp/node_modules/es-errors/test/index.js +0 -19
- gaia/eval/webapp/node_modules/es-errors/tsconfig.json +0 -49
- gaia/eval/webapp/node_modules/es-errors/type.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/type.js +0 -4
- gaia/eval/webapp/node_modules/es-errors/uri.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-errors/uri.js +0 -4
- gaia/eval/webapp/node_modules/es-object-atoms/.eslintrc +0 -16
- gaia/eval/webapp/node_modules/es-object-atoms/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/es-object-atoms/CHANGELOG.md +0 -37
- gaia/eval/webapp/node_modules/es-object-atoms/LICENSE +0 -21
- gaia/eval/webapp/node_modules/es-object-atoms/README.md +0 -63
- gaia/eval/webapp/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-object-atoms/RequireObjectCoercible.js +0 -11
- gaia/eval/webapp/node_modules/es-object-atoms/ToObject.d.ts +0 -7
- gaia/eval/webapp/node_modules/es-object-atoms/ToObject.js +0 -10
- gaia/eval/webapp/node_modules/es-object-atoms/index.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-object-atoms/index.js +0 -4
- gaia/eval/webapp/node_modules/es-object-atoms/isObject.d.ts +0 -3
- gaia/eval/webapp/node_modules/es-object-atoms/isObject.js +0 -6
- gaia/eval/webapp/node_modules/es-object-atoms/package.json +0 -80
- gaia/eval/webapp/node_modules/es-object-atoms/test/index.js +0 -38
- gaia/eval/webapp/node_modules/es-object-atoms/tsconfig.json +0 -6
- gaia/eval/webapp/node_modules/escape-html/LICENSE +0 -24
- gaia/eval/webapp/node_modules/escape-html/Readme.md +0 -43
- gaia/eval/webapp/node_modules/escape-html/index.js +0 -78
- gaia/eval/webapp/node_modules/escape-html/package.json +0 -24
- gaia/eval/webapp/node_modules/etag/HISTORY.md +0 -83
- gaia/eval/webapp/node_modules/etag/LICENSE +0 -22
- gaia/eval/webapp/node_modules/etag/README.md +0 -159
- gaia/eval/webapp/node_modules/etag/index.js +0 -131
- gaia/eval/webapp/node_modules/etag/package.json +0 -47
- gaia/eval/webapp/node_modules/express/History.md +0 -3656
- gaia/eval/webapp/node_modules/express/LICENSE +0 -24
- gaia/eval/webapp/node_modules/express/Readme.md +0 -260
- gaia/eval/webapp/node_modules/express/index.js +0 -11
- gaia/eval/webapp/node_modules/express/lib/application.js +0 -661
- gaia/eval/webapp/node_modules/express/lib/express.js +0 -116
- gaia/eval/webapp/node_modules/express/lib/middleware/init.js +0 -43
- gaia/eval/webapp/node_modules/express/lib/middleware/query.js +0 -47
- gaia/eval/webapp/node_modules/express/lib/request.js +0 -525
- gaia/eval/webapp/node_modules/express/lib/response.js +0 -1179
- gaia/eval/webapp/node_modules/express/lib/router/index.js +0 -673
- gaia/eval/webapp/node_modules/express/lib/router/layer.js +0 -181
- gaia/eval/webapp/node_modules/express/lib/router/route.js +0 -230
- gaia/eval/webapp/node_modules/express/lib/utils.js +0 -303
- gaia/eval/webapp/node_modules/express/lib/view.js +0 -182
- gaia/eval/webapp/node_modules/express/package.json +0 -102
- gaia/eval/webapp/node_modules/finalhandler/HISTORY.md +0 -210
- gaia/eval/webapp/node_modules/finalhandler/LICENSE +0 -22
- gaia/eval/webapp/node_modules/finalhandler/README.md +0 -147
- gaia/eval/webapp/node_modules/finalhandler/SECURITY.md +0 -25
- gaia/eval/webapp/node_modules/finalhandler/index.js +0 -341
- gaia/eval/webapp/node_modules/finalhandler/package.json +0 -47
- gaia/eval/webapp/node_modules/forwarded/HISTORY.md +0 -21
- gaia/eval/webapp/node_modules/forwarded/LICENSE +0 -22
- gaia/eval/webapp/node_modules/forwarded/README.md +0 -57
- gaia/eval/webapp/node_modules/forwarded/index.js +0 -90
- gaia/eval/webapp/node_modules/forwarded/package.json +0 -45
- gaia/eval/webapp/node_modules/fresh/HISTORY.md +0 -70
- gaia/eval/webapp/node_modules/fresh/LICENSE +0 -23
- gaia/eval/webapp/node_modules/fresh/README.md +0 -119
- gaia/eval/webapp/node_modules/fresh/index.js +0 -137
- gaia/eval/webapp/node_modules/fresh/package.json +0 -46
- gaia/eval/webapp/node_modules/fs/README.md +0 -9
- gaia/eval/webapp/node_modules/fs/package.json +0 -20
- gaia/eval/webapp/node_modules/function-bind/.eslintrc +0 -21
- gaia/eval/webapp/node_modules/function-bind/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/function-bind/.github/SECURITY.md +0 -3
- gaia/eval/webapp/node_modules/function-bind/.nycrc +0 -13
- gaia/eval/webapp/node_modules/function-bind/CHANGELOG.md +0 -136
- gaia/eval/webapp/node_modules/function-bind/LICENSE +0 -20
- gaia/eval/webapp/node_modules/function-bind/README.md +0 -46
- gaia/eval/webapp/node_modules/function-bind/implementation.js +0 -84
- gaia/eval/webapp/node_modules/function-bind/index.js +0 -5
- gaia/eval/webapp/node_modules/function-bind/package.json +0 -87
- gaia/eval/webapp/node_modules/function-bind/test/.eslintrc +0 -9
- gaia/eval/webapp/node_modules/function-bind/test/index.js +0 -252
- gaia/eval/webapp/node_modules/get-intrinsic/.eslintrc +0 -42
- gaia/eval/webapp/node_modules/get-intrinsic/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/get-intrinsic/.nycrc +0 -9
- gaia/eval/webapp/node_modules/get-intrinsic/CHANGELOG.md +0 -186
- gaia/eval/webapp/node_modules/get-intrinsic/LICENSE +0 -21
- gaia/eval/webapp/node_modules/get-intrinsic/README.md +0 -71
- gaia/eval/webapp/node_modules/get-intrinsic/index.js +0 -378
- gaia/eval/webapp/node_modules/get-intrinsic/package.json +0 -97
- gaia/eval/webapp/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
- gaia/eval/webapp/node_modules/get-proto/.eslintrc +0 -10
- gaia/eval/webapp/node_modules/get-proto/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/get-proto/.nycrc +0 -9
- gaia/eval/webapp/node_modules/get-proto/CHANGELOG.md +0 -21
- gaia/eval/webapp/node_modules/get-proto/LICENSE +0 -21
- gaia/eval/webapp/node_modules/get-proto/Object.getPrototypeOf.d.ts +0 -5
- gaia/eval/webapp/node_modules/get-proto/Object.getPrototypeOf.js +0 -6
- gaia/eval/webapp/node_modules/get-proto/README.md +0 -50
- gaia/eval/webapp/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +0 -3
- gaia/eval/webapp/node_modules/get-proto/Reflect.getPrototypeOf.js +0 -4
- gaia/eval/webapp/node_modules/get-proto/index.d.ts +0 -5
- gaia/eval/webapp/node_modules/get-proto/index.js +0 -27
- gaia/eval/webapp/node_modules/get-proto/package.json +0 -81
- gaia/eval/webapp/node_modules/get-proto/test/index.js +0 -68
- gaia/eval/webapp/node_modules/get-proto/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/gopd/.eslintrc +0 -16
- gaia/eval/webapp/node_modules/gopd/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/gopd/CHANGELOG.md +0 -45
- gaia/eval/webapp/node_modules/gopd/LICENSE +0 -21
- gaia/eval/webapp/node_modules/gopd/README.md +0 -40
- gaia/eval/webapp/node_modules/gopd/gOPD.d.ts +0 -1
- gaia/eval/webapp/node_modules/gopd/gOPD.js +0 -4
- gaia/eval/webapp/node_modules/gopd/index.d.ts +0 -5
- gaia/eval/webapp/node_modules/gopd/index.js +0 -15
- gaia/eval/webapp/node_modules/gopd/package.json +0 -77
- gaia/eval/webapp/node_modules/gopd/test/index.js +0 -36
- gaia/eval/webapp/node_modules/gopd/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/has-symbols/.eslintrc +0 -11
- gaia/eval/webapp/node_modules/has-symbols/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/has-symbols/.nycrc +0 -9
- gaia/eval/webapp/node_modules/has-symbols/CHANGELOG.md +0 -91
- gaia/eval/webapp/node_modules/has-symbols/LICENSE +0 -21
- gaia/eval/webapp/node_modules/has-symbols/README.md +0 -46
- gaia/eval/webapp/node_modules/has-symbols/index.d.ts +0 -3
- gaia/eval/webapp/node_modules/has-symbols/index.js +0 -14
- gaia/eval/webapp/node_modules/has-symbols/package.json +0 -111
- gaia/eval/webapp/node_modules/has-symbols/shams.d.ts +0 -3
- gaia/eval/webapp/node_modules/has-symbols/shams.js +0 -45
- gaia/eval/webapp/node_modules/has-symbols/test/index.js +0 -22
- gaia/eval/webapp/node_modules/has-symbols/test/shams/core-js.js +0 -29
- gaia/eval/webapp/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
- gaia/eval/webapp/node_modules/has-symbols/test/tests.js +0 -58
- gaia/eval/webapp/node_modules/has-symbols/tsconfig.json +0 -10
- gaia/eval/webapp/node_modules/hasown/.eslintrc +0 -5
- gaia/eval/webapp/node_modules/hasown/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/hasown/.nycrc +0 -13
- gaia/eval/webapp/node_modules/hasown/CHANGELOG.md +0 -40
- gaia/eval/webapp/node_modules/hasown/LICENSE +0 -21
- gaia/eval/webapp/node_modules/hasown/README.md +0 -40
- gaia/eval/webapp/node_modules/hasown/index.d.ts +0 -3
- gaia/eval/webapp/node_modules/hasown/index.js +0 -8
- gaia/eval/webapp/node_modules/hasown/package.json +0 -92
- gaia/eval/webapp/node_modules/hasown/tsconfig.json +0 -6
- gaia/eval/webapp/node_modules/http-errors/HISTORY.md +0 -180
- gaia/eval/webapp/node_modules/http-errors/LICENSE +0 -23
- gaia/eval/webapp/node_modules/http-errors/README.md +0 -169
- gaia/eval/webapp/node_modules/http-errors/index.js +0 -289
- gaia/eval/webapp/node_modules/http-errors/package.json +0 -50
- gaia/eval/webapp/node_modules/iconv-lite/Changelog.md +0 -162
- gaia/eval/webapp/node_modules/iconv-lite/LICENSE +0 -21
- gaia/eval/webapp/node_modules/iconv-lite/README.md +0 -156
- gaia/eval/webapp/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -555
- gaia/eval/webapp/node_modules/iconv-lite/encodings/dbcs-data.js +0 -176
- gaia/eval/webapp/node_modules/iconv-lite/encodings/index.js +0 -22
- gaia/eval/webapp/node_modules/iconv-lite/encodings/internal.js +0 -188
- gaia/eval/webapp/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
- gaia/eval/webapp/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- gaia/eval/webapp/node_modules/iconv-lite/encodings/sbcs-data.js +0 -174
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -55
- gaia/eval/webapp/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- gaia/eval/webapp/node_modules/iconv-lite/encodings/utf16.js +0 -177
- gaia/eval/webapp/node_modules/iconv-lite/encodings/utf7.js +0 -290
- gaia/eval/webapp/node_modules/iconv-lite/lib/bom-handling.js +0 -52
- gaia/eval/webapp/node_modules/iconv-lite/lib/extend-node.js +0 -217
- gaia/eval/webapp/node_modules/iconv-lite/lib/index.d.ts +0 -24
- gaia/eval/webapp/node_modules/iconv-lite/lib/index.js +0 -153
- gaia/eval/webapp/node_modules/iconv-lite/lib/streams.js +0 -121
- gaia/eval/webapp/node_modules/iconv-lite/package.json +0 -46
- gaia/eval/webapp/node_modules/inherits/LICENSE +0 -16
- gaia/eval/webapp/node_modules/inherits/README.md +0 -42
- gaia/eval/webapp/node_modules/inherits/inherits.js +0 -9
- gaia/eval/webapp/node_modules/inherits/inherits_browser.js +0 -27
- gaia/eval/webapp/node_modules/inherits/package.json +0 -29
- gaia/eval/webapp/node_modules/ipaddr.js/LICENSE +0 -19
- gaia/eval/webapp/node_modules/ipaddr.js/README.md +0 -233
- gaia/eval/webapp/node_modules/ipaddr.js/ipaddr.min.js +0 -1
- gaia/eval/webapp/node_modules/ipaddr.js/lib/ipaddr.js +0 -673
- gaia/eval/webapp/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +0 -68
- gaia/eval/webapp/node_modules/ipaddr.js/package.json +0 -35
- gaia/eval/webapp/node_modules/math-intrinsics/.eslintrc +0 -16
- gaia/eval/webapp/node_modules/math-intrinsics/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/math-intrinsics/CHANGELOG.md +0 -24
- gaia/eval/webapp/node_modules/math-intrinsics/LICENSE +0 -21
- gaia/eval/webapp/node_modules/math-intrinsics/README.md +0 -50
- gaia/eval/webapp/node_modules/math-intrinsics/abs.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/abs.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/constants/maxArrayLength.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/constants/maxSafeInteger.js +0 -5
- gaia/eval/webapp/node_modules/math-intrinsics/constants/maxValue.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/constants/maxValue.js +0 -5
- gaia/eval/webapp/node_modules/math-intrinsics/floor.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/floor.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/isFinite.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/isFinite.js +0 -12
- gaia/eval/webapp/node_modules/math-intrinsics/isInteger.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/isInteger.js +0 -16
- gaia/eval/webapp/node_modules/math-intrinsics/isNaN.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/isNaN.js +0 -6
- gaia/eval/webapp/node_modules/math-intrinsics/isNegativeZero.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/isNegativeZero.js +0 -6
- gaia/eval/webapp/node_modules/math-intrinsics/max.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/max.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/min.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/min.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/mod.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/mod.js +0 -9
- gaia/eval/webapp/node_modules/math-intrinsics/package.json +0 -86
- gaia/eval/webapp/node_modules/math-intrinsics/pow.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/pow.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/round.d.ts +0 -1
- gaia/eval/webapp/node_modules/math-intrinsics/round.js +0 -4
- gaia/eval/webapp/node_modules/math-intrinsics/sign.d.ts +0 -3
- gaia/eval/webapp/node_modules/math-intrinsics/sign.js +0 -11
- gaia/eval/webapp/node_modules/math-intrinsics/test/index.js +0 -192
- gaia/eval/webapp/node_modules/math-intrinsics/tsconfig.json +0 -3
- gaia/eval/webapp/node_modules/media-typer/HISTORY.md +0 -22
- gaia/eval/webapp/node_modules/media-typer/LICENSE +0 -22
- gaia/eval/webapp/node_modules/media-typer/README.md +0 -81
- gaia/eval/webapp/node_modules/media-typer/index.js +0 -270
- gaia/eval/webapp/node_modules/media-typer/package.json +0 -26
- gaia/eval/webapp/node_modules/merge-descriptors/HISTORY.md +0 -21
- gaia/eval/webapp/node_modules/merge-descriptors/LICENSE +0 -23
- gaia/eval/webapp/node_modules/merge-descriptors/README.md +0 -49
- gaia/eval/webapp/node_modules/merge-descriptors/index.js +0 -60
- gaia/eval/webapp/node_modules/merge-descriptors/package.json +0 -39
- gaia/eval/webapp/node_modules/methods/HISTORY.md +0 -29
- gaia/eval/webapp/node_modules/methods/LICENSE +0 -24
- gaia/eval/webapp/node_modules/methods/README.md +0 -51
- gaia/eval/webapp/node_modules/methods/index.js +0 -69
- gaia/eval/webapp/node_modules/methods/package.json +0 -36
- gaia/eval/webapp/node_modules/mime/.npmignore +0 -0
- gaia/eval/webapp/node_modules/mime/CHANGELOG.md +0 -164
- gaia/eval/webapp/node_modules/mime/LICENSE +0 -21
- gaia/eval/webapp/node_modules/mime/README.md +0 -90
- gaia/eval/webapp/node_modules/mime/cli.js +0 -8
- gaia/eval/webapp/node_modules/mime/mime.js +0 -108
- gaia/eval/webapp/node_modules/mime/package.json +0 -44
- gaia/eval/webapp/node_modules/mime/src/build.js +0 -53
- gaia/eval/webapp/node_modules/mime/src/test.js +0 -60
- gaia/eval/webapp/node_modules/mime/types.json +0 -1
- gaia/eval/webapp/node_modules/mime-db/HISTORY.md +0 -507
- gaia/eval/webapp/node_modules/mime-db/LICENSE +0 -23
- gaia/eval/webapp/node_modules/mime-db/README.md +0 -100
- gaia/eval/webapp/node_modules/mime-db/db.json +0 -8519
- gaia/eval/webapp/node_modules/mime-db/index.js +0 -12
- gaia/eval/webapp/node_modules/mime-db/package.json +0 -60
- gaia/eval/webapp/node_modules/mime-types/HISTORY.md +0 -397
- gaia/eval/webapp/node_modules/mime-types/LICENSE +0 -23
- gaia/eval/webapp/node_modules/mime-types/README.md +0 -113
- gaia/eval/webapp/node_modules/mime-types/index.js +0 -188
- gaia/eval/webapp/node_modules/mime-types/package.json +0 -44
- gaia/eval/webapp/node_modules/ms/index.js +0 -152
- gaia/eval/webapp/node_modules/ms/license.md +0 -21
- gaia/eval/webapp/node_modules/ms/package.json +0 -37
- gaia/eval/webapp/node_modules/ms/readme.md +0 -51
- gaia/eval/webapp/node_modules/negotiator/HISTORY.md +0 -108
- gaia/eval/webapp/node_modules/negotiator/LICENSE +0 -24
- gaia/eval/webapp/node_modules/negotiator/README.md +0 -203
- gaia/eval/webapp/node_modules/negotiator/index.js +0 -82
- gaia/eval/webapp/node_modules/negotiator/lib/charset.js +0 -169
- gaia/eval/webapp/node_modules/negotiator/lib/encoding.js +0 -184
- gaia/eval/webapp/node_modules/negotiator/lib/language.js +0 -179
- gaia/eval/webapp/node_modules/negotiator/lib/mediaType.js +0 -294
- gaia/eval/webapp/node_modules/negotiator/package.json +0 -42
- gaia/eval/webapp/node_modules/object-inspect/.eslintrc +0 -53
- gaia/eval/webapp/node_modules/object-inspect/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/object-inspect/.nycrc +0 -13
- gaia/eval/webapp/node_modules/object-inspect/CHANGELOG.md +0 -424
- gaia/eval/webapp/node_modules/object-inspect/LICENSE +0 -21
- gaia/eval/webapp/node_modules/object-inspect/example/all.js +0 -23
- gaia/eval/webapp/node_modules/object-inspect/example/circular.js +0 -6
- gaia/eval/webapp/node_modules/object-inspect/example/fn.js +0 -5
- gaia/eval/webapp/node_modules/object-inspect/example/inspect.js +0 -10
- gaia/eval/webapp/node_modules/object-inspect/index.js +0 -544
- gaia/eval/webapp/node_modules/object-inspect/package-support.json +0 -20
- gaia/eval/webapp/node_modules/object-inspect/package.json +0 -105
- gaia/eval/webapp/node_modules/object-inspect/readme.markdown +0 -84
- gaia/eval/webapp/node_modules/object-inspect/test/bigint.js +0 -58
- gaia/eval/webapp/node_modules/object-inspect/test/browser/dom.js +0 -15
- gaia/eval/webapp/node_modules/object-inspect/test/circular.js +0 -16
- gaia/eval/webapp/node_modules/object-inspect/test/deep.js +0 -12
- gaia/eval/webapp/node_modules/object-inspect/test/element.js +0 -53
- gaia/eval/webapp/node_modules/object-inspect/test/err.js +0 -48
- gaia/eval/webapp/node_modules/object-inspect/test/fakes.js +0 -29
- gaia/eval/webapp/node_modules/object-inspect/test/fn.js +0 -76
- gaia/eval/webapp/node_modules/object-inspect/test/global.js +0 -17
- gaia/eval/webapp/node_modules/object-inspect/test/has.js +0 -15
- gaia/eval/webapp/node_modules/object-inspect/test/holes.js +0 -15
- gaia/eval/webapp/node_modules/object-inspect/test/indent-option.js +0 -271
- gaia/eval/webapp/node_modules/object-inspect/test/inspect.js +0 -139
- gaia/eval/webapp/node_modules/object-inspect/test/lowbyte.js +0 -12
- gaia/eval/webapp/node_modules/object-inspect/test/number.js +0 -58
- gaia/eval/webapp/node_modules/object-inspect/test/quoteStyle.js +0 -26
- gaia/eval/webapp/node_modules/object-inspect/test/toStringTag.js +0 -40
- gaia/eval/webapp/node_modules/object-inspect/test/undef.js +0 -12
- gaia/eval/webapp/node_modules/object-inspect/test/values.js +0 -261
- gaia/eval/webapp/node_modules/object-inspect/test-core-js.js +0 -26
- gaia/eval/webapp/node_modules/object-inspect/util.inspect.js +0 -1
- gaia/eval/webapp/node_modules/on-finished/HISTORY.md +0 -98
- gaia/eval/webapp/node_modules/on-finished/LICENSE +0 -23
- gaia/eval/webapp/node_modules/on-finished/README.md +0 -162
- gaia/eval/webapp/node_modules/on-finished/index.js +0 -234
- gaia/eval/webapp/node_modules/on-finished/package.json +0 -39
- gaia/eval/webapp/node_modules/parseurl/HISTORY.md +0 -58
- gaia/eval/webapp/node_modules/parseurl/LICENSE +0 -24
- gaia/eval/webapp/node_modules/parseurl/README.md +0 -133
- gaia/eval/webapp/node_modules/parseurl/index.js +0 -158
- gaia/eval/webapp/node_modules/parseurl/package.json +0 -40
- gaia/eval/webapp/node_modules/path/.npmignore +0 -1
- gaia/eval/webapp/node_modules/path/LICENSE +0 -18
- gaia/eval/webapp/node_modules/path/README.md +0 -15
- gaia/eval/webapp/node_modules/path/package.json +0 -24
- gaia/eval/webapp/node_modules/path/path.js +0 -628
- gaia/eval/webapp/node_modules/path-to-regexp/LICENSE +0 -21
- gaia/eval/webapp/node_modules/path-to-regexp/Readme.md +0 -35
- gaia/eval/webapp/node_modules/path-to-regexp/index.js +0 -156
- gaia/eval/webapp/node_modules/path-to-regexp/package.json +0 -30
- gaia/eval/webapp/node_modules/process/.eslintrc +0 -21
- gaia/eval/webapp/node_modules/process/LICENSE +0 -22
- gaia/eval/webapp/node_modules/process/README.md +0 -26
- gaia/eval/webapp/node_modules/process/browser.js +0 -184
- gaia/eval/webapp/node_modules/process/index.js +0 -2
- gaia/eval/webapp/node_modules/process/package.json +0 -27
- gaia/eval/webapp/node_modules/process/test.js +0 -199
- gaia/eval/webapp/node_modules/proxy-addr/HISTORY.md +0 -161
- gaia/eval/webapp/node_modules/proxy-addr/LICENSE +0 -22
- gaia/eval/webapp/node_modules/proxy-addr/README.md +0 -139
- gaia/eval/webapp/node_modules/proxy-addr/index.js +0 -327
- gaia/eval/webapp/node_modules/proxy-addr/package.json +0 -47
- gaia/eval/webapp/node_modules/qs/.editorconfig +0 -46
- gaia/eval/webapp/node_modules/qs/.eslintrc +0 -38
- gaia/eval/webapp/node_modules/qs/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/qs/.nycrc +0 -13
- gaia/eval/webapp/node_modules/qs/CHANGELOG.md +0 -600
- gaia/eval/webapp/node_modules/qs/LICENSE.md +0 -29
- gaia/eval/webapp/node_modules/qs/README.md +0 -709
- gaia/eval/webapp/node_modules/qs/dist/qs.js +0 -90
- gaia/eval/webapp/node_modules/qs/lib/formats.js +0 -23
- gaia/eval/webapp/node_modules/qs/lib/index.js +0 -11
- gaia/eval/webapp/node_modules/qs/lib/parse.js +0 -296
- gaia/eval/webapp/node_modules/qs/lib/stringify.js +0 -351
- gaia/eval/webapp/node_modules/qs/lib/utils.js +0 -265
- gaia/eval/webapp/node_modules/qs/package.json +0 -91
- gaia/eval/webapp/node_modules/qs/test/empty-keys-cases.js +0 -267
- gaia/eval/webapp/node_modules/qs/test/parse.js +0 -1170
- gaia/eval/webapp/node_modules/qs/test/stringify.js +0 -1298
- gaia/eval/webapp/node_modules/qs/test/utils.js +0 -136
- gaia/eval/webapp/node_modules/range-parser/HISTORY.md +0 -56
- gaia/eval/webapp/node_modules/range-parser/LICENSE +0 -23
- gaia/eval/webapp/node_modules/range-parser/README.md +0 -84
- gaia/eval/webapp/node_modules/range-parser/index.js +0 -162
- gaia/eval/webapp/node_modules/range-parser/package.json +0 -44
- gaia/eval/webapp/node_modules/raw-body/HISTORY.md +0 -308
- gaia/eval/webapp/node_modules/raw-body/LICENSE +0 -22
- gaia/eval/webapp/node_modules/raw-body/README.md +0 -223
- gaia/eval/webapp/node_modules/raw-body/SECURITY.md +0 -24
- gaia/eval/webapp/node_modules/raw-body/index.d.ts +0 -87
- gaia/eval/webapp/node_modules/raw-body/index.js +0 -336
- gaia/eval/webapp/node_modules/raw-body/package.json +0 -49
- gaia/eval/webapp/node_modules/safe-buffer/LICENSE +0 -21
- gaia/eval/webapp/node_modules/safe-buffer/README.md +0 -584
- gaia/eval/webapp/node_modules/safe-buffer/index.d.ts +0 -187
- gaia/eval/webapp/node_modules/safe-buffer/index.js +0 -65
- gaia/eval/webapp/node_modules/safe-buffer/package.json +0 -51
- gaia/eval/webapp/node_modules/safer-buffer/LICENSE +0 -21
- gaia/eval/webapp/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- gaia/eval/webapp/node_modules/safer-buffer/Readme.md +0 -156
- gaia/eval/webapp/node_modules/safer-buffer/dangerous.js +0 -58
- gaia/eval/webapp/node_modules/safer-buffer/package.json +0 -34
- gaia/eval/webapp/node_modules/safer-buffer/safer.js +0 -77
- gaia/eval/webapp/node_modules/safer-buffer/tests.js +0 -406
- gaia/eval/webapp/node_modules/send/HISTORY.md +0 -526
- gaia/eval/webapp/node_modules/send/LICENSE +0 -23
- gaia/eval/webapp/node_modules/send/README.md +0 -327
- gaia/eval/webapp/node_modules/send/SECURITY.md +0 -24
- gaia/eval/webapp/node_modules/send/index.js +0 -1142
- gaia/eval/webapp/node_modules/send/node_modules/encodeurl/HISTORY.md +0 -14
- gaia/eval/webapp/node_modules/send/node_modules/encodeurl/LICENSE +0 -22
- gaia/eval/webapp/node_modules/send/node_modules/encodeurl/README.md +0 -128
- gaia/eval/webapp/node_modules/send/node_modules/encodeurl/index.js +0 -60
- gaia/eval/webapp/node_modules/send/node_modules/encodeurl/package.json +0 -40
- gaia/eval/webapp/node_modules/send/node_modules/ms/index.js +0 -162
- gaia/eval/webapp/node_modules/send/node_modules/ms/license.md +0 -21
- gaia/eval/webapp/node_modules/send/node_modules/ms/package.json +0 -38
- gaia/eval/webapp/node_modules/send/node_modules/ms/readme.md +0 -59
- gaia/eval/webapp/node_modules/send/package.json +0 -62
- gaia/eval/webapp/node_modules/serve-static/HISTORY.md +0 -487
- gaia/eval/webapp/node_modules/serve-static/LICENSE +0 -25
- gaia/eval/webapp/node_modules/serve-static/README.md +0 -257
- gaia/eval/webapp/node_modules/serve-static/index.js +0 -209
- gaia/eval/webapp/node_modules/serve-static/package.json +0 -42
- gaia/eval/webapp/node_modules/setprototypeof/LICENSE +0 -13
- gaia/eval/webapp/node_modules/setprototypeof/README.md +0 -31
- gaia/eval/webapp/node_modules/setprototypeof/index.d.ts +0 -2
- gaia/eval/webapp/node_modules/setprototypeof/index.js +0 -17
- gaia/eval/webapp/node_modules/setprototypeof/package.json +0 -38
- gaia/eval/webapp/node_modules/setprototypeof/test/index.js +0 -24
- gaia/eval/webapp/node_modules/side-channel/.editorconfig +0 -9
- gaia/eval/webapp/node_modules/side-channel/.eslintrc +0 -12
- gaia/eval/webapp/node_modules/side-channel/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/side-channel/.nycrc +0 -13
- gaia/eval/webapp/node_modules/side-channel/CHANGELOG.md +0 -110
- gaia/eval/webapp/node_modules/side-channel/LICENSE +0 -21
- gaia/eval/webapp/node_modules/side-channel/README.md +0 -61
- gaia/eval/webapp/node_modules/side-channel/index.d.ts +0 -14
- gaia/eval/webapp/node_modules/side-channel/index.js +0 -43
- gaia/eval/webapp/node_modules/side-channel/package.json +0 -85
- gaia/eval/webapp/node_modules/side-channel/test/index.js +0 -104
- gaia/eval/webapp/node_modules/side-channel/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/side-channel-list/.editorconfig +0 -9
- gaia/eval/webapp/node_modules/side-channel-list/.eslintrc +0 -11
- gaia/eval/webapp/node_modules/side-channel-list/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/side-channel-list/.nycrc +0 -13
- gaia/eval/webapp/node_modules/side-channel-list/CHANGELOG.md +0 -15
- gaia/eval/webapp/node_modules/side-channel-list/LICENSE +0 -21
- gaia/eval/webapp/node_modules/side-channel-list/README.md +0 -62
- gaia/eval/webapp/node_modules/side-channel-list/index.d.ts +0 -13
- gaia/eval/webapp/node_modules/side-channel-list/index.js +0 -113
- gaia/eval/webapp/node_modules/side-channel-list/list.d.ts +0 -14
- gaia/eval/webapp/node_modules/side-channel-list/package.json +0 -77
- gaia/eval/webapp/node_modules/side-channel-list/test/index.js +0 -104
- gaia/eval/webapp/node_modules/side-channel-list/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/side-channel-map/.editorconfig +0 -9
- gaia/eval/webapp/node_modules/side-channel-map/.eslintrc +0 -11
- gaia/eval/webapp/node_modules/side-channel-map/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/side-channel-map/.nycrc +0 -13
- gaia/eval/webapp/node_modules/side-channel-map/CHANGELOG.md +0 -22
- gaia/eval/webapp/node_modules/side-channel-map/LICENSE +0 -21
- gaia/eval/webapp/node_modules/side-channel-map/README.md +0 -62
- gaia/eval/webapp/node_modules/side-channel-map/index.d.ts +0 -15
- gaia/eval/webapp/node_modules/side-channel-map/index.js +0 -68
- gaia/eval/webapp/node_modules/side-channel-map/package.json +0 -80
- gaia/eval/webapp/node_modules/side-channel-map/test/index.js +0 -114
- gaia/eval/webapp/node_modules/side-channel-map/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/side-channel-weakmap/.editorconfig +0 -9
- gaia/eval/webapp/node_modules/side-channel-weakmap/.eslintrc +0 -12
- gaia/eval/webapp/node_modules/side-channel-weakmap/.github/FUNDING.yml +0 -12
- gaia/eval/webapp/node_modules/side-channel-weakmap/.nycrc +0 -13
- gaia/eval/webapp/node_modules/side-channel-weakmap/CHANGELOG.md +0 -28
- gaia/eval/webapp/node_modules/side-channel-weakmap/LICENSE +0 -21
- gaia/eval/webapp/node_modules/side-channel-weakmap/README.md +0 -62
- gaia/eval/webapp/node_modules/side-channel-weakmap/index.d.ts +0 -15
- gaia/eval/webapp/node_modules/side-channel-weakmap/index.js +0 -84
- gaia/eval/webapp/node_modules/side-channel-weakmap/package.json +0 -87
- gaia/eval/webapp/node_modules/side-channel-weakmap/test/index.js +0 -114
- gaia/eval/webapp/node_modules/side-channel-weakmap/tsconfig.json +0 -9
- gaia/eval/webapp/node_modules/statuses/HISTORY.md +0 -82
- gaia/eval/webapp/node_modules/statuses/LICENSE +0 -23
- gaia/eval/webapp/node_modules/statuses/README.md +0 -136
- gaia/eval/webapp/node_modules/statuses/codes.json +0 -65
- gaia/eval/webapp/node_modules/statuses/index.js +0 -146
- gaia/eval/webapp/node_modules/statuses/package.json +0 -49
- gaia/eval/webapp/node_modules/toidentifier/HISTORY.md +0 -9
- gaia/eval/webapp/node_modules/toidentifier/LICENSE +0 -21
- gaia/eval/webapp/node_modules/toidentifier/README.md +0 -61
- gaia/eval/webapp/node_modules/toidentifier/index.js +0 -32
- gaia/eval/webapp/node_modules/toidentifier/package.json +0 -38
- gaia/eval/webapp/node_modules/type-is/HISTORY.md +0 -259
- gaia/eval/webapp/node_modules/type-is/LICENSE +0 -23
- gaia/eval/webapp/node_modules/type-is/README.md +0 -170
- gaia/eval/webapp/node_modules/type-is/index.js +0 -266
- gaia/eval/webapp/node_modules/type-is/package.json +0 -45
- gaia/eval/webapp/node_modules/unpipe/HISTORY.md +0 -4
- gaia/eval/webapp/node_modules/unpipe/LICENSE +0 -22
- gaia/eval/webapp/node_modules/unpipe/README.md +0 -43
- gaia/eval/webapp/node_modules/unpipe/index.js +0 -69
- gaia/eval/webapp/node_modules/unpipe/package.json +0 -27
- gaia/eval/webapp/node_modules/util/LICENSE +0 -18
- gaia/eval/webapp/node_modules/util/README.md +0 -15
- gaia/eval/webapp/node_modules/util/node_modules/inherits/LICENSE +0 -16
- gaia/eval/webapp/node_modules/util/node_modules/inherits/README.md +0 -42
- gaia/eval/webapp/node_modules/util/node_modules/inherits/inherits.js +0 -7
- gaia/eval/webapp/node_modules/util/node_modules/inherits/inherits_browser.js +0 -23
- gaia/eval/webapp/node_modules/util/node_modules/inherits/package.json +0 -29
- gaia/eval/webapp/node_modules/util/package.json +0 -35
- gaia/eval/webapp/node_modules/util/support/isBuffer.js +0 -3
- gaia/eval/webapp/node_modules/util/support/isBufferBrowser.js +0 -6
- gaia/eval/webapp/node_modules/util/util.js +0 -586
- gaia/eval/webapp/node_modules/utils-merge/.npmignore +0 -9
- gaia/eval/webapp/node_modules/utils-merge/LICENSE +0 -20
- gaia/eval/webapp/node_modules/utils-merge/README.md +0 -34
- gaia/eval/webapp/node_modules/utils-merge/index.js +0 -23
- gaia/eval/webapp/node_modules/utils-merge/package.json +0 -40
- gaia/eval/webapp/node_modules/vary/HISTORY.md +0 -39
- gaia/eval/webapp/node_modules/vary/LICENSE +0 -22
- gaia/eval/webapp/node_modules/vary/README.md +0 -101
- gaia/eval/webapp/node_modules/vary/index.js +0 -149
- gaia/eval/webapp/node_modules/vary/package.json +0 -43
- {amd_gaia-0.14.2.dist-info → amd_gaia-0.14.3.dist-info}/WHEEL +0 -0
- {amd_gaia-0.14.2.dist-info → amd_gaia-0.14.3.dist-info}/licenses/LICENSE.md +0 -0
- {amd_gaia-0.14.2.dist-info → amd_gaia-0.14.3.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: amd-gaia
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.3
|
|
4
4
|
Summary: GAIA is a lightweight agent framework designed for the edge and AI PCs.
|
|
5
5
|
Home-page: https://github.com/amd/gaia
|
|
6
6
|
Author: AMD
|
|
@@ -25,9 +25,11 @@ Requires-Dist: python-dotenv
|
|
|
25
25
|
Requires-Dist: aiohttp
|
|
26
26
|
Requires-Dist: rich
|
|
27
27
|
Requires-Dist: watchdog>=2.1.0
|
|
28
|
+
Requires-Dist: pillow>=9.0.0
|
|
28
29
|
Provides-Extra: api
|
|
29
30
|
Requires-Dist: fastapi>=0.115.0; extra == "api"
|
|
30
31
|
Requires-Dist: uvicorn>=0.32.0; extra == "api"
|
|
32
|
+
Requires-Dist: python-multipart>=0.0.9; extra == "api"
|
|
31
33
|
Provides-Extra: audio
|
|
32
34
|
Requires-Dist: torch<2.4,>=2.0.0; extra == "audio"
|
|
33
35
|
Requires-Dist: torchvision<0.19.0; extra == "audio"
|
|
@@ -73,6 +75,7 @@ Provides-Extra: youtube
|
|
|
73
75
|
Requires-Dist: llama-index-readers-youtube-transcript; extra == "youtube"
|
|
74
76
|
Provides-Extra: rag
|
|
75
77
|
Requires-Dist: pypdf; extra == "rag"
|
|
78
|
+
Requires-Dist: pymupdf>=1.24.0; extra == "rag"
|
|
76
79
|
Requires-Dist: sentence-transformers; extra == "rag"
|
|
77
80
|
Requires-Dist: faiss-cpu>=1.7.0; extra == "rag"
|
|
78
81
|
Provides-Extra: lint
|
|
@@ -95,7 +98,7 @@ Dynamic: requires-dist
|
|
|
95
98
|
Dynamic: requires-python
|
|
96
99
|
Dynamic: summary
|
|
97
100
|
|
|
98
|
-
# <img src="src/gaia/img/gaia.ico" alt="GAIA Logo" width="64" height="64" style="vertical-align: middle;"> GAIA: AI Agent Framework for AMD Ryzen AI
|
|
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
|
|
99
102
|
|
|
100
103
|
[](https://github.com/amd/gaia/tree/main/tests "Check out our build")
|
|
101
104
|
[](https://github.com/amd/gaia/tree/main/tests "Check out our cli tests")
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
amd_gaia-0.14.3.dist-info/licenses/LICENSE.md,sha256=G1X5Kiqq2PwbU4BUcxqrxqo7tE_vlQZ_GC0VWembFi8,1103
|
|
2
|
+
gaia/__init__.py,sha256=S5B1WaF88Xdr4zDLjiWsM5y_z1EQwtDWF7dTt15ClQY,872
|
|
3
|
+
gaia/cli.py,sha256=rKENNxD17kaYpkHFtN7UYpA622ngjcUVEvACqJD2GIo,224956
|
|
4
|
+
gaia/logger.py,sha256=Atu9q2Bz1qKpVuh52L1mP1Cjb5rTauzT68DH4nAdQuM,6749
|
|
5
|
+
gaia/security.py,sha256=zhwkA_w50Hn7dPQlCLo0pftjho0BrbTB0HszAd7fwvM,5989
|
|
6
|
+
gaia/util.py,sha256=ly96jWiAanWrQew1uL_w0DD2Eycp5ZBp-Fze1rOXoNs,1615
|
|
7
|
+
gaia/version.py,sha256=MpEnx5ZnvX1zfwqdawfEEMRIbP3NYleeKaMh1v0hE80,2940
|
|
8
|
+
gaia/agents/__init__.py,sha256=SnPhJ8Rkdoty40Jc9LkO_7JBGwJOdLvrVECt5NIGUMs,490
|
|
9
|
+
gaia/agents/base/__init__.py,sha256=jPPO_kr0_rzMoIbtkN0h8GYWb-BngzT885YULoqaP7o,373
|
|
10
|
+
gaia/agents/base/agent.py,sha256=gwbKajGUbmUYhX56YxGuKTNBoCHnzNhJQX1Wi2HdM7s,98641
|
|
11
|
+
gaia/agents/base/api_agent.py,sha256=LuIsC21rGnuBBXBT25rtGG5zksVOwMHscy3PIfSOHWk,4027
|
|
12
|
+
gaia/agents/base/console.py,sha256=yH_QRAxw33zS2hDjM7VCvqarQWnmOhiQEbWxm-tPyFA,67309
|
|
13
|
+
gaia/agents/base/errors.py,sha256=JIqdGnM6qZM_FIdMBByRifp6PixnLQ5Sv9ZqUEltls0,7248
|
|
14
|
+
gaia/agents/base/mcp_agent.py,sha256=5jM1bF7-VTBLssq-zvmd36xJQ23e0hBO9f0TDQ8Rn6c,2438
|
|
15
|
+
gaia/agents/base/tools.py,sha256=bIp9HsTAZS48T4Vy8vjN-UcTQaxNlWiSq8noG4auWzc,2697
|
|
16
|
+
gaia/agents/blender/agent.py,sha256=mYjo2NlsLyZO_KltB_hKMjdysHOLHAercdGj7y0rJpo,21270
|
|
17
|
+
gaia/agents/blender/agent_simple.py,sha256=JRzRU3fwBV2SHxa2BdNq1ETkGz6qNmA7uXCSFMOudK0,5154
|
|
18
|
+
gaia/agents/blender/app.py,sha256=iTrWkx0tgVKUYxlrWmQVDQWYaXocwFb1KQOOLBB-EiU,7440
|
|
19
|
+
gaia/agents/blender/app_simple.py,sha256=CTi0cESxGfomHIdMFpK1qweG10s_7A10JPgBBYCqAN8,1293
|
|
20
|
+
gaia/agents/blender/core/__init__.py,sha256=0-JY8yoqWBX3uie4RvQ432x3TGZl6FruFo4Jb-bHM2w,415
|
|
21
|
+
gaia/agents/blender/core/materials.py,sha256=C3UBRsHP8ixX_QHSANi_jWgh3yUmAoBUJbBgE87VQN0,17638
|
|
22
|
+
gaia/agents/blender/core/objects.py,sha256=txAZZAlsLWRyN-Ph01EXCnH8pxwrbxZJJmbByoyolno,10646
|
|
23
|
+
gaia/agents/blender/core/rendering.py,sha256=1xl2Lfegee0Lk9PRwbX5i4s5IZ320wcmC82wUV5rp3w,7789
|
|
24
|
+
gaia/agents/blender/core/scene.py,sha256=TF0fw5KT3XzVHgLqy9e7PtatRrcS8utj-L89mw8TofI,7191
|
|
25
|
+
gaia/agents/blender/core/view.py,sha256=WzPpbCE9fl7WzajILJfIpMTnCkxHkKNkvimYA-mLGb0,5124
|
|
26
|
+
gaia/agents/chat/__init__.py,sha256=EdLsNUEdITTpxvtEi_t5o7T6ghvyQ8uCMTDa3zGoGFg,244
|
|
27
|
+
gaia/agents/chat/agent.py,sha256=DCrsVF0NUA__wimVTphxpM25lC9VcpZpeQVwUpmPhbw,34284
|
|
28
|
+
gaia/agents/chat/app.py,sha256=BLE-f0xQQBsPgqWj-gKN37aI_AMvRKxBk14pOX84bO8,48217
|
|
29
|
+
gaia/agents/chat/session.py,sha256=gQiKEyVJIjtzb30lYBojY0JxkEd3BMpl4F_eIXQiE3M,18364
|
|
30
|
+
gaia/agents/chat/tools/__init__.py,sha256=SJvjWGpjxIwu2ByjFsYDaxklFgS7M8BDovKx6ehRCdA,466
|
|
31
|
+
gaia/agents/chat/tools/file_tools.py,sha256=BZGJIoVO8OMhxWqtPAyXVCS8L1PKhUK5kIxBvbeECGA,3859
|
|
32
|
+
gaia/agents/chat/tools/rag_tools.py,sha256=e7sjp7SbsovVuAej-__7P29KQM69g-6v8V6Q4-N5zkU,80508
|
|
33
|
+
gaia/agents/chat/tools/shell_tools.py,sha256=wx8h8AbRpxorWnJ_Wa88MA_DA_kR0Yj1FAgnBeEz7IQ,18665
|
|
34
|
+
gaia/agents/code/__init__.py,sha256=zHxZvmSMCdw-_3_kVZGMzrMPPyKhQCaRtj0KPBDomMw,195
|
|
35
|
+
gaia/agents/code/agent.py,sha256=Uet9oVqKkROgqXA5UJP209rdjMgdumrLmrtU8Zw2zpQ,22543
|
|
36
|
+
gaia/agents/code/app.py,sha256=0NYXfIIiHWY-E1JkEhQjuheSjb8SGoNF-fZVwIkXpnQ,8856
|
|
37
|
+
gaia/agents/code/models.py,sha256=v5uUuNvco3T7WkeGKkRg3V5sjNdw1-xjh9_-RjGNW84,3292
|
|
38
|
+
gaia/agents/code/schema_inference.py,sha256=iuDgXyK3FiwnjXyuJnNSWtiMdH_NT7k0MsgMmlkKEtE,12887
|
|
39
|
+
gaia/agents/code/system_prompt.py,sha256=jG-5ONRc2cIetDQNIpG7I2j7OIAyuF_o9EhXcdOaDZA,1525
|
|
40
|
+
gaia/agents/code/orchestration/__init__.py,sha256=8MnjH_DseoddSVrCxBJ3SB7u89-Hk-b-Y9YFc2_-qbg,689
|
|
41
|
+
gaia/agents/code/orchestration/checklist_executor.py,sha256=6dec_h1aj39rLVoAwN4_Z0ZuVFG3OeTdiQ1bYKvjQCQ,64442
|
|
42
|
+
gaia/agents/code/orchestration/checklist_generator.py,sha256=uKMszGP-thEDMkf05k-yX8-gXavUC9AwspT-Gt89-JA,29181
|
|
43
|
+
gaia/agents/code/orchestration/orchestrator.py,sha256=Ne862JMGczz4pPXCJcGvTKPhLk1DODSwUQrv9t7stIc,33332
|
|
44
|
+
gaia/agents/code/orchestration/project_analyzer.py,sha256=2jcsdEjyQuLMGZRhIc9kLTxoy8eiT7xOiJJNSwkHNJo,12257
|
|
45
|
+
gaia/agents/code/orchestration/template_catalog.py,sha256=5wk9-fQUSdwOAwvYVu_izV1EuWO73hm1rELCkdS0sBU,18339
|
|
46
|
+
gaia/agents/code/orchestration/factories/__init__.py,sha256=jGoEXh8QznE-JEAZ5AETzUnTl-Wcoy1IiSL9nePjT6E,350
|
|
47
|
+
gaia/agents/code/orchestration/factories/base.py,sha256=wVAaqfg7juahCI4JV2VCCkWIgDdvNn_SHsjAyyORVOo,1916
|
|
48
|
+
gaia/agents/code/orchestration/factories/nextjs_factory.py,sha256=Gg23rBlqu605Y6UYAU5RpneorDfE-xxJHBTCEFW0Uu0,3712
|
|
49
|
+
gaia/agents/code/orchestration/factories/python_factory.py,sha256=THQRSdH6fpIxhd-7zEhD1Fj7dbOvOmkbAnHp0vq3bcY,3157
|
|
50
|
+
gaia/agents/code/orchestration/steps/__init__.py,sha256=W3e1Bczz9iUcSAUetSAFhB5WRDgOfmzztnqMfcyjI2M,1659
|
|
51
|
+
gaia/agents/code/orchestration/steps/base.py,sha256=NQaS4pTOtGpipLqvo1PfxyRlaKqZzQCbzJIFhKdiki4,5991
|
|
52
|
+
gaia/agents/code/orchestration/steps/error_handler.py,sha256=2XgHa7PfQMAKtw4HEYJYS10YMN3SrPlJ0vqVqFS_284,11971
|
|
53
|
+
gaia/agents/code/orchestration/steps/nextjs.py,sha256=S8h86hXip_fN9XWqN_MobkfKet_x6tcXjKuN4NCJKSo,31178
|
|
54
|
+
gaia/agents/code/orchestration/steps/python.py,sha256=PQJ_it-eU_kjpoaVwLOhBxCOGSDtl6mEBGrauZ48OG8,10746
|
|
55
|
+
gaia/agents/code/orchestration/workflows/__init__.py,sha256=1jHuo9l36k7GtI_rBYsDFhV8wsjG1WXs3BAoSmZLKS8,423
|
|
56
|
+
gaia/agents/code/orchestration/workflows/base.py,sha256=ZvO-O2rzqrdO58XSayuI-XRy30ld52ynuQmt7s8onM4,2513
|
|
57
|
+
gaia/agents/code/orchestration/workflows/nextjs.py,sha256=8eQBsBtzz22JiFZr9EHgYobEjCPEs6Abdtf9Br5IX1k,6254
|
|
58
|
+
gaia/agents/code/orchestration/workflows/python.py,sha256=AmQ1TmwEOykTT_TDL5Y5UA3ul-eQWjE1rvPy7Qu5w4k,2551
|
|
59
|
+
gaia/agents/code/prompts/__init__.py,sha256=h82MVPwDj3a96hRwBjJ-ge0e8iGWTRyMSIdzZyqOzxw,320
|
|
60
|
+
gaia/agents/code/prompts/base_prompt.py,sha256=c3H7_uTdlkCBQWu0xE37jyUWfqAFR1ASxAFqBbIrc6E,2811
|
|
61
|
+
gaia/agents/code/prompts/code_patterns.py,sha256=_JvI6NaaM31ipqhpi3UPS8BlQtthK0qN5Lhmu2XiHAs,69566
|
|
62
|
+
gaia/agents/code/prompts/nextjs_prompt.py,sha256=FnW9pK__10Xn2br8tPK7sNBbvsz3py0hIXvvunEONec,1376
|
|
63
|
+
gaia/agents/code/prompts/python_prompt.py,sha256=s4XYXOzgMxXGLdBvgBLv3wER1ObwadXw6e4rxst8uv0,5266
|
|
64
|
+
gaia/agents/code/tools/__init__.py,sha256=luM1pb0emSuTfg3tMZUZtFLcDinKmn9a-4nVENWMrMc,1236
|
|
65
|
+
gaia/agents/code/tools/cli_tools.py,sha256=1-DQsRyoxwmTbfgnseSI-S1aT9vtLGjHrT3jVcQDMaE,39814
|
|
66
|
+
gaia/agents/code/tools/code_formatting.py,sha256=-PZHbPpTBoLFTZY4FJ30u8tIsA9EgYyHIumAwEjYkr4,12577
|
|
67
|
+
gaia/agents/code/tools/code_tools.py,sha256=Ygx5V85B57yqy08s8rnpyRcbsOCoAFVlUheRsaNk06c,28202
|
|
68
|
+
gaia/agents/code/tools/error_fixing.py,sha256=owFt1c_FO7QxCsUVVcFdVF0ABB0DlufF9dRfWxhohss,58989
|
|
69
|
+
gaia/agents/code/tools/external_tools.py,sha256=NYhh4pn6K3JL0xA7H6qEAkr4WJp7ugtM_QZSXrQpBE4,7493
|
|
70
|
+
gaia/agents/code/tools/file_io.py,sha256=Yu_FE1fpqepWqUibHKL76TGEF70k6K5shQ7YmS4_mig,33852
|
|
71
|
+
gaia/agents/code/tools/prisma_tools.py,sha256=wv6_tHGDbuTBPB6HxG-O1cZm_C7E4_gFYnYUR0r-Fow,7901
|
|
72
|
+
gaia/agents/code/tools/project_management.py,sha256=9jw3-UCY7GuIwqr84moSe_dCbdl9hS_eIgzK12Gs0k0,46131
|
|
73
|
+
gaia/agents/code/tools/testing.py,sha256=Dby6YsKO-0nV2Ro1BMxrfgrMuJmaQ-1Rjl7-5TtkmKs,13483
|
|
74
|
+
gaia/agents/code/tools/typescript_tools.py,sha256=JOrcv6HVKzGwiQxjST_yezQGjptPkvi4lSoWpvT3dco,4499
|
|
75
|
+
gaia/agents/code/tools/validation_parsing.py,sha256=1d6ktlg_iwrwhclFmaOqRIEqORP9sHDgnF-qC-Vdhvc,17300
|
|
76
|
+
gaia/agents/code/tools/validation_tools.py,sha256=hF0A_fYm_87jiV0Fq7i42vv5zTeUrQRLuRc7sZF9MxE,36355
|
|
77
|
+
gaia/agents/code/tools/web_dev_tools.py,sha256=ikboh4-A9iug1sDqwhq4h2oDAH5Ukg5wHtknR41d7o8,78344
|
|
78
|
+
gaia/agents/code/validators/__init__.py,sha256=gvCXPdksZs703Lkg-3Bs3CoC3k51K9LIUoiZux8koo0,509
|
|
79
|
+
gaia/agents/code/validators/antipattern_checker.py,sha256=4KQtE6yLLxK9tx2M6y8Pz8do5twIUyLWjeIqRcLpqdc,8614
|
|
80
|
+
gaia/agents/code/validators/ast_analyzer.py,sha256=KjZjOFeFWmheO7vScZsCq9m0h62Sdu5O1epOeKWAt9g,6980
|
|
81
|
+
gaia/agents/code/validators/requirements_validator.py,sha256=Ik14nZ8VqmcK9rYlTY_Bmr06ZtWEQ3y_5LcKI44fAxQ,5019
|
|
82
|
+
gaia/agents/code/validators/syntax_validator.py,sha256=nzgm_W54xMQvdC6AjbghAZHRtSeLvv_JxLyQQXbEIT4,5373
|
|
83
|
+
gaia/agents/docker/__init__.py,sha256=d46n5I2Mzv9BhjkZyAEs9sGPzsStd3yPq212gtolddI,219
|
|
84
|
+
gaia/agents/docker/agent.py,sha256=FMO9hsKaydXCKpgkWL95vyCfTt7M-FKKfFPxVRhqxwo,25634
|
|
85
|
+
gaia/agents/emr/__init__.py,sha256=ZF15-3yzG4fSSpc7_avRiCO8trhQn1clxgDdjwXeSn4,265
|
|
86
|
+
gaia/agents/emr/agent.py,sha256=EA56LL_scYq1n-WeaX_fMgFTAGsn0Ht6zK-1uvvbY70,59889
|
|
87
|
+
gaia/agents/emr/cli.py,sha256=7YI1Bb6elV8aynV5P_XQUeeo4FpcWsQ9ScJZj4srzb8,46786
|
|
88
|
+
gaia/agents/emr/constants.py,sha256=IJ0Feh-bK-EDzabQOPkzp_VpH9w11yq9448Cuq_vCxY,14565
|
|
89
|
+
gaia/agents/emr/dashboard/__init__.py,sha256=Na0mWuFe1G16Oyq95aa0-MJTUwRRVG-vAKVS1gfwquA,146
|
|
90
|
+
gaia/agents/emr/dashboard/server.py,sha256=Pm3q0NwNvYF-kPMJYZP7z67VNCV4Aq84oV0cmb8rad0,78979
|
|
91
|
+
gaia/agents/jira/__init__.py,sha256=NrX64RLAB8GjuTTgrm4aWnBfltprzCq91dhIxih81xA,406
|
|
92
|
+
gaia/agents/jira/agent.py,sha256=n5RSdPso_RFdwtROn65OFDuE4nNyHee6Y0-dsUWrnNU,35372
|
|
93
|
+
gaia/agents/jira/jql_templates.py,sha256=WgUGiNoGzRRWwXgewmCpxR2-wcpoGUZu1bVJk5OOgqw,11435
|
|
94
|
+
gaia/agents/routing/__init__.py,sha256=oAD327Rr8yQT43mWq8FcGEzp5WUgFTuWTOIksbuOGb4,246
|
|
95
|
+
gaia/agents/routing/agent.py,sha256=ntC2DEX2AE0sx2H8pDTifiHlkaR6w1Q9sdngqt7SQXA,21581
|
|
96
|
+
gaia/agents/routing/system_prompt.py,sha256=2M32BUWC_nEGBNBCDNTv-EmzwjbxBvg-FrKZ70VQgHM,3736
|
|
97
|
+
gaia/api/__init__.py,sha256=Oe3UOiqzlI64-I9eZSIYFGsYDNmaBqzgsRalPZ9zAlg,664
|
|
98
|
+
gaia/api/agent_registry.py,sha256=NDVJNdFGUI6qqdMVMwhqpEcmAxx2t-fsWlhfAXVWEZw,8235
|
|
99
|
+
gaia/api/app.py,sha256=DFhDXJcX7JyKg3SF00zFmT9Lpqc0zpunLeeSlOpPKUw,10386
|
|
100
|
+
gaia/api/openai_server.py,sha256=c_d10ZbMtCA_i3lz1VXoPrvFzMUQ3k1I3hCgtck7oUc,20219
|
|
101
|
+
gaia/api/schemas.py,sha256=1rLsltBHo0gU97gdzemdAAgE9MH2Go2X73AkdspJzhc,5122
|
|
102
|
+
gaia/api/sse_handler.py,sha256=BIPeUr8xeh0_RcnJFUe7DR9fhHevlTyQOJmR-wQ_9DA,13527
|
|
103
|
+
gaia/apps/__init__.py,sha256=m8pS9onBsAK9HnZmdny7E_Jt9tVE9M7hWzA0T2OoxZI,135
|
|
104
|
+
gaia/apps/llm/__init__.py,sha256=4jcXSIknrexSpS90CKoJtuW9g8CBE9-oD8oxE8lHY6M,162
|
|
105
|
+
gaia/apps/llm/app.py,sha256=takotX-pAQUg8-teig7cF0jOCZYe-fmqbMP_9GpdInE,5097
|
|
106
|
+
gaia/apps/summarize/app.py,sha256=roSFU8VUBNcKNXxxKQ3V_F0eyF5rvst1gAGqcojmJH8,24758
|
|
107
|
+
gaia/apps/summarize/html_viewer.py,sha256=EszoiclACH4i28jB7Rz10m3vpzVd-6skV0juYHA5Yz4,4314
|
|
108
|
+
gaia/apps/summarize/pdf_formatter.py,sha256=oCLNqT7vY4mopYb8KPpB-vHMrvCeM_6qCnIh4srV1jo,10711
|
|
109
|
+
gaia/audio/__init__.py,sha256=r5UeFsXLNtWJH3yDnGStBNvJ912PexiehY213-wYO6Y,108
|
|
110
|
+
gaia/audio/audio_client.py,sha256=rPeaR89Zlh0dR33jkfxrjY6_QQIwzkvzh1QNKtcLvjU,19018
|
|
111
|
+
gaia/audio/audio_recorder.py,sha256=_02npPEcLYKxvCuQwItLQDTCmK7ZJ540n08fT6cfXaI,10009
|
|
112
|
+
gaia/audio/kokoro_tts.py,sha256=A1tsTALQWCTVYUpjSLvb8-aQv_B1jlDZsDp2Z_FsXX0,22430
|
|
113
|
+
gaia/audio/whisper_asr.py,sha256=mWfDtImgG7ts9yysHMMB8TnLvMBDE3SDNq2hRqUdPuo,16948
|
|
114
|
+
gaia/chat/__init__.py,sha256=zXIAXhVm6JyVt8qIAnPcrLmJ-PXq6bNpsRPQEogiPCI,365
|
|
115
|
+
gaia/chat/app.py,sha256=-occvE-x1zRibu4qfCuvWQbEZC2rkfPjYd3DHYK9TXA,12760
|
|
116
|
+
gaia/chat/prompts.py,sha256=ABa4ue2LBUCxIAS84GOVjI1OOiTLSrPbop_VB-SmTlw,22089
|
|
117
|
+
gaia/chat/sdk.py,sha256=1fY1psto12SbHcHA-B9hUPMReMhiA-mV8yG54Ed51OA,45599
|
|
118
|
+
gaia/database/__init__.py,sha256=BZ6QDMGrU0YPkfzuvcg1yMLLR1qRTioaGLnWoVojm2U,348
|
|
119
|
+
gaia/database/agent.py,sha256=fJc1sRQPDx22BHmuux8KkL9Kt1VHyEpbfNfyfe4Z4x0,5943
|
|
120
|
+
gaia/database/mixin.py,sha256=wTlt6y73czW6TpXT4toAx_eJhM8ESep_HQfKTiURwZw,9021
|
|
121
|
+
gaia/database/testing.py,sha256=MnWj0OXLK4JWzTQrR5eoQkGp_gvLelOl6v4fqnRTVs4,1903
|
|
122
|
+
gaia/eval/batch_experiment.py,sha256=U4IU9L5pXRGFp0MgRf268W1Lw32iJS4fDAGtLSg8lKQ,101884
|
|
123
|
+
gaia/eval/claude.py,sha256=8HL0eJ89b9W4T7KprYepGQPlx5EqY9ug8cc9uqyZ0x4,21186
|
|
124
|
+
gaia/eval/config.py,sha256=qB0TH_Tfre6LDqUY3Rw5pMd-3fLZwdgpVWvUW3hHIeQ,1658
|
|
125
|
+
gaia/eval/email_generator.py,sha256=Ga5QzhQPeCeHrfq1FA2OKfIDpxSumKk8lKzf3aBO7nA,21719
|
|
126
|
+
gaia/eval/eval.py,sha256=HAqrplZ949_m_T0v_-0rspZXvmY4yTNTrc33mcBQaAw,151009
|
|
127
|
+
gaia/eval/groundtruth.py,sha256=GOJ9OekYRiqRs3R5ZvgCNKJ-hRF_WMN2Rx-SfHGFkuQ,49542
|
|
128
|
+
gaia/eval/transcript_generator.py,sha256=bXefOpeUiYfZh2PyBQb13SNZQNWy9PSUIs73cUF5rmU,25498
|
|
129
|
+
gaia/eval/webapp/README.md,sha256=63LY0ErkMbVVekc9JT7mGUazV7VnobXt7XmEARS4cno,5073
|
|
130
|
+
gaia/eval/webapp/package-lock.json,sha256=DW0ySjWbvncFhSciCDyKZhbrFF2P3Fet5Bh-Sx5N7QU,32120
|
|
131
|
+
gaia/eval/webapp/package.json,sha256=MrDnqe3cVtE77Rvf5PG6aRitefvLTQNvEy9GOK703CA,659
|
|
132
|
+
gaia/eval/webapp/server.js,sha256=RDU0Qjn1JtrOdNXzDVFGjTeRkuCKr239I9EyLhWsoEU,16214
|
|
133
|
+
gaia/eval/webapp/test-setup.js,sha256=DAVbv4H8z3VkMszkNolU0_2_AW2c_LCI_Ew_bepUNTY,2709
|
|
134
|
+
gaia/eval/webapp/public/app.js,sha256=QFhmgjz2JT-op6Uimv3yarXHtceakogU5oTqetbGa1Y,167949
|
|
135
|
+
gaia/eval/webapp/public/index.html,sha256=sbPwzWyvOtVi4aISI2GiimxhoAErez9lvl7rFXk-7Xo,4825
|
|
136
|
+
gaia/eval/webapp/public/styles.css,sha256=YTn_pyzKY3vzl1APs52vmtw03aQ0OOaIKESRFDyEM2E,75042
|
|
137
|
+
gaia/llm/__init__.py,sha256=r5UeFsXLNtWJH3yDnGStBNvJ912PexiehY213-wYO6Y,108
|
|
138
|
+
gaia/llm/lemonade_client.py,sha256=6I1kDWZGFGTI7OHxnwk7trdkfSONelYyo2FAQFxt6kg,121681
|
|
139
|
+
gaia/llm/lemonade_manager.py,sha256=ZnabNrNHk4oTr7JH36eAKzPLnJj2M3BEsDmjIR7_gs4,11311
|
|
140
|
+
gaia/llm/llm_client.py,sha256=BAGZ4tDiyUCvjyJBMYOsDIQ9WFeT0te4C2Q3u1MPDpM,29912
|
|
141
|
+
gaia/llm/vlm_client.py,sha256=V1uX2VB209L9XzZKwIxi9rusSJ48BxtTjjbtAYFj6N0,13629
|
|
142
|
+
gaia/mcp/agent_mcp_server.py,sha256=RWIO2U_xaKvUCIIwWqerauAQRNzhE-7AgvPR6hvL7I4,10397
|
|
143
|
+
gaia/mcp/blender_mcp_client.py,sha256=LHIgISCGNjO29ILRTnpH86y1MQO-6Bv3n8OQc66tKkg,5105
|
|
144
|
+
gaia/mcp/blender_mcp_server.py,sha256=TlQujTFxmvHBIO8qWvNFHk5X5hmF15987GZlosAKeZw,23153
|
|
145
|
+
gaia/mcp/context7_cache.py,sha256=4q0gxa_FO0IPdmKHejgcVNzJqjcyXyg7M2hjxIor0rE,11281
|
|
146
|
+
gaia/mcp/external_services.py,sha256=zjGrFixGFjb_B0F8yH_fpkin1xxaH7IcRTAZbQImuxg,18547
|
|
147
|
+
gaia/mcp/mcp_bridge.py,sha256=O7mOl1Dbtqy72jf5-NTvvUKGSk4nkmgLHhKhsxaXpyc,21610
|
|
148
|
+
gaia/mcp/servers/__init__.py,sha256=dXZuJKCFmkMUL_pf0Iwl9SCqiXpRzKxNB3yYkpPfmAg,158
|
|
149
|
+
gaia/mcp/servers/docker_mcp.py,sha256=SZ7oQpghBWyWNSNJPJMjIuYSNiARs6Z0o4ZAEGurRJw,2183
|
|
150
|
+
gaia/rag/__init__.py,sha256=Ui7XO7C5tB-oEHOG1kYgNYV7GZL3PbQRojDzSgLdNuw,336
|
|
151
|
+
gaia/rag/app.py,sha256=Kee7h_llYBxI2rWgrkg2picSyIj_ECBmsnPrcWmbOs8,8872
|
|
152
|
+
gaia/rag/demo.py,sha256=L9paeJk9dFbkq5g2Ip5nlNQ2AQH9dVSUDiMVtnc2gfE,10609
|
|
153
|
+
gaia/rag/pdf_utils.py,sha256=mUWy4XZ4xLUbvbPbEUMcxwFnaK7ltKd46kdol0DgE2g,7696
|
|
154
|
+
gaia/rag/sdk.py,sha256=GqCl5yFUjd6WK5wkm3UzHwRlh4NhvbfNhONR_5g9rdM,88011
|
|
155
|
+
gaia/talk/app.py,sha256=T8nMkoGQluSo4TV-70OcwzRI48W87DC2O_HfyO0bHBA,8213
|
|
156
|
+
gaia/talk/sdk.py,sha256=MXbyic5JH_TM8JBegwPnNTi58IfRx71sqX0TQV6ijXc,17862
|
|
157
|
+
gaia/testing/__init__.py,sha256=bN4jeVbJ8eY31rYPGKW4H2ATpl1Pr6kglhg8Y-myfOI,2012
|
|
158
|
+
gaia/testing/assertions.py,sha256=t5Q_ABj1aQ2BUKES4F7_EsTK3_OKI7buE6A01h2B6o4,10175
|
|
159
|
+
gaia/testing/fixtures.py,sha256=y2RBLZoMJm9ClypOBIbeaLmzLsywBSmMAXJZ-4JRgSk,10440
|
|
160
|
+
gaia/testing/mocks.py,sha256=8-wGRERu2Q3v6PnCPoRwqysOkyCBkEaGZbljmH0E2Xo,14388
|
|
161
|
+
gaia/utils/__init__.py,sha256=aJkcqGqbu2Eqq7imvezGbpgcbVNYs1gawPnYZeFM3lE,766
|
|
162
|
+
gaia/utils/file_watcher.py,sha256=ri9Mh6qNbVLv-8EP_8-BjVFVkf3CD8eRcyBQ4M6Lniw,23063
|
|
163
|
+
gaia/utils/parsing.py,sha256=vItAQd2E68Ye7hfbjzMudLhH4J79VnSRmaQePvkyohQ,6918
|
|
164
|
+
amd_gaia-0.14.3.dist-info/METADATA,sha256=4y3KK45l6LhovRWNMl8ShJ47ku3F6Y_IFIr8xgywi4g,8856
|
|
165
|
+
amd_gaia-0.14.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
166
|
+
amd_gaia-0.14.3.dist-info/entry_points.txt,sha256=3GcGAdkAsl3W7sdNDvJbVahCabxZ99gY6ltiBe6N0Nc,185
|
|
167
|
+
amd_gaia-0.14.3.dist-info/top_level.txt,sha256=79yz2gLmqK4bFQkuN8_cnHVY-lobuVT0Ww4YoO6OFvU,5
|
|
168
|
+
amd_gaia-0.14.3.dist-info/RECORD,,
|
gaia/__init__.py
CHANGED
|
@@ -1,2 +1,29 @@
|
|
|
1
|
-
# Copyright(C)
|
|
1
|
+
# Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
|
|
2
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
gaia/agents/base/__init__.py
CHANGED
gaia/agents/base/agent.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright(C)
|
|
1
|
+
# Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: MIT
|
|
3
3
|
"""
|
|
4
4
|
Generic Agent class for building domain-specific agents.
|
|
@@ -17,6 +17,7 @@ import uuid
|
|
|
17
17
|
from typing import Any, Dict, List, Optional
|
|
18
18
|
|
|
19
19
|
from gaia.agents.base.console import AgentConsole, SilentConsole
|
|
20
|
+
from gaia.agents.base.errors import format_execution_trace
|
|
20
21
|
from gaia.agents.base.tools import _TOOL_REGISTRY
|
|
21
22
|
|
|
22
23
|
# First-party imports
|
|
@@ -123,6 +124,9 @@ class Agent(abc.ABC):
|
|
|
123
124
|
self.debug = debug
|
|
124
125
|
self.last_result = None # Store the most recent result
|
|
125
126
|
self.max_plan_iterations = max_plan_iterations
|
|
127
|
+
self._current_query: Optional[str] = (
|
|
128
|
+
None # Store current query for error context
|
|
129
|
+
)
|
|
126
130
|
|
|
127
131
|
# Read base_url from environment if not provided
|
|
128
132
|
if base_url is None:
|
|
@@ -786,9 +790,29 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
786
790
|
self.error_history.append(error_msg)
|
|
787
791
|
return {"status": "error", "error": error_msg, "timeout": True}
|
|
788
792
|
except Exception as e:
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
793
|
+
# Format error with full execution trace for debugging
|
|
794
|
+
formatted_error = format_execution_trace(
|
|
795
|
+
exception=e,
|
|
796
|
+
query=getattr(self, "_current_query", None),
|
|
797
|
+
plan_step=self.current_step + 1 if self.current_plan else None,
|
|
798
|
+
total_steps=self.total_plan_steps if self.current_plan else None,
|
|
799
|
+
tool_name=tool_name,
|
|
800
|
+
tool_args=tool_args,
|
|
801
|
+
)
|
|
802
|
+
logger.error(f"Error executing tool {tool_name}: {e}")
|
|
803
|
+
self.error_history.append(str(e)) # Store brief error, not formatted
|
|
804
|
+
|
|
805
|
+
# Print to console immediately so user sees it
|
|
806
|
+
self.console.print_error(formatted_error)
|
|
807
|
+
|
|
808
|
+
return {
|
|
809
|
+
"status": "error",
|
|
810
|
+
"error_brief": str(e), # Brief error message for quick reference
|
|
811
|
+
"error_displayed": True, # Flag to prevent duplicate display
|
|
812
|
+
"tool_name": tool_name,
|
|
813
|
+
"tool_args": tool_args,
|
|
814
|
+
"plan_step": self.current_step + 1 if self.current_plan else None,
|
|
815
|
+
}
|
|
792
816
|
|
|
793
817
|
def _generate_max_steps_message(
|
|
794
818
|
self, conversation: List[Dict], steps_taken: int, steps_limit: int
|
|
@@ -886,7 +910,8 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
886
910
|
"""
|
|
887
911
|
truncated_result = tool_result
|
|
888
912
|
if isinstance(tool_result, (dict, list)):
|
|
889
|
-
|
|
913
|
+
# Use custom encoder to handle bytes and other non-serializable types
|
|
914
|
+
result_str = json.dumps(tool_result, default=self._json_serialize_fallback)
|
|
890
915
|
if (
|
|
891
916
|
len(result_str) > 30000
|
|
892
917
|
): # Threshold for truncation (appropriate for 32K context)
|
|
@@ -927,7 +952,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
927
952
|
text_content = self._truncate_large_content(tool_output, max_chars=2000)
|
|
928
953
|
|
|
929
954
|
if not isinstance(text_content, str):
|
|
930
|
-
text_content = json.dumps(
|
|
955
|
+
text_content = json.dumps(
|
|
956
|
+
tool_output, default=self._json_serialize_fallback
|
|
957
|
+
)
|
|
931
958
|
|
|
932
959
|
return {
|
|
933
960
|
"role": "tool",
|
|
@@ -936,6 +963,40 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
936
963
|
"content": [{"type": "text", "text": text_content}],
|
|
937
964
|
}
|
|
938
965
|
|
|
966
|
+
def _json_serialize_fallback(self, obj: Any) -> Any:
|
|
967
|
+
"""
|
|
968
|
+
Fallback serializer for JSON encoding non-standard types.
|
|
969
|
+
|
|
970
|
+
Handles bytes, datetime, and other common non-serializable types.
|
|
971
|
+
"""
|
|
972
|
+
try:
|
|
973
|
+
import numpy as np # Local import to avoid hard dependency at module import time
|
|
974
|
+
|
|
975
|
+
if isinstance(obj, np.generic):
|
|
976
|
+
return obj.item()
|
|
977
|
+
if isinstance(obj, np.ndarray):
|
|
978
|
+
return obj.tolist()
|
|
979
|
+
except Exception:
|
|
980
|
+
pass
|
|
981
|
+
|
|
982
|
+
if isinstance(obj, bytes):
|
|
983
|
+
# For binary data, return a placeholder (don't expose raw bytes to LLM)
|
|
984
|
+
return f"<binary data: {len(obj)} bytes>"
|
|
985
|
+
if hasattr(obj, "isoformat"):
|
|
986
|
+
# Handle datetime objects
|
|
987
|
+
return obj.isoformat()
|
|
988
|
+
if hasattr(obj, "__dict__"):
|
|
989
|
+
# Handle objects with __dict__
|
|
990
|
+
return obj.__dict__
|
|
991
|
+
|
|
992
|
+
for caster in (float, int, str):
|
|
993
|
+
try:
|
|
994
|
+
return caster(obj)
|
|
995
|
+
except Exception:
|
|
996
|
+
continue
|
|
997
|
+
|
|
998
|
+
return "<non-serializable>"
|
|
999
|
+
|
|
939
1000
|
def _truncate_large_content(self, content: Any, max_chars: int = 2000) -> str:
|
|
940
1001
|
"""
|
|
941
1002
|
Truncate large content to prevent overwhelming the LLM.
|
|
@@ -948,14 +1009,14 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
948
1009
|
if isinstance(content, dict) and (
|
|
949
1010
|
"test_results" in content or "run_tests" in content
|
|
950
1011
|
):
|
|
951
|
-
return json.dumps(content)
|
|
1012
|
+
return json.dumps(content, default=self._json_serialize_fallback)
|
|
952
1013
|
|
|
953
1014
|
# Convert to string (use compact JSON first to check size)
|
|
954
1015
|
if isinstance(content, (dict, list)):
|
|
955
|
-
compact_str = json.dumps(content)
|
|
1016
|
+
compact_str = json.dumps(content, default=self._json_serialize_fallback)
|
|
956
1017
|
# Only use indented format if we need to truncate anyway
|
|
957
1018
|
content_str = (
|
|
958
|
-
json.dumps(content, indent=2)
|
|
1019
|
+
json.dumps(content, indent=2, default=self._json_serialize_fallback)
|
|
959
1020
|
if len(compact_str) > max_chars
|
|
960
1021
|
else compact_str
|
|
961
1022
|
)
|
|
@@ -987,13 +1048,17 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
987
1048
|
+ chunk["content"][-CHUNK_TRUNCATION_SIZE:]
|
|
988
1049
|
)
|
|
989
1050
|
|
|
990
|
-
result_str = json.dumps(
|
|
1051
|
+
result_str = json.dumps(
|
|
1052
|
+
truncated, indent=2, default=self._json_serialize_fallback
|
|
1053
|
+
)
|
|
991
1054
|
# Use larger limit for chunked responses since chunks are the actual data
|
|
992
1055
|
if len(result_str) <= max_chars * 3: # Allow up to 60KB for chunked data
|
|
993
1056
|
return result_str
|
|
994
1057
|
# If still too large, keep first 3 chunks only
|
|
995
1058
|
truncated["chunks"] = truncated["chunks"][:3]
|
|
996
|
-
return json.dumps(
|
|
1059
|
+
return json.dumps(
|
|
1060
|
+
truncated, indent=2, default=self._json_serialize_fallback
|
|
1061
|
+
)
|
|
997
1062
|
|
|
998
1063
|
# For Jira responses, keep first 3 issues
|
|
999
1064
|
if (
|
|
@@ -1007,7 +1072,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1007
1072
|
"truncated": True,
|
|
1008
1073
|
"total": len(content["issues"]),
|
|
1009
1074
|
}
|
|
1010
|
-
return json.dumps(
|
|
1075
|
+
return json.dumps(
|
|
1076
|
+
truncated, indent=2, default=self._json_serialize_fallback
|
|
1077
|
+
)[:max_chars]
|
|
1011
1078
|
|
|
1012
1079
|
# For lists, keep first 3 items
|
|
1013
1080
|
if isinstance(content, list):
|
|
@@ -1016,7 +1083,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1016
1083
|
if len(content) > 3
|
|
1017
1084
|
else content
|
|
1018
1085
|
)
|
|
1019
|
-
return json.dumps(
|
|
1086
|
+
return json.dumps(
|
|
1087
|
+
truncated, indent=2, default=self._json_serialize_fallback
|
|
1088
|
+
)[:max_chars]
|
|
1020
1089
|
|
|
1021
1090
|
# Simple truncation
|
|
1022
1091
|
half = max_chars // 2 - 20
|
|
@@ -1046,6 +1115,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1046
1115
|
|
|
1047
1116
|
start_time = time.time() # Track query processing start time
|
|
1048
1117
|
|
|
1118
|
+
# Store query for error context (used in _execute_tool for error formatting)
|
|
1119
|
+
self._current_query = user_input
|
|
1120
|
+
|
|
1049
1121
|
logger.debug(f"Processing query: {user_input}")
|
|
1050
1122
|
conversation = []
|
|
1051
1123
|
# Build messages array for chat completions
|
|
@@ -1212,11 +1284,6 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1212
1284
|
tool_name, tool_result, conversation, tool_args
|
|
1213
1285
|
)
|
|
1214
1286
|
|
|
1215
|
-
# Add tool result to messages array so LLM can see it in next turn
|
|
1216
|
-
# Format as user message for proper chat flow (user → assistant → user → assistant)
|
|
1217
|
-
tool_result_content = f"Tool result: {json.dumps(truncated_result) if isinstance(truncated_result, dict) else truncated_result}"
|
|
1218
|
-
messages.append({"role": "user", "content": tool_result_content})
|
|
1219
|
-
|
|
1220
1287
|
# Display the tool result in real-time (show full result to user)
|
|
1221
1288
|
self.console.print_tool_complete()
|
|
1222
1289
|
|
|
@@ -1248,8 +1315,10 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1248
1315
|
if is_error:
|
|
1249
1316
|
error_count += 1
|
|
1250
1317
|
# Extract error message from various formats
|
|
1318
|
+
# Prefer error_brief for logging (avoids duplicate formatted output)
|
|
1251
1319
|
last_error = (
|
|
1252
|
-
tool_result.get("
|
|
1320
|
+
tool_result.get("error_brief")
|
|
1321
|
+
or tool_result.get("error")
|
|
1253
1322
|
or tool_result.get("stderr")
|
|
1254
1323
|
or tool_result.get("hint") # Many tools provide hints
|
|
1255
1324
|
or tool_result.get(
|
|
@@ -1260,7 +1329,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1260
1329
|
logger.warning(
|
|
1261
1330
|
f"Tool execution error in plan (count: {error_count}): {last_error}"
|
|
1262
1331
|
)
|
|
1263
|
-
|
|
1332
|
+
# Only print if error wasn't already displayed by _execute_tool
|
|
1333
|
+
if not tool_result.get("error_displayed"):
|
|
1334
|
+
self.console.print_error(last_error)
|
|
1264
1335
|
|
|
1265
1336
|
# Switch to error recovery state
|
|
1266
1337
|
self.execution_state = self.STATE_ERROR_RECOVERY
|
|
@@ -1299,7 +1370,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1299
1370
|
"completed_plan": self.current_plan,
|
|
1300
1371
|
"total_steps": self.total_plan_steps,
|
|
1301
1372
|
}
|
|
1302
|
-
plan_context_raw = json.dumps(
|
|
1373
|
+
plan_context_raw = json.dumps(
|
|
1374
|
+
plan_context, default=self._json_serialize_fallback
|
|
1375
|
+
)
|
|
1303
1376
|
if len(plan_context_raw) > 20000:
|
|
1304
1377
|
plan_context_str = self._truncate_large_content(
|
|
1305
1378
|
plan_context, max_chars=20000
|
|
@@ -1345,7 +1418,6 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1345
1418
|
)
|
|
1346
1419
|
|
|
1347
1420
|
# Send the completion prompt to get final answer
|
|
1348
|
-
self.console.print_step_header(steps_taken, steps_limit)
|
|
1349
1421
|
self.console.print_state_info(
|
|
1350
1422
|
"COMPLETION: Requesting final answer"
|
|
1351
1423
|
)
|
|
@@ -1613,7 +1685,7 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1613
1685
|
if deferred_tool:
|
|
1614
1686
|
plan_prompt += (
|
|
1615
1687
|
f"You initially wanted to use the {deferred_tool} tool with these arguments:\n"
|
|
1616
|
-
f"{json.dumps(deferred_args, indent=2)}\n\n"
|
|
1688
|
+
f"{json.dumps(deferred_args, indent=2, default=self._json_serialize_fallback)}\n\n"
|
|
1617
1689
|
"However, you MUST first create a plan. Please create a plan that includes this tool usage as a step.\n\n"
|
|
1618
1690
|
)
|
|
1619
1691
|
|
|
@@ -1709,16 +1781,17 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1709
1781
|
|
|
1710
1782
|
# Set the parsed response to the new plan for further processing
|
|
1711
1783
|
parsed = parsed_plan
|
|
1784
|
+
else:
|
|
1785
|
+
# Display the agent's reasoning in real-time (only if provided)
|
|
1786
|
+
# Skip if we just displayed thought/goal for a plan request above
|
|
1787
|
+
thought = parsed.get("thought", "").strip()
|
|
1788
|
+
goal = parsed.get("goal", "").strip()
|
|
1712
1789
|
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
goal = parsed.get("goal", "").strip()
|
|
1716
|
-
|
|
1717
|
-
if thought and thought != "No explicit reasoning provided":
|
|
1718
|
-
self.console.print_thought(thought)
|
|
1790
|
+
if thought and thought != "No explicit reasoning provided":
|
|
1791
|
+
self.console.print_thought(thought)
|
|
1719
1792
|
|
|
1720
|
-
|
|
1721
|
-
|
|
1793
|
+
if goal and goal != "No explicit goal provided":
|
|
1794
|
+
self.console.print_goal(goal)
|
|
1722
1795
|
|
|
1723
1796
|
# Process plan if available
|
|
1724
1797
|
if "plan" in parsed:
|
|
@@ -1895,8 +1968,10 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1895
1968
|
)
|
|
1896
1969
|
if is_error:
|
|
1897
1970
|
error_count += 1
|
|
1971
|
+
# Prefer error_brief for logging (avoids duplicate formatted output)
|
|
1898
1972
|
last_error = (
|
|
1899
|
-
tool_result.get("
|
|
1973
|
+
tool_result.get("error_brief")
|
|
1974
|
+
or tool_result.get("error")
|
|
1900
1975
|
or tool_result.get("stderr")
|
|
1901
1976
|
or tool_result.get("hint")
|
|
1902
1977
|
or tool_result.get("suggested_fix")
|
|
@@ -1905,7 +1980,9 @@ You must respond ONLY in valid JSON. No text before { or after }.
|
|
|
1905
1980
|
logger.warning(
|
|
1906
1981
|
f"Tool execution error in plan (count: {error_count}): {last_error}"
|
|
1907
1982
|
)
|
|
1908
|
-
|
|
1983
|
+
# Only print if error wasn't already displayed by _execute_tool
|
|
1984
|
+
if not tool_result.get("error_displayed"):
|
|
1985
|
+
self.console.print_error(last_error)
|
|
1909
1986
|
|
|
1910
1987
|
# Switch to error recovery state
|
|
1911
1988
|
self.execution_state = self.STATE_ERROR_RECOVERY
|
gaia/agents/base/api_agent.py
CHANGED