solace-agent-mesh 1.5.1__py3-none-any.whl → 1.6.0__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.
Potentially problematic release.
This version of solace-agent-mesh might be problematic. Click here for more details.
- solace_agent_mesh/agent/adk/callbacks.py +0 -5
- solace_agent_mesh/agent/adk/models/lite_llm.py +123 -8
- solace_agent_mesh/agent/adk/models/oauth2_token_manager.py +245 -0
- solace_agent_mesh/agent/protocol/event_handlers.py +40 -1
- solace_agent_mesh/agent/proxies/__init__.py +0 -0
- solace_agent_mesh/agent/proxies/a2a/__init__.py +3 -0
- solace_agent_mesh/agent/proxies/a2a/app.py +55 -0
- solace_agent_mesh/agent/proxies/a2a/component.py +1115 -0
- solace_agent_mesh/agent/proxies/a2a/config.py +140 -0
- solace_agent_mesh/agent/proxies/a2a/oauth_token_cache.py +104 -0
- solace_agent_mesh/agent/proxies/base/__init__.py +3 -0
- solace_agent_mesh/agent/proxies/base/app.py +99 -0
- solace_agent_mesh/agent/proxies/base/component.py +619 -0
- solace_agent_mesh/agent/proxies/base/config.py +85 -0
- solace_agent_mesh/agent/proxies/base/proxy_task_context.py +17 -0
- solace_agent_mesh/agent/sac/app.py +9 -3
- solace_agent_mesh/agent/sac/component.py +160 -8
- solace_agent_mesh/agent/tools/audio_tools.py +125 -8
- solace_agent_mesh/agent/tools/web_tools.py +10 -5
- solace_agent_mesh/agent/utils/artifact_helpers.py +141 -3
- solace_agent_mesh/assets/docs/404.html +3 -3
- solace_agent_mesh/assets/docs/assets/js/5c2bd65f.eda4bcb2.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/6ad8f0bd.f4b15f3b.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/71da7b71.38583438.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/77cf947d.48cb18a2.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/924ffdeb.8095e148.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/9e9d0a82.570c057b.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{ad71b5ed.60668e9e.js → ad71b5ed.af3ecfd1.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/ceb2a7a6.5d92d7d0.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{da0b5bad.9d369087.js → da0b5bad.d08a9466.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/db924877.e98d12a1.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/de915948.27d6b065.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/e6f9706b.e74a984d.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/f284c35a.42f59cdd.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/ff4d71f2.15b02f97.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{main.bd3c34f3.js → main.20feee82.js} +2 -2
- solace_agent_mesh/assets/docs/assets/js/runtime~main.0d198646.js +1 -0
- solace_agent_mesh/assets/docs/docs/documentation/components/agents/index.html +15 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/artifact-management/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/audio-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/data-analysis-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/embeds/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/cli/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/gateways/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/orchestrator/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/plugins/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/components/proxies/index.html +262 -0
- solace_agent_mesh/assets/docs/docs/documentation/deploying/debugging/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deploying/deployment-options/index.html +31 -3
- solace_agent_mesh/assets/docs/docs/documentation/deploying/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deploying/observability/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/developing/create-agents/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/create-gateways/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/developing/creating-python-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/creating-service-providers/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/evaluations/index.html +135 -0
- solace_agent_mesh/assets/docs/docs/documentation/developing/index.html +6 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/structure/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/bedrock-agents/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/custom-agent/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/event-mesh-gateway/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/mcp-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/mongodb-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/rag-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/rest-gateway/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/slack-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/sql-database/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/installation/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/rbac-setup-guide/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/single-sign-on/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/architecture/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/try-agent-mesh/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/configurations/index.html +6 -5
- solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/installation/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/large_language_models/index.html +100 -3
- solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/run-project/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/migrations/a2a-upgrade/a2a-gateway-upgrade-to-0.3.0/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/migrations/a2a-upgrade/a2a-technical-migration-map/index.html +3 -3
- solace_agent_mesh/assets/docs/lunr-index-1761165361160.json +1 -0
- solace_agent_mesh/assets/docs/lunr-index.json +1 -1
- solace_agent_mesh/assets/docs/search-doc-1761165361160.json +1 -0
- solace_agent_mesh/assets/docs/search-doc.json +1 -1
- solace_agent_mesh/assets/docs/sitemap.xml +1 -1
- solace_agent_mesh/cli/__init__.py +1 -1
- solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py +2 -69
- solace_agent_mesh/cli/commands/eval_cmd.py +11 -49
- solace_agent_mesh/cli/commands/init_cmd/__init__.py +0 -5
- solace_agent_mesh/cli/commands/init_cmd/env_step.py +10 -12
- solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py +9 -61
- solace_agent_mesh/cli/commands/init_cmd/webui_gateway_step.py +9 -49
- solace_agent_mesh/cli/commands/plugin_cmd/add_cmd.py +1 -2
- solace_agent_mesh/client/webui/frontend/static/assets/{authCallback-DwrxZE0E.js → authCallback-BTf6dqwp.js} +1 -1
- solace_agent_mesh/client/webui/frontend/static/assets/{client-DarGQzyw.js → client-CaY59VuC.js} +1 -1
- solace_agent_mesh/client/webui/frontend/static/assets/main-BGTaW0uv.js +342 -0
- solace_agent_mesh/client/webui/frontend/static/assets/main-DHJKSW1S.css +1 -0
- solace_agent_mesh/client/webui/frontend/static/assets/{vendor-BKIeiHj_.js → vendor-BEmvJSYz.js} +1 -1
- solace_agent_mesh/client/webui/frontend/static/auth-callback.html +3 -3
- solace_agent_mesh/client/webui/frontend/static/index.html +4 -4
- solace_agent_mesh/common/a2a/__init__.py +24 -0
- solace_agent_mesh/common/a2a/artifact.py +39 -0
- solace_agent_mesh/common/a2a/events.py +29 -0
- solace_agent_mesh/common/a2a/message.py +68 -0
- solace_agent_mesh/common/a2a/protocol.py +73 -1
- solace_agent_mesh/common/agent_registry.py +83 -3
- solace_agent_mesh/common/constants.py +3 -1
- solace_agent_mesh/common/utils/pydantic_utils.py +12 -0
- solace_agent_mesh/config_portal/backend/common.py +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/_index-ByU1X1HD.js +98 -0
- solace_agent_mesh/config_portal/frontend/static/client/assets/{manifest-44d62be6.js → manifest-61038fc6.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/index.html +1 -1
- solace_agent_mesh/evaluation/evaluator.py +128 -104
- solace_agent_mesh/evaluation/message_organizer.py +116 -110
- solace_agent_mesh/evaluation/report_data_processor.py +84 -86
- solace_agent_mesh/evaluation/report_generator.py +73 -79
- solace_agent_mesh/evaluation/run.py +421 -235
- solace_agent_mesh/evaluation/shared/__init__.py +92 -0
- solace_agent_mesh/evaluation/shared/constants.py +47 -0
- solace_agent_mesh/evaluation/shared/exceptions.py +50 -0
- solace_agent_mesh/evaluation/shared/helpers.py +35 -0
- solace_agent_mesh/evaluation/shared/test_case_loader.py +167 -0
- solace_agent_mesh/evaluation/shared/test_suite_loader.py +280 -0
- solace_agent_mesh/evaluation/subscriber.py +111 -232
- solace_agent_mesh/evaluation/summary_builder.py +227 -117
- solace_agent_mesh/gateway/base/app.py +1 -1
- solace_agent_mesh/gateway/base/component.py +8 -1
- solace_agent_mesh/gateway/http_sse/alembic/versions/20251015_add_session_performance_indexes.py +70 -0
- solace_agent_mesh/gateway/http_sse/component.py +98 -2
- solace_agent_mesh/gateway/http_sse/dependencies.py +4 -4
- solace_agent_mesh/gateway/http_sse/main.py +2 -1
- solace_agent_mesh/gateway/http_sse/repository/chat_task_repository.py +12 -13
- solace_agent_mesh/gateway/http_sse/repository/feedback_repository.py +15 -18
- solace_agent_mesh/gateway/http_sse/repository/interfaces.py +25 -18
- solace_agent_mesh/gateway/http_sse/repository/session_repository.py +30 -26
- solace_agent_mesh/gateway/http_sse/repository/task_repository.py +35 -44
- solace_agent_mesh/gateway/http_sse/routers/agent_cards.py +4 -3
- solace_agent_mesh/gateway/http_sse/routers/artifacts.py +95 -203
- solace_agent_mesh/gateway/http_sse/routers/dto/responses/session_responses.py +4 -3
- solace_agent_mesh/gateway/http_sse/routers/sessions.py +2 -2
- solace_agent_mesh/gateway/http_sse/routers/tasks.py +33 -41
- solace_agent_mesh/gateway/http_sse/routers/visualization.py +17 -11
- solace_agent_mesh/gateway/http_sse/services/data_retention_service.py +4 -4
- solace_agent_mesh/gateway/http_sse/services/feedback_service.py +51 -43
- solace_agent_mesh/gateway/http_sse/services/session_service.py +20 -20
- solace_agent_mesh/gateway/http_sse/services/task_logger_service.py +8 -8
- solace_agent_mesh/gateway/http_sse/shared/base_repository.py +45 -71
- solace_agent_mesh/gateway/http_sse/shared/types.py +0 -18
- solace_agent_mesh/templates/gateway_config_template.yaml +0 -5
- solace_agent_mesh/templates/logging_config_template.ini +10 -6
- solace_agent_mesh/templates/plugin_gateway_config_template.yaml +0 -3
- solace_agent_mesh/templates/shared_config.yaml +40 -0
- {solace_agent_mesh-1.5.1.dist-info → solace_agent_mesh-1.6.0.dist-info}/METADATA +47 -21
- {solace_agent_mesh-1.5.1.dist-info → solace_agent_mesh-1.6.0.dist-info}/RECORD +162 -141
- solace_agent_mesh/assets/docs/assets/js/5c2bd65f.e49689dd.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/6ad8f0bd.39d5851d.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/71da7b71.804d6567.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/77cf947d.64c9bd6c.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/9e9d0a82.dd810042.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/db924877.cbc66f02.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/de915948.139b4b9c.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/e6f9706b.582a78ca.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/f284c35a.5766a13d.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/ff4d71f2.9c0297a6.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/runtime~main.18dc45dd.js +0 -1
- solace_agent_mesh/assets/docs/lunr-index-1760121512891.json +0 -1
- solace_agent_mesh/assets/docs/search-doc-1760121512891.json +0 -1
- solace_agent_mesh/client/webui/frontend/static/assets/main-2nd1gbaH.js +0 -339
- solace_agent_mesh/client/webui/frontend/static/assets/main-DoKXctCM.css +0 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/_index-BNuqpWDc.js +0 -98
- solace_agent_mesh/evaluation/config_loader.py +0 -657
- solace_agent_mesh/evaluation/test_case_loader.py +0 -714
- /solace_agent_mesh/assets/docs/assets/js/{main.bd3c34f3.js.LICENSE.txt → main.20feee82.js.LICENSE.txt} +0 -0
- {solace_agent_mesh-1.5.1.dist-info → solace_agent_mesh-1.6.0.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-1.5.1.dist-info → solace_agent_mesh-1.6.0.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-1.5.1.dist-info → solace_agent_mesh-1.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -10,7 +10,7 @@ solace_agent_mesh/agent/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
10
10
|
solace_agent_mesh/agent/adk/adk_llm.txt,sha256=MewQbGMQaX8_a6JuVgo1iqFBvqO6XoXnrRCNFKLh2Eg,15134
|
|
11
11
|
solace_agent_mesh/agent/adk/adk_llm_detail.txt,sha256=a11TTq0ABu5OVuuWuaNHHFTzQpxGqP564SJnv244E7c,28423
|
|
12
12
|
solace_agent_mesh/agent/adk/app_llm_agent.py,sha256=WOJoUI23i5zPDqubNVVJhWUFvVdY4sRmsYzKmz-DomU,842
|
|
13
|
-
solace_agent_mesh/agent/adk/callbacks.py,sha256=
|
|
13
|
+
solace_agent_mesh/agent/adk/callbacks.py,sha256=veaakEaAZeQXjfRq5mt1UVxgm4Z27rCkqXpmnco-xmM,73743
|
|
14
14
|
solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py,sha256=tij6xc9EXLJhFVxMBE-vUrACMdIasUPm8RBxb6YR34Q,11319
|
|
15
15
|
solace_agent_mesh/agent/adk/intelligent_mcp_callbacks.py,sha256=D65qzp7XGKFd8yiBgB8lPffQGKNFSqUH7HUYMh-fHH4,15841
|
|
16
16
|
solace_agent_mesh/agent/adk/mcp_content_processor.py,sha256=aa29b0pw9S_tgYmWGmrJk_pTxKCX68DYE7EWLeLFlYU,23852
|
|
@@ -23,15 +23,27 @@ solace_agent_mesh/agent/adk/artifacts/__init__.py,sha256=vAB8eqGwgPo3nx6YkT93Y7p
|
|
|
23
23
|
solace_agent_mesh/agent/adk/artifacts/artifacts_llm.txt,sha256=xUQN6RO77AcaPSN93I7adwNwE2vg7nUFX0PuqYKr1zA,6567
|
|
24
24
|
solace_agent_mesh/agent/adk/artifacts/filesystem_artifact_service.py,sha256=Z5uL1Mvy5ywVX47EXTy_xW2ZLtugAu6GlFWkeJ4leko,13983
|
|
25
25
|
solace_agent_mesh/agent/adk/artifacts/s3_artifact_service.py,sha256=5apgJsqZIJHM_i6UP8di6PiQyJhmlAQBcWpl3sTEVmY,15412
|
|
26
|
-
solace_agent_mesh/agent/adk/models/lite_llm.py,sha256=
|
|
26
|
+
solace_agent_mesh/agent/adk/models/lite_llm.py,sha256=69s8OjeqpL3j2pZi4MJOd6wm00v3ifhc9W5ad4k2e6E,35920
|
|
27
27
|
solace_agent_mesh/agent/adk/models/models_llm.txt,sha256=RORjinNLVfjnZ0sq9Ax9MhUZAGvTVqDsAVBQkADfQ8s,6044
|
|
28
|
+
solace_agent_mesh/agent/adk/models/oauth2_token_manager.py,sha256=gWtPPQ2yHYH2DUOEbVGT8gxkSzpDnONL0cf3pVV0ov4,9184
|
|
28
29
|
solace_agent_mesh/agent/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=
|
|
30
|
+
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=ScQr5-HaErmywdPwfLtQrV-_b1v-mhMIl-pUrHVGj7I,74068
|
|
30
31
|
solace_agent_mesh/agent/protocol/protocol_llm.txt,sha256=eyY5y4hv-MNkA5DHDs-1ccV67eN781g4kVfCJObJnCI,4615
|
|
31
32
|
solace_agent_mesh/agent/protocol/protocol_llm_detail.txt,sha256=yl3b6kBP5qh0XWM6ls10QST2T3ccLrcgIkld0o_Vl8A,5034
|
|
33
|
+
solace_agent_mesh/agent/proxies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
solace_agent_mesh/agent/proxies/a2a/__init__.py,sha256=8R6rCFxoaCRrQXSbAUmlz8UPAhFHGf-xiAZ3CKEUiEY,103
|
|
35
|
+
solace_agent_mesh/agent/proxies/a2a/app.py,sha256=a4WeJUXPAJqmFC7CqYgmBEXiVnjKPkYpbfDNTp-m1fI,1795
|
|
36
|
+
solace_agent_mesh/agent/proxies/a2a/component.py,sha256=uCpJ_4uakYpqReKaPWnfoUrYjhyal0Bbu2rK6PJd1_M,45409
|
|
37
|
+
solace_agent_mesh/agent/proxies/a2a/config.py,sha256=ab5MuTfi8RSTVTfm0grpZm6fiWFC_jJWA--_nb0ysqI,5037
|
|
38
|
+
solace_agent_mesh/agent/proxies/a2a/oauth_token_cache.py,sha256=meaYBsSsGpTttH-8NzcFcmqbLGI0D35kotkGYpWazI4,3248
|
|
39
|
+
solace_agent_mesh/agent/proxies/base/__init__.py,sha256=bMxoVtQiCPCT83LYMStubCIcvqzjV7u83Dq2u08fjiM,96
|
|
40
|
+
solace_agent_mesh/agent/proxies/base/app.py,sha256=9w9Z4wZfP1OTCHMpJVuMehT0IVUOLCl3KKx8Tyxy-QY,3693
|
|
41
|
+
solace_agent_mesh/agent/proxies/base/component.py,sha256=gGA2N-ylAsGOqT2yDrB5EEOVP_iATyTW-lSTAqimunc,24962
|
|
42
|
+
solace_agent_mesh/agent/proxies/base/config.py,sha256=9YuKSAmhw_oB8zqfqpWu5ww3Fmj5G6gkT8VIJSqx4kE,2966
|
|
43
|
+
solace_agent_mesh/agent/proxies/base/proxy_task_context.py,sha256=fJ-Ij8nXl5h6PI3agzVjzMdGp0FWheP8TmMLko_jssQ,429
|
|
32
44
|
solace_agent_mesh/agent/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
solace_agent_mesh/agent/sac/app.py,sha256=
|
|
34
|
-
solace_agent_mesh/agent/sac/component.py,sha256=
|
|
45
|
+
solace_agent_mesh/agent/sac/app.py,sha256=JQ2cmQjn41jsL0diyrmnHZGz5bETk-cSJaWMEC8S6-Q,19083
|
|
46
|
+
solace_agent_mesh/agent/sac/component.py,sha256=Q_b0CCtOe3Kfwt4lmoxrTHP4MtuN5hrHEXboP1Ocshc,140540
|
|
35
47
|
solace_agent_mesh/agent/sac/patch_adk.py,sha256=LQhPvwpEVeeDVUgZD-p8CTxft-jRv_OadMR-gR1uTXk,4266
|
|
36
48
|
solace_agent_mesh/agent/sac/sac_llm.txt,sha256=PYiVgyD2RpKNsI2QW2Kn22ZlEvoXjzXLzOMw5FbwFVw,9675
|
|
37
49
|
solace_agent_mesh/agent/sac/sac_llm_detail.txt,sha256=9xjnleDfVCjirnT1MggdGZ93q2YhNkqhjjBYxXimUHk,10069
|
|
@@ -41,7 +53,7 @@ solace_agent_mesh/agent/testing/debug_utils.py,sha256=-nNJUs8aeRnEFbG0ZrXL3-FFcC
|
|
|
41
53
|
solace_agent_mesh/agent/testing/testing_llm.txt,sha256=14tuiINvkLTel3zTM7MsRQrmGLWuuJ79ywTU7gjiwqg,2180
|
|
42
54
|
solace_agent_mesh/agent/testing/testing_llm_detail.txt,sha256=XBZUeyp87IrhqULoP9v42ALQybOiGJwj3ESFHn-DmWs,2594
|
|
43
55
|
solace_agent_mesh/agent/tools/__init__.py,sha256=3dURhTS7XdvQW1A5j-_eigcZNjhzog6C1O5SgYePn_8,500
|
|
44
|
-
solace_agent_mesh/agent/tools/audio_tools.py,sha256=
|
|
56
|
+
solace_agent_mesh/agent/tools/audio_tools.py,sha256=1MNPdJSqBrjGDFyN6TTia6Cr_Vo4AKq0Ef7Zy0S13M4,65542
|
|
45
57
|
solace_agent_mesh/agent/tools/builtin_artifact_tools.py,sha256=cmvAEY9noPTzgKGxJo61-L1Ssga4EpboAN0IqXWuYi0,78203
|
|
46
58
|
solace_agent_mesh/agent/tools/builtin_data_analysis_tools.py,sha256=Ym4gj9R17ahECaIeSxGuAAEely0Kg3RIY3YMEvvprQA,8968
|
|
47
59
|
solace_agent_mesh/agent/tools/dynamic_tool.py,sha256=1xK8Qjyl4-keEj_UjUt23xya8l50dQXKo0TTdcPg1iU,13526
|
|
@@ -54,27 +66,27 @@ solace_agent_mesh/agent/tools/tool_config_types.py,sha256=IeDB0XBJbulFYbOFeU5UUO
|
|
|
54
66
|
solace_agent_mesh/agent/tools/tool_definition.py,sha256=CXgcnAsXiSA6H3UrbvXfo0chTYLDzRWmDi5vzzCmOQA,2015
|
|
55
67
|
solace_agent_mesh/agent/tools/tools_llm.txt,sha256=E2uxfotNoL1nQoVbg14tASUNxmY-dUY-YcFV8H3pyOs,14011
|
|
56
68
|
solace_agent_mesh/agent/tools/tools_llm_detail.txt,sha256=AIpLVNLEK_G-S4wBQViGmYqQIT55QPEH2F9zzTfghBs,14415
|
|
57
|
-
solace_agent_mesh/agent/tools/web_tools.py,sha256=
|
|
69
|
+
solace_agent_mesh/agent/tools/web_tools.py,sha256=5m8WSeia8HzuGUL3pKoZsNZNspG6XbXU6k-QoMbY3pE,15650
|
|
58
70
|
solace_agent_mesh/agent/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
solace_agent_mesh/agent/utils/artifact_helpers.py,sha256=
|
|
71
|
+
solace_agent_mesh/agent/utils/artifact_helpers.py,sha256=wxCO5DN0GorBIle6KxxEpquNalSuna2yCZSbi2rBybo,48445
|
|
60
72
|
solace_agent_mesh/agent/utils/config_parser.py,sha256=hCCeVuzBHo6MlYKIEZ40YCdM6VS8CRZ0pDnsOlH1nFA,1668
|
|
61
73
|
solace_agent_mesh/agent/utils/context_helpers.py,sha256=jWKY5Kpy2KWTYMz4G5AOi8VIu3IbD1LdStpI7j5y-bU,2075
|
|
62
74
|
solace_agent_mesh/agent/utils/utils_llm.txt,sha256=_WjJhkogiZwO7cen1xQtHJJRrZXiU4yWPw84rVes9Vw,7442
|
|
63
75
|
solace_agent_mesh/agent/utils/utils_llm_detail.txt,sha256=CQk1YTXq2h4BVbfsjJwKkFEK1ZsWHHfaTVTeKHnrYGo,7846
|
|
64
76
|
solace_agent_mesh/common/__init__.py,sha256=gtpOFNjDuFmImR592AQckhQTaiA8HrsfTvAP1oCfxCY,63
|
|
65
|
-
solace_agent_mesh/common/agent_registry.py,sha256=
|
|
77
|
+
solace_agent_mesh/common/agent_registry.py,sha256=9RkXfO2WfnUBJTRWRT1CLIkdOiyFho3WHpoT8RHs74k,4571
|
|
66
78
|
solace_agent_mesh/common/common_llm.txt,sha256=3iy8Z0YPT_JPEaH8VOd3p1S5_pmJE8hyR6wtWTeUOlg,14664
|
|
67
79
|
solace_agent_mesh/common/common_llm_detail.txt,sha256=iOmXuwHVdCMGTyBNG71Pq9MjEJiXAU54j-LyyUTic4Y,115252
|
|
68
|
-
solace_agent_mesh/common/constants.py,sha256=
|
|
80
|
+
solace_agent_mesh/common/constants.py,sha256=YlWnRnIqI13AS8iZt7ntIoF0Q-slsoJx5k2-Y_IrK-k,462
|
|
69
81
|
solace_agent_mesh/common/data_parts.py,sha256=LsHVhxiuuFZP2MbPn61qWV3TCoLi3YxL5xXe9cQcejE,3529
|
|
70
82
|
solace_agent_mesh/common/exceptions.py,sha256=or9OTXM587Ij5yXlF4fagwqXUcRPPDFNX852GPZk09Y,845
|
|
71
|
-
solace_agent_mesh/common/a2a/__init__.py,sha256=
|
|
83
|
+
solace_agent_mesh/common/a2a/__init__.py,sha256=1UFd2UlEPsuxnZQ0L5-9SGakAIDRprsUDjoAnnf7AmM,6963
|
|
72
84
|
solace_agent_mesh/common/a2a/a2a_llm.txt,sha256=viNKm3cHyVqM43PF43CerDVwy5_kvWSkmvEvV9DO0hk,13638
|
|
73
85
|
solace_agent_mesh/common/a2a/a2a_llm_detail.txt,sha256=v-YD6tFEwqmi0uWj_Ab8AEHpu70FlPXPhJSCktMRn90,14034
|
|
74
|
-
solace_agent_mesh/common/a2a/artifact.py,sha256=
|
|
75
|
-
solace_agent_mesh/common/a2a/events.py,sha256
|
|
76
|
-
solace_agent_mesh/common/a2a/message.py,sha256=
|
|
77
|
-
solace_agent_mesh/common/a2a/protocol.py,sha256=
|
|
86
|
+
solace_agent_mesh/common/a2a/artifact.py,sha256=E4JnCwcII840stMEAjLFQgNzl1H4bQvWw8wSCYB3p1Q,11864
|
|
87
|
+
solace_agent_mesh/common/a2a/events.py,sha256=cM34kVICT6mWkPjHX6XH-UXNSF_nNauFGun9BbM_SVE,5495
|
|
88
|
+
solace_agent_mesh/common/a2a/message.py,sha256=zurYLxhAJc49ZHggird4nYHc-4VvGHiK8PMueqVvigA,10465
|
|
89
|
+
solace_agent_mesh/common/a2a/protocol.py,sha256=TZKdgnOgzUov9-ZP9S12dT7Y3MGDYwZd4-jN0uSc_hY,19517
|
|
78
90
|
solace_agent_mesh/common/a2a/task.py,sha256=906ByBEw7mlZEabMmgUSkzlFEHUC3r1HYwSuP2OdLog,3153
|
|
79
91
|
solace_agent_mesh/common/a2a/translation.py,sha256=yVPNGms-jZdJNCPqe3064tBA0aLKxoEgxCLcadh3980,24738
|
|
80
92
|
solace_agent_mesh/common/a2a/types.py,sha256=N0azqlzGXwzmNQ9MLLR1b7lfmY_GrZ4JDHZQMe8sB0g,1717
|
|
@@ -117,7 +129,7 @@ solace_agent_mesh/common/utils/log_formatters.py,sha256=EV8-ryy9mQgGv8hXipKrdXCu
|
|
|
117
129
|
solace_agent_mesh/common/utils/message_utils.py,sha256=lb4A-ZKC8iAy25uiM4BZ1j2YlaQhVv4h2aUrANh4HNY,2827
|
|
118
130
|
solace_agent_mesh/common/utils/mime_helpers.py,sha256=wbX5g4GNodyWdcmMeKc1VxZcHdDhItN4hrZI3-siqlk,4316
|
|
119
131
|
solace_agent_mesh/common/utils/push_notification_auth.py,sha256=sYCdfdSzqhUql_6GjkqpPFmdSxNH88I017RD247atcQ,4624
|
|
120
|
-
solace_agent_mesh/common/utils/pydantic_utils.py,sha256=
|
|
132
|
+
solace_agent_mesh/common/utils/pydantic_utils.py,sha256=d0aRC0YQ5cB-hvuavRI50k6Ht3BSVaWq_gC2HUIoDTA,2553
|
|
121
133
|
solace_agent_mesh/common/utils/type_utils.py,sha256=07yggtdpGjSwTleLevcJKWyZCZ2Kq5wnNoJMG9BMhio,1002
|
|
122
134
|
solace_agent_mesh/common/utils/utils_llm.txt,sha256=5V4Qx8lJDPSGfnQxhI7_0JxYjTcgq8Q08l40WKKIrws,14482
|
|
123
135
|
solace_agent_mesh/common/utils/utils_llm_detail.txt,sha256=uz1M_G73y5ax1eJrHD2V10SkbzTsau4AE1_engfOXBk,28275
|
|
@@ -137,19 +149,19 @@ solace_agent_mesh/gateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
137
149
|
solace_agent_mesh/gateway/gateway_llm.txt,sha256=xqO3zJtmHt1jpyugcAIPqzRMGtzPp_jwpp3xgGLN1ng,14340
|
|
138
150
|
solace_agent_mesh/gateway/gateway_llm_detail.txt,sha256=jHfCbg3yc9TzfquWHzTnet1CogPnuMS_MoOvhbNhnZI,160497
|
|
139
151
|
solace_agent_mesh/gateway/base/__init__.py,sha256=lOpIGp8W2rFNpLxfpk3VKLA-dBqxwtMxMVlhbaCisJY,72
|
|
140
|
-
solace_agent_mesh/gateway/base/app.py,sha256=
|
|
152
|
+
solace_agent_mesh/gateway/base/app.py,sha256=0ZtwNvWnXrhpWD6MCjT6JmqnTlWWanpS6ZD--ancPeU,11206
|
|
141
153
|
solace_agent_mesh/gateway/base/base_llm.txt,sha256=3yi2tsWV4G-9hREufHH1qw-yKAaCptE-g_7iCM0IEcA,11291
|
|
142
154
|
solace_agent_mesh/gateway/base/base_llm_detail.txt,sha256=Ze20nlTHpObSYWGxtz98jW9gzijdoz7IVI-N9wtPaGs,11694
|
|
143
|
-
solace_agent_mesh/gateway/base/component.py,sha256=
|
|
155
|
+
solace_agent_mesh/gateway/base/component.py,sha256=BohtpvJSmfKMrvrSLyFahUEXAXVHeYpJojlXglDScYY,55400
|
|
144
156
|
solace_agent_mesh/gateway/base/task_context.py,sha256=GhOkMgLfOO2jaxglwWk0tJ-afZO4RBa91WbHEUAEd7U,2448
|
|
145
157
|
solace_agent_mesh/gateway/http_sse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
158
|
solace_agent_mesh/gateway/http_sse/alembic.ini,sha256=5pfm9eJ_HBeVNt8TGRbeAb20y7eHpOAvhwfed5hyzo0,4651
|
|
147
159
|
solace_agent_mesh/gateway/http_sse/app.py,sha256=v7C1EMAzMV486pTBUHna6TsKabf-Wf03lLyC9X3-53A,12548
|
|
148
|
-
solace_agent_mesh/gateway/http_sse/component.py,sha256=
|
|
149
|
-
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=
|
|
160
|
+
solace_agent_mesh/gateway/http_sse/component.py,sha256=NlNfzBbm1le7cc9fCY9hbZ6ovfVMesumJozAJbgIiOw,93316
|
|
161
|
+
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=BHN1v6ntzV-HmT3ss7OPgK-FIIXLsk_muIfjbmePcU8,20881
|
|
150
162
|
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=YFNRwJhXPbuqm_AlpyuPvGo4vOZPraxZROcjJOI1peA,14488
|
|
151
163
|
solace_agent_mesh/gateway/http_sse/http_sse_llm_detail.txt,sha256=w52lYh7C9T6Z7vx6GTb3zBYkvCRHxfFtaN8Hb1LG_DQ,134621
|
|
152
|
-
solace_agent_mesh/gateway/http_sse/main.py,sha256=
|
|
164
|
+
solace_agent_mesh/gateway/http_sse/main.py,sha256=HeEk1llaQHpuK7FqCf8cKJGai3oVJmq6k0emjogwqKc,27132
|
|
153
165
|
solace_agent_mesh/gateway/http_sse/session_manager.py,sha256=9AMKuaef0yDNcZqWvNW9DH4Nb6sKqRluWGmrF2JN_mo,8540
|
|
154
166
|
solace_agent_mesh/gateway/http_sse/sse_event_buffer.py,sha256=RVEmuR-t1M6y88HiUENjislTtPoW2PeEApn69owou84,3212
|
|
155
167
|
solace_agent_mesh/gateway/http_sse/sse_manager.py,sha256=XbShOOgwO8ck6CMudRReHoC2FF_yRuNoOWbEyNKbAs8,14639
|
|
@@ -160,18 +172,19 @@ solace_agent_mesh/gateway/http_sse/alembic/versions/20250910_d5b3f8f2e9a0_create
|
|
|
160
172
|
solace_agent_mesh/gateway/http_sse/alembic/versions/20250911_b1c2d3e4f5g6_add_database_indexes.py,sha256=HZbxw5PrpneWIwMFteu-LGsoef8GD1F43vLiFfvBTaw,2408
|
|
161
173
|
solace_agent_mesh/gateway/http_sse/alembic/versions/20250916_f6e7d8c9b0a1_convert_timestamps_to_epoch_and_align_columns.py,sha256=pU9e_X0X4ggjyg8rhSsuutTD0EKi-jrez8n16xWIy00,15682
|
|
162
174
|
solace_agent_mesh/gateway/http_sse/alembic/versions/20251006_98882922fa59_add_tasks_events_feedback_chat_tasks.py,sha256=uXMC_l-czaDwiAlZziqK8Lsa9-6mdDQrfaBN0UG5mOc,7619
|
|
175
|
+
solace_agent_mesh/gateway/http_sse/alembic/versions/20251015_add_session_performance_indexes.py,sha256=3RnNTDfEk4D8-7VoPMd_gv21N2sdkYfL4JTCzkpfhC8,1855
|
|
163
176
|
solace_agent_mesh/gateway/http_sse/alembic/versions/versions_llm.txt,sha256=RA5KkbWXimw4EpwZb26axs3OmN9JcfWvpkRL5vA7Dog,6665
|
|
164
177
|
solace_agent_mesh/gateway/http_sse/components/__init__.py,sha256=zSidQziYjSrjX5XXXbyBAJ7pgKr0Efy6RXiJiufdq0Q,186
|
|
165
178
|
solace_agent_mesh/gateway/http_sse/components/components_llm.txt,sha256=tgLaAwSBivsYpkOL3Nd2dZcflhjM34a8W9IJFvvANIY,4981
|
|
166
179
|
solace_agent_mesh/gateway/http_sse/components/task_logger_forwarder.py,sha256=1hyvOtZcQEDOdK2KvXdohOiOl9bQz6UDkf8-dOZWW8I,3934
|
|
167
180
|
solace_agent_mesh/gateway/http_sse/components/visualization_forwarder_component.py,sha256=bAJSEMZOBbam4bk30HvnOYgUPUlT84iyf_mPtX-cz_Y,3950
|
|
168
181
|
solace_agent_mesh/gateway/http_sse/repository/__init__.py,sha256=hq8k-0dN_bOg9X70agz63zbxeVXvLWLrOnues_46voY,587
|
|
169
|
-
solace_agent_mesh/gateway/http_sse/repository/chat_task_repository.py,sha256=
|
|
170
|
-
solace_agent_mesh/gateway/http_sse/repository/feedback_repository.py,sha256=
|
|
171
|
-
solace_agent_mesh/gateway/http_sse/repository/interfaces.py,sha256=
|
|
182
|
+
solace_agent_mesh/gateway/http_sse/repository/chat_task_repository.py,sha256=6mNptQWMEvEtmHDApMYla2zA4a_sl-zhR1I1ANHxgYI,3548
|
|
183
|
+
solace_agent_mesh/gateway/http_sse/repository/feedback_repository.py,sha256=LNwDr_7on8AKkrojChG79C0enUeFh5iLQT43p7dNj-A,2531
|
|
184
|
+
solace_agent_mesh/gateway/http_sse/repository/interfaces.py,sha256=YhRREggkiRItt_94PzIrnt9ZuS70kdKy0M8jptQ7eFc,3928
|
|
172
185
|
solace_agent_mesh/gateway/http_sse/repository/repository_llm.txt,sha256=_iUQgNpEV1qoLMmpb3ARzciircZ0mubnt-j-CE3s2k4,14455
|
|
173
|
-
solace_agent_mesh/gateway/http_sse/repository/session_repository.py,sha256=
|
|
174
|
-
solace_agent_mesh/gateway/http_sse/repository/task_repository.py,sha256=
|
|
186
|
+
solace_agent_mesh/gateway/http_sse/repository/session_repository.py,sha256=_iaKf-Tm4QKyJXMb9hguSmuxWBisAO_OVoRiVWRAeo0,3616
|
|
187
|
+
solace_agent_mesh/gateway/http_sse/repository/task_repository.py,sha256=bIvXRY3CYXVPX5gwh8jpJQim_TpQd-Afz_M_lyHl12w,5795
|
|
175
188
|
solace_agent_mesh/gateway/http_sse/repository/entities/__init__.py,sha256=otbUQnXV3lMHpW2DfsjAN9xrmk7oniktIKlq46uiPB0,268
|
|
176
189
|
solace_agent_mesh/gateway/http_sse/repository/entities/chat_task.py,sha256=z_5bJKYvNhmD7QH3Gv7cIoTGvy941s5Vz_Z1UOahivI,2506
|
|
177
190
|
solace_agent_mesh/gateway/http_sse/repository/entities/entities_llm.txt,sha256=04BV9BDJ3Cwj8R50qNAecrV4xbRN5mB_zMEKtyFC928,10018
|
|
@@ -189,18 +202,18 @@ solace_agent_mesh/gateway/http_sse/repository/models/session_model.py,sha256=pMv
|
|
|
189
202
|
solace_agent_mesh/gateway/http_sse/repository/models/task_event_model.py,sha256=CKO6FWWC0UEXkW2-jqwfzyXP44cBXg0TBOABCAhezNc,752
|
|
190
203
|
solace_agent_mesh/gateway/http_sse/repository/models/task_model.py,sha256=07mcBIyIEEsz599iCSgjDDsuWrIT-so3o3iXhtzS1Ho,972
|
|
191
204
|
solace_agent_mesh/gateway/http_sse/routers/__init__.py,sha256=WxRX__xU4YIYhvjN0DTY9XdNYAB9dP81pabwiB23YSo,133
|
|
192
|
-
solace_agent_mesh/gateway/http_sse/routers/agent_cards.py,sha256=
|
|
193
|
-
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=
|
|
205
|
+
solace_agent_mesh/gateway/http_sse/routers/agent_cards.py,sha256=kS4XX_rIDmvOyKGVe0z7YkdrGwBuM4VAZpVISAmixL4,1367
|
|
206
|
+
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=2Jd2xvwqi2kX0P_EoySm-4yR6ZV86w6rUhWZlyYQPRg,35142
|
|
194
207
|
solace_agent_mesh/gateway/http_sse/routers/auth.py,sha256=Ui4oR1rflW_y0UlzueMPa3sDCn5vC8Uwc6POReyu_0w,7204
|
|
195
208
|
solace_agent_mesh/gateway/http_sse/routers/config.py,sha256=_xOEkt6JBMmnA7tIZmzvA17iq_RrI14mC67h8OlHPN8,3245
|
|
196
209
|
solace_agent_mesh/gateway/http_sse/routers/feedback.py,sha256=ba98jDi02G4Lvlr_jzI3BDUVZ1wvm3INRU7v2psxS1o,1168
|
|
197
210
|
solace_agent_mesh/gateway/http_sse/routers/people.py,sha256=PJYryRg4OmMeLed5OuzuaRvSW5_SzoPJXKZIneVATG8,1161
|
|
198
211
|
solace_agent_mesh/gateway/http_sse/routers/routers_llm.txt,sha256=2Wg3eDfU-UmFAvgRTNDyKRWlVXKa0rZSPwCuiP8JxRU,14738
|
|
199
|
-
solace_agent_mesh/gateway/http_sse/routers/sessions.py,sha256=
|
|
212
|
+
solace_agent_mesh/gateway/http_sse/routers/sessions.py,sha256=1CtowdJTw_wF0Xcg_XGcCjHZnN1qhlTfbmMNwsiJOSY,15556
|
|
200
213
|
solace_agent_mesh/gateway/http_sse/routers/sse.py,sha256=cpGoxTDcbv69YeUHa6USWuSRv7IGNd0lE8IuiUGWt4o,5373
|
|
201
|
-
solace_agent_mesh/gateway/http_sse/routers/tasks.py,sha256=
|
|
214
|
+
solace_agent_mesh/gateway/http_sse/routers/tasks.py,sha256=NosvuRMJ8QCbky7X3Okn_W8aXv9AQLbvY8I51_nItK4,15961
|
|
202
215
|
solace_agent_mesh/gateway/http_sse/routers/users.py,sha256=e56MZ7K3sSFqWPNxCi3rPTJ511Fd5tMc9p1BiUNbsgk,885
|
|
203
|
-
solace_agent_mesh/gateway/http_sse/routers/visualization.py,sha256=
|
|
216
|
+
solace_agent_mesh/gateway/http_sse/routers/visualization.py,sha256=5zVn80LUKE7pj_JiqS4IPk70YLJwAo-9XbaV70IYr6s,45163
|
|
204
217
|
solace_agent_mesh/gateway/http_sse/routers/dto/__init__.py,sha256=DbFQNFsN7I0zCkYe2RKTYkcIXPSKgA6dbPITS3AhcX0,201
|
|
205
218
|
solace_agent_mesh/gateway/http_sse/routers/dto/dto_llm.txt,sha256=L3m8WRuZtCfnU9oIGE2I9lfajE169L6egGM7bAhcmQU,10966
|
|
206
219
|
solace_agent_mesh/gateway/http_sse/routers/dto/requests/__init__.py,sha256=ySxcC6OjZGwZpU128_6NHqJgxdsCIK4nuDT1ViAXymY,258
|
|
@@ -210,20 +223,20 @@ solace_agent_mesh/gateway/http_sse/routers/dto/requests/task_requests.py,sha256=
|
|
|
210
223
|
solace_agent_mesh/gateway/http_sse/routers/dto/responses/__init__.py,sha256=D1UqNftNY9ynPt56vUQpXNiMRSzv1IlTuBqcLJS0eJY,336
|
|
211
224
|
solace_agent_mesh/gateway/http_sse/routers/dto/responses/base_responses.py,sha256=YOYmjfXsFMFTRkhke4gg5klCFJSgosr7M_93x1lf81E,1463
|
|
212
225
|
solace_agent_mesh/gateway/http_sse/routers/dto/responses/responses_llm.txt,sha256=tBoazLI0S3EORC6tP5lCYsY_wGvqlvFaAm2yIjQQlao,4449
|
|
213
|
-
solace_agent_mesh/gateway/http_sse/routers/dto/responses/session_responses.py,sha256=
|
|
226
|
+
solace_agent_mesh/gateway/http_sse/routers/dto/responses/session_responses.py,sha256=tub6xdXTJWqYzHmH3PirgoctMPAV4NaYnjrC-bIxr-8,914
|
|
214
227
|
solace_agent_mesh/gateway/http_sse/routers/dto/responses/task_responses.py,sha256=Ecwwshr1NM_fli6ys-NfVF_SNJLOqI-1NiQUN5cxUqM,937
|
|
215
228
|
solace_agent_mesh/gateway/http_sse/services/__init__.py,sha256=Fk2FIbrJdG1StPCoggbdT2C4Vl5d6qICT6R8yj4IZPQ,92
|
|
216
229
|
solace_agent_mesh/gateway/http_sse/services/agent_card_service.py,sha256=SH4ml4gWpKZAncXm6-QCE13o-Thj6cRrJ2OS8RBPtdM,2368
|
|
217
|
-
solace_agent_mesh/gateway/http_sse/services/data_retention_service.py,sha256=
|
|
218
|
-
solace_agent_mesh/gateway/http_sse/services/feedback_service.py,sha256=
|
|
230
|
+
solace_agent_mesh/gateway/http_sse/services/data_retention_service.py,sha256=I2rV3dVdPSq5biS4PWEtNUAcc_f6G0vCXdN7lM0iVTc,9250
|
|
231
|
+
solace_agent_mesh/gateway/http_sse/services/feedback_service.py,sha256=J7vBB21MLFVOZIsqnndty3n66dDf54bIuhfAJ-B-VuY,9954
|
|
219
232
|
solace_agent_mesh/gateway/http_sse/services/people_service.py,sha256=KDPvRC3wC2JbJk14IJX6Q3MsGvmVfy6E2XRR0Qx-12o,2298
|
|
220
233
|
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=OiBm4WQ47VFjMUA6HGDOApizd-H3zqfGs08yo1xhTeM,13173
|
|
221
|
-
solace_agent_mesh/gateway/http_sse/services/session_service.py,sha256=
|
|
222
|
-
solace_agent_mesh/gateway/http_sse/services/task_logger_service.py,sha256=
|
|
234
|
+
solace_agent_mesh/gateway/http_sse/services/session_service.py,sha256=OIOHLaSeOsdQ9S-HdT1QppGzblmvYgyxbu1MRGBZ1IQ,12452
|
|
235
|
+
solace_agent_mesh/gateway/http_sse/services/task_logger_service.py,sha256=jtW_8uSuIFXArQNgzCxp0-N72e-yyojTTGcsqVgGvEc,13157
|
|
223
236
|
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=IuIEiXLJgs0AAMBljqvnfx47o_5HenjDjSXO_qmjz78,4350
|
|
224
237
|
solace_agent_mesh/gateway/http_sse/shared/__init__.py,sha256=QaFnYoCRmznXoB4fmpGXegKhhEpjj6_b3gmZl24E5JA,3520
|
|
225
238
|
solace_agent_mesh/gateway/http_sse/shared/auth_utils.py,sha256=F0kpTg5HYadRAEVNSNvnEFpdzkwVqbFMFVr27kywz_k,852
|
|
226
|
-
solace_agent_mesh/gateway/http_sse/shared/base_repository.py,sha256=
|
|
239
|
+
solace_agent_mesh/gateway/http_sse/shared/base_repository.py,sha256=BDh9fXVAX1pjFRotBQVIRfusJ3Ynv3hCBzHOzDJJgw0,6724
|
|
227
240
|
solace_agent_mesh/gateway/http_sse/shared/database_exceptions.py,sha256=J9-M5PAXdQFfnxf-IbJHdDEhUXEmo6d0aHlfp6nNhK4,10978
|
|
228
241
|
solace_agent_mesh/gateway/http_sse/shared/database_helpers.py,sha256=5YjJ_CfOEBvkvi2xFaWmR8D0NHpxVvibTy1RF_u37Lk,1522
|
|
229
242
|
solace_agent_mesh/gateway/http_sse/shared/enums.py,sha256=gcU_hApRkWcBy0JykqGXSESGyglLXN3FzkimITmwnnE,802
|
|
@@ -234,36 +247,36 @@ solace_agent_mesh/gateway/http_sse/shared/pagination.py,sha256=yPhMvuGOeun9m2wKR
|
|
|
234
247
|
solace_agent_mesh/gateway/http_sse/shared/response_utils.py,sha256=-_z86YA02965CTC3FNSz2QUAKWEuJgZd8UBnXLSpYCw,3556
|
|
235
248
|
solace_agent_mesh/gateway/http_sse/shared/shared_llm.txt,sha256=_zpcj98i0HDSBafBIgGIau3MT_VCvvej8ExkvqCJa3Y,12770
|
|
236
249
|
solace_agent_mesh/gateway/http_sse/shared/timestamp_utils.py,sha256=o3pJKPR6DA8sbOgflnmcotFp4H-I-Hij3lA-7F-yUAM,2380
|
|
237
|
-
solace_agent_mesh/gateway/http_sse/shared/types.py,sha256=
|
|
250
|
+
solace_agent_mesh/gateway/http_sse/shared/types.py,sha256=7suvFOJfVPPdV7dyd6EiQp7k0gMUIA9MfTQ5t34p52Q,1085
|
|
238
251
|
solace_agent_mesh/gateway/http_sse/shared/utils.py,sha256=SAfrRjBc_bwrEVFafGbswBShky2GlzLhp_c7C47QG-w,493
|
|
239
252
|
solace_agent_mesh/gateway/http_sse/utils/__init__.py,sha256=b6hFVAAwJy1eo9AWqwDrJwBzx6OL3RY4cyB7BBq_4Us,42
|
|
240
253
|
solace_agent_mesh/gateway/http_sse/utils/stim_utils.py,sha256=trQip51p1ZizZToViHQQ00I19ZCMQVYUHQ6Fh66J2Vg,920
|
|
241
254
|
solace_agent_mesh/gateway/http_sse/utils/utils_llm.txt,sha256=PVrU-x7BOl7aqu2gvHiibSJQhZ9LDCvnNRJ20a_3zrc,1875
|
|
242
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
255
|
+
solace_agent_mesh/cli/__init__.py,sha256=8EjIC8Er4Bn8PhErizTXrZVYTgb6tHgj00LrrBVNYXA,22
|
|
243
256
|
solace_agent_mesh/cli/main.py,sha256=yFbF4ijz7P6nxj26d-mTC8BnK6NKVnfqPh3y4pDBZqo,831
|
|
244
257
|
solace_agent_mesh/cli/utils.py,sha256=7zntmVuvWbaWEhViSF2uw484-79a5I1XTUt-0eGQWY4,8036
|
|
245
258
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
259
|
solace_agent_mesh/cli/commands/docs_cmd.py,sha256=vNXyKADt8RrKnP7wsLaj7fBaz6SUgXMMItygHrohE_Y,1953
|
|
247
|
-
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=
|
|
260
|
+
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=FVnY3-Zf_NTU7vGYIbtUGaikSjLv48_a6Av5yCxZwgI,1323
|
|
248
261
|
solace_agent_mesh/cli/commands/run_cmd.py,sha256=vgR6UDaZ_f7H95cr5_8XCh0ifGp2z0E9CZaaJ2xR5lM,7437
|
|
249
262
|
solace_agent_mesh/cli/commands/add_cmd/__init__.py,sha256=IGTXUx_AcoinYlzlZtQsjiCYbe76ZiLqxAcGc6-uoDE,280
|
|
250
263
|
solace_agent_mesh/cli/commands/add_cmd/add_cmd_llm.txt,sha256=x-UE5buoIEE_oUJ3opOzW8U33S3XUKCRNKWxNXNVk-c,10212
|
|
251
|
-
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=
|
|
264
|
+
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=pNqZL6mWiE9eafE-YFYqs_Q62whu1kYYp3dE3guWjn4,27180
|
|
252
265
|
solace_agent_mesh/cli/commands/add_cmd/gateway_cmd.py,sha256=kV7XOo2CvYWPQ6AL8cLDm-2GACbLAUlQc2c9fNzybEY,12840
|
|
253
266
|
solace_agent_mesh/cli/commands/add_cmd/web_add_agent_step.py,sha256=niutiDp5neHtgEEtWKcK9TGLJHga87y46rrjVHdjkFU,3702
|
|
254
267
|
solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py,sha256=Gk6Mw54l_M9QJKBa0IkHOkKJmuTsb4HQkIUTyVN-tqE,4326
|
|
255
|
-
solace_agent_mesh/cli/commands/init_cmd/__init__.py,sha256=
|
|
268
|
+
solace_agent_mesh/cli/commands/init_cmd/__init__.py,sha256=7XDRxllS-umVklmUahiaGb16ZU-6O0S-hGg1o_c6EoM,14970
|
|
256
269
|
solace_agent_mesh/cli/commands/init_cmd/broker_step.py,sha256=FcDTrzZITTPaFPS8iUFyDDOK4Bbd_kiXl7ftsF1EMYU,7010
|
|
257
270
|
solace_agent_mesh/cli/commands/init_cmd/database_step.py,sha256=sO52x4weVPpwyICn7k-YMe7ByEZV_Sf4ME3QpaGj7wo,2921
|
|
258
271
|
solace_agent_mesh/cli/commands/init_cmd/directory_step.py,sha256=3uPZybhDh84vtXqFfck4__6Dbi9LdqXqs0nRjP3VApY,862
|
|
259
|
-
solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=
|
|
272
|
+
solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=layqtdij1WUEjxLLrYs0mmnonVfR_ugVtR7HtjPKpSE,7504
|
|
260
273
|
solace_agent_mesh/cli/commands/init_cmd/init_cmd_llm.txt,sha256=mCUzKbriK0FSdsRvBANLac50x8t39gT0D3jS-4Zirjc,13226
|
|
261
|
-
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=
|
|
274
|
+
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=LZKbtZLUcQIRglPfUWqhimwRPEb7_9G3l-IlzFVhvnA,18219
|
|
262
275
|
solace_agent_mesh/cli/commands/init_cmd/project_files_step.py,sha256=bOh7yYuaXIIs0q3-nd1nSVc6P6g6EHoDJjFDlKZVnf4,1352
|
|
263
276
|
solace_agent_mesh/cli/commands/init_cmd/web_init_step.py,sha256=YoHEiEMZf_ZPG1qvLMJads_ET6IYEKJCCCees5_tqbY,4197
|
|
264
|
-
solace_agent_mesh/cli/commands/init_cmd/webui_gateway_step.py,sha256=
|
|
277
|
+
solace_agent_mesh/cli/commands/init_cmd/webui_gateway_step.py,sha256=s98qm5vuqq2xq6JMGIesv5qt0iMC5iX5l_ns2MlXzEs,7315
|
|
265
278
|
solace_agent_mesh/cli/commands/plugin_cmd/__init__.py,sha256=BIes7cBV0CyJEhhT0QnaQqEj_wIRT_cjnZHwKlIPtj0,594
|
|
266
|
-
solace_agent_mesh/cli/commands/plugin_cmd/add_cmd.py,sha256=
|
|
279
|
+
solace_agent_mesh/cli/commands/plugin_cmd/add_cmd.py,sha256=ky4PFJxa4-wxaLPxphnwBngRmmBxhov03zO-7hgdY70,5062
|
|
267
280
|
solace_agent_mesh/cli/commands/plugin_cmd/build_cmd.py,sha256=OzEO2lsezlIZe29jWiR08ajQeDEP1cYqrWaMSd8i8o4,2988
|
|
268
281
|
solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py,sha256=GskrCwJQ42upCIG2nvMomprPrT1f9sBnkGast2ZLb_c,5136
|
|
269
282
|
solace_agent_mesh/cli/commands/plugin_cmd/create_cmd.py,sha256=JMg54K7BYAB9Wd6lMYT0PI21zNibh4NveA5nGe8swHo,11770
|
|
@@ -271,15 +284,13 @@ solace_agent_mesh/cli/commands/plugin_cmd/install_cmd.py,sha256=DYi9GTs99Xv5PTEh
|
|
|
271
284
|
solace_agent_mesh/cli/commands/plugin_cmd/official_registry.py,sha256=rnzQq3LDvSzvCPoEhoSn6M3xQG4AVLd54PX9cA5GzPg,5218
|
|
272
285
|
solace_agent_mesh/cli/commands/plugin_cmd/plugin_cmd_llm.txt,sha256=7eCoaN4JNCfSUpvRB-IWS8eBBEjaIhl84hiP2imBWNk,10934
|
|
273
286
|
solace_agent_mesh/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
-
solace_agent_mesh/evaluation/
|
|
275
|
-
solace_agent_mesh/evaluation/
|
|
276
|
-
solace_agent_mesh/evaluation/
|
|
277
|
-
solace_agent_mesh/evaluation/
|
|
278
|
-
solace_agent_mesh/evaluation/
|
|
279
|
-
solace_agent_mesh/evaluation/
|
|
280
|
-
solace_agent_mesh/evaluation/
|
|
281
|
-
solace_agent_mesh/evaluation/summary_builder.py,sha256=a2I4XFf5zbolNWw0TIN5hAMLMNSqylIlpryR1q8pFrI,27639
|
|
282
|
-
solace_agent_mesh/evaluation/test_case_loader.py,sha256=lt-lM1USazWdJ9zynpoFlmFrJLkX8DvWeM8WsqhLguc,24449
|
|
287
|
+
solace_agent_mesh/evaluation/evaluator.py,sha256=bxKfX_5sxn3a2mL4afV6UtQGFo_8D59mL5TNvQ8ETBA,24292
|
|
288
|
+
solace_agent_mesh/evaluation/message_organizer.py,sha256=KZViWoufQHQZV6aM7kPdksdHnliqFTEvWJi2d7dZl4U,19794
|
|
289
|
+
solace_agent_mesh/evaluation/report_data_processor.py,sha256=96HX2JKDGV9zCmK09avsWmpI39dZgZa42yB1zJVtHE8,38902
|
|
290
|
+
solace_agent_mesh/evaluation/report_generator.py,sha256=5rX30mgr8DtDpHJmhveDVADYneZBOzMBnczUZMzrKpE,22760
|
|
291
|
+
solace_agent_mesh/evaluation/run.py,sha256=kY5SzHgYP7iVBux4TMUVkmmjpgOUSCZLhg-0XdGf9iI,35400
|
|
292
|
+
solace_agent_mesh/evaluation/subscriber.py,sha256=nYMZ7cO0_QkguW7LuPPIdj_sWkzNyyLGccD8WjQ_mos,26054
|
|
293
|
+
solace_agent_mesh/evaluation/summary_builder.py,sha256=emdg9geljhcrU-65Qs-VEo2QgQjggZMvPbAqahpnbo8,31925
|
|
283
294
|
solace_agent_mesh/evaluation/report/benchmark_info.html,sha256=bSjYFWC8qmLxk8VmSPBJHalPLJ9dm4Pim-sN9Zg2wd8,905
|
|
284
295
|
solace_agent_mesh/evaluation/report/chart_section.html,sha256=Cfi0E4_Bqe7fHT8EDM9AQhVcNZ7Sn9ag47BU0-aog0c,4310
|
|
285
296
|
solace_agent_mesh/evaluation/report/detailed_breakdown.html,sha256=1vh9ip9mXYbxHSNdeUng108EsYPPwZWTsZfgmr-mTjM,890
|
|
@@ -290,29 +301,35 @@ solace_agent_mesh/evaluation/report/modal_styles.css,sha256=8VaQ6P3pqWDcymUCSWQ6
|
|
|
290
301
|
solace_agent_mesh/evaluation/report/performance_metrics_styles.css,sha256=2bdQFQU06POcKBiYAO8p5e8OYFrOiLw9U_7lG_MZdjY,1944
|
|
291
302
|
solace_agent_mesh/evaluation/report/templates/footer.html,sha256=Au1U7cQvu7w2mIsqGEtn5JVovkgHgyU4upt-3aU3RNg,16
|
|
292
303
|
solace_agent_mesh/evaluation/report/templates/header.html,sha256=XP11gY77aoNWrI57RvIi1KItaltXzchHp5EFhu7DAAY,8802
|
|
304
|
+
solace_agent_mesh/evaluation/shared/__init__.py,sha256=7-VobLLJIeQB3O7kfu7StjvGOHaubFRLSy69estx8yA,2232
|
|
305
|
+
solace_agent_mesh/evaluation/shared/constants.py,sha256=ZPqxATB5jm8IwUKXmfET6tFVFfYT1aswNSFuE7K99bw,1123
|
|
306
|
+
solace_agent_mesh/evaluation/shared/exceptions.py,sha256=Tml7CECBMUy9-SLbsyGefK8udRNIP2TC9rT_fhR3jm0,1301
|
|
307
|
+
solace_agent_mesh/evaluation/shared/helpers.py,sha256=MOYdC2dK8c4fUqU2T7i_vsXsiN7J8y7qP0QJogb9wFQ,1050
|
|
308
|
+
solace_agent_mesh/evaluation/shared/test_case_loader.py,sha256=4AfBKC_Mz9Z6b9rB3TyEIsRZDaWwygNS3Qzd-pzJbJs,5694
|
|
309
|
+
solace_agent_mesh/evaluation/shared/test_suite_loader.py,sha256=mZ084ncQqY1QaK6onSlWZ0ACvQzFel43TWb7-f6rqck,11745
|
|
293
310
|
solace_agent_mesh/templates/agent_template.yaml,sha256=5SsauO84yXI1vIS1OLaRwZDEskKMvUKfVTcjj78jN7I,1627
|
|
294
311
|
solace_agent_mesh/templates/eval_backend_template.yaml,sha256=bWAgyXPc4mQot7IWlPa0_O5eGQcQ-Mg_DZzQW6fOrP4,1866
|
|
295
312
|
solace_agent_mesh/templates/gateway_app_template.py,sha256=nhy0QTO-5TAVYXodpjl3-v4qqAojQR8hHwK6OXMQR9E,3035
|
|
296
313
|
solace_agent_mesh/templates/gateway_component_template.py,sha256=XSSVlupAMkWArNkGU6juOvR0yEwm6jtJ9RoUCKvX8p4,23946
|
|
297
|
-
solace_agent_mesh/templates/gateway_config_template.yaml,sha256=
|
|
298
|
-
solace_agent_mesh/templates/logging_config_template.ini,sha256=
|
|
314
|
+
solace_agent_mesh/templates/gateway_config_template.yaml,sha256=QVRoL9wY-m42MFaXSqYr9sDx9-VVcq_eAAmYq9IRklw,1102
|
|
315
|
+
solace_agent_mesh/templates/logging_config_template.ini,sha256=8Qcm-SDRhl4vajpwt1TqrJPcpivyYCE4qFvMpxstuWY,1026
|
|
299
316
|
solace_agent_mesh/templates/main_orchestrator.yaml,sha256=Ig4DwYViFXN-1KFn1gR5CVIEeK0dbC8PxfNz5bFqFAE,1757
|
|
300
317
|
solace_agent_mesh/templates/plugin_agent_config_template.yaml,sha256=giUU5YSqT5xIRkM7H1YR5bmP9KdRFvWfjwlK9lgs3rw,4493
|
|
301
318
|
solace_agent_mesh/templates/plugin_custom_config_template.yaml,sha256=bv7Sep_5sUKMpzzPRYO98SHGt0zuLIfDIDLKBdpPBfM,1117
|
|
302
319
|
solace_agent_mesh/templates/plugin_custom_template.py,sha256=-c7JD_AGfgBqatPMvJBpSDaiwKp5LsbjrKn_sDSAy_4,360
|
|
303
|
-
solace_agent_mesh/templates/plugin_gateway_config_template.yaml,sha256=
|
|
320
|
+
solace_agent_mesh/templates/plugin_gateway_config_template.yaml,sha256=keKyi5xdaEsPWwgjusaX2jdb_zVCs_k0N60x0o5yBks,2429
|
|
304
321
|
solace_agent_mesh/templates/plugin_pyproject_template.toml,sha256=A-QY7mtEvpvPiBhkAg-ACp7QkVr2PGTdDcOh3F9n4c8,902
|
|
305
322
|
solace_agent_mesh/templates/plugin_readme_template.md,sha256=i094KPRPL_u3JTA1h6FRjMy0YlA_B4jNKDBiYdE6wbM,1271
|
|
306
323
|
solace_agent_mesh/templates/plugin_tools_template.py,sha256=eyMXE2oGo7F-Lo_pGk7X-aeffFQtjjsM8o6KdJaxPrI,8455
|
|
307
|
-
solace_agent_mesh/templates/shared_config.yaml,sha256=
|
|
324
|
+
solace_agent_mesh/templates/shared_config.yaml,sha256=9BEkubm0xxCO6Rsxcd6IXQKodbg9Hwp6DeLE0vyXiv8,5826
|
|
308
325
|
solace_agent_mesh/templates/templates_llm.txt,sha256=T3h8CcIowTbyBedlfRk7FZww8_xGmnY5fEqGhhdI3JU,9234
|
|
309
326
|
solace_agent_mesh/templates/webui.yaml,sha256=4cEkPXLRhpATVD3A0UuJuo5aG0ApEseiADGtY3-W5qw,1784
|
|
310
|
-
solace_agent_mesh/assets/docs/404.html,sha256=
|
|
311
|
-
solace_agent_mesh/assets/docs/lunr-index-
|
|
312
|
-
solace_agent_mesh/assets/docs/lunr-index.json,sha256=
|
|
313
|
-
solace_agent_mesh/assets/docs/search-doc-
|
|
314
|
-
solace_agent_mesh/assets/docs/search-doc.json,sha256=
|
|
315
|
-
solace_agent_mesh/assets/docs/sitemap.xml,sha256=
|
|
327
|
+
solace_agent_mesh/assets/docs/404.html,sha256=Zv-NaC2sBm3udHH44t8QAKkWUtOc0O9NrLDeT-p9Znc,11711
|
|
328
|
+
solace_agent_mesh/assets/docs/lunr-index-1761165361160.json,sha256=4Y5Ajy7BYHLkQSYZi_-G9Q0ibDDAde87bHeC8xpgt0w,1608283
|
|
329
|
+
solace_agent_mesh/assets/docs/lunr-index.json,sha256=4Y5Ajy7BYHLkQSYZi_-G9Q0ibDDAde87bHeC8xpgt0w,1608283
|
|
330
|
+
solace_agent_mesh/assets/docs/search-doc-1761165361160.json,sha256=Ibj2eQ7X2ovKopWGsZX5WEdwr8ogQaHoWX_iO98_xIc,592375
|
|
331
|
+
solace_agent_mesh/assets/docs/search-doc.json,sha256=Ibj2eQ7X2ovKopWGsZX5WEdwr8ogQaHoWX_iO98_xIc,592375
|
|
332
|
+
solace_agent_mesh/assets/docs/sitemap.xml,sha256=vqqR2yHJHnjcTLKtD2LJzFmIKx2RBV049ADJV4bKkgQ,8412
|
|
316
333
|
solace_agent_mesh/assets/docs/assets/css/styles.906a1503.css,sha256=gQj16ydMLPiq6y-t8Ovto65hsvPbQX6coyIFOja-2eY,83293
|
|
317
334
|
solace_agent_mesh/assets/docs/assets/images/Solace_AI_Framework_With_Broker-85f0a306a9bcdd20b390b7a949f6d862.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
318
335
|
solace_agent_mesh/assets/docs/assets/images/sam-enterprise-credentials-b269f095349473118b2b33bdfcc40122.png,sha256=pJb4UjHrgDm22w1beXrbE9l1ElMeK546-PwMNNoBPXM,594985
|
|
@@ -354,7 +371,7 @@ solace_agent_mesh/assets/docs/assets/js/547e15cc.2cbb060a.js,sha256=qQONy13V43Wa
|
|
|
354
371
|
solace_agent_mesh/assets/docs/assets/js/55b7b518.f2b1d1ba.js,sha256=NzoFznfi6UuL15DBYtZLM-xVDML3_01fVfqNjos_e1A,10974
|
|
355
372
|
solace_agent_mesh/assets/docs/assets/js/5607.081356f8.js,sha256=82P_IlhzwOSMkBDBTXHJsjSx0s1dFbcojWnOC-Vp7qU,194
|
|
356
373
|
solace_agent_mesh/assets/docs/assets/js/5864.b0d0e9de.js,sha256=XRxc9MFKvCVwmU2KY3io24cVMqk_dK8koh1B2rEQINQ,33926
|
|
357
|
-
solace_agent_mesh/assets/docs/assets/js/5c2bd65f.
|
|
374
|
+
solace_agent_mesh/assets/docs/assets/js/5c2bd65f.eda4bcb2.js,sha256=0xHEYC1-by9IEmPl897wqji6AosBL4b_u7X1GkkG7sk,18357
|
|
358
375
|
solace_agent_mesh/assets/docs/assets/js/5e95c892.558d5167.js,sha256=LrlOoFsc_wTcyuzay3WDxkpYtVGn2kUIWCosBvg_z8I,377
|
|
359
376
|
solace_agent_mesh/assets/docs/assets/js/6063ff4c.ef84f702.js,sha256=hKwjAMrZXRTORlVxD4LyXi6crri49l-SaZ1kOEs6qZ0,10815
|
|
360
377
|
solace_agent_mesh/assets/docs/assets/js/6143.0a1464c9.js,sha256=N9VlCMIQjWkazDtcal5eC7xe1YvOVCMRx119JzMQl1k,39122
|
|
@@ -364,16 +381,16 @@ solace_agent_mesh/assets/docs/assets/js/6796.51d2c9b7.js,sha256=yeZg7UFFslMqrIQP
|
|
|
364
381
|
solace_agent_mesh/assets/docs/assets/js/6976.379be23b.js,sha256=Fe3y3jWBBUqmD4dIUwZUUjiCvv5uSLEss3cOEzUDB9E,193
|
|
365
382
|
solace_agent_mesh/assets/docs/assets/js/6978.ee0b945c.js,sha256=Fabb2n81BbNegY_9ZboMCBu-Zgd5-nETGqLxviUogDg,11834
|
|
366
383
|
solace_agent_mesh/assets/docs/assets/js/6a520c9d.ba015d81.js,sha256=ux9WdT3PjXvyjC9MyFxPmc1YBAcDSdlfg6NyMYHFa2E,34315
|
|
367
|
-
solace_agent_mesh/assets/docs/assets/js/6ad8f0bd.
|
|
384
|
+
solace_agent_mesh/assets/docs/assets/js/6ad8f0bd.f4b15f3b.js,sha256=8RbcGgEypnXhYZy1F-uCmLx8JyueQnca7E6z7qJUPoI,45227
|
|
368
385
|
solace_agent_mesh/assets/docs/assets/js/6d84eae0.4a5fbf39.js,sha256=eq0BhP5AVCtWYrjrUHH24eISAPUARR3mKNurm3yDypk,6565
|
|
369
386
|
solace_agent_mesh/assets/docs/assets/js/6fdfefc7.99de744e.js,sha256=pKonHEJWDFfAS6NCC6R5otNU8GIejf-h6nQOg_Mn0Nw,9060
|
|
370
387
|
solace_agent_mesh/assets/docs/assets/js/7040.cb436723.js,sha256=cmW7CCISvRnJNljTDg4jGJtG6rjSp0nWfZvchAKSdf4,36638
|
|
371
388
|
solace_agent_mesh/assets/docs/assets/js/7195.412f418a.js,sha256=8VHuob7jbA49epJL54bEU-mtOdSeUFXzqbgThE4walo,46219
|
|
372
|
-
solace_agent_mesh/assets/docs/assets/js/71da7b71.
|
|
389
|
+
solace_agent_mesh/assets/docs/assets/js/71da7b71.38583438.js,sha256=yLGG54ZVeDttsA4YzS9jLb_sM8XDXvTY9IyJwoPcoIE,31807
|
|
373
390
|
solace_agent_mesh/assets/docs/assets/js/722f809d.965da774.js,sha256=LwG8w8krOZrpQrJKFeCiYT2PI0T74FiGLnC8F76wSDs,10594
|
|
374
391
|
solace_agent_mesh/assets/docs/assets/js/7280.3fb73bdb.js,sha256=XlDQpYplGuVoEqfXCt8Yzocd9uBTu64VUrNp4LQDyIY,659
|
|
375
392
|
solace_agent_mesh/assets/docs/assets/js/742f027b.46c07808.js,sha256=KGUEaUlNvHExhvWmzJ7V_xPE6CJQB2LrdWzJkyzz6fQ,8893
|
|
376
|
-
solace_agent_mesh/assets/docs/assets/js/77cf947d.
|
|
393
|
+
solace_agent_mesh/assets/docs/assets/js/77cf947d.48cb18a2.js,sha256=sKk2An5nFXQK-KP9PZBsKDHQjo8cz1j9Bawa2KTORRo,5534
|
|
377
394
|
solace_agent_mesh/assets/docs/assets/js/7845.e33e7c4c.js,sha256=sNEWPWBTnV-BmKI7vkcgRpTYeErGBXRbtH_X5YRnr-c,11143
|
|
378
395
|
solace_agent_mesh/assets/docs/assets/js/7900.69516146.js,sha256=MWXxfpYNV5CORkPa0r6EyyynbVJrNENknNv0Zb7TqS8,43021
|
|
379
396
|
solace_agent_mesh/assets/docs/assets/js/8024126c.56e59919.js,sha256=WfzNazf2O_G145Vgt3MUm-9uqt0wW8nWTE-PZ27mQ5U,33807
|
|
@@ -389,79 +406,83 @@ solace_agent_mesh/assets/docs/assets/js/8709.7ecd4047.js,sha256=YU5vUOSZ5gdEKBbf
|
|
|
389
406
|
solace_agent_mesh/assets/docs/assets/js/8731.6c1dbf0c.js,sha256=A6pZW04D5RK0tosAX1uRDJpEzdMj0QO_YvZbFLcpVgE,336224
|
|
390
407
|
solace_agent_mesh/assets/docs/assets/js/8908.f9d1b506.js,sha256=LrKHDjwNk1bPFNWpwTeQmTNlC47BvAhr-S3I-AcB_FQ,30883
|
|
391
408
|
solace_agent_mesh/assets/docs/assets/js/9157.b4093d07.js,sha256=-LWKw3jEtKdkEjap1b0NI7tJLVEPj8SyTRq5cJvL0TA,22109
|
|
409
|
+
solace_agent_mesh/assets/docs/assets/js/924ffdeb.8095e148.js,sha256=0iKdz_2njPwN7m-Luzb5o_G68HBAUpMgR30VQm9t75w,34002
|
|
392
410
|
solace_agent_mesh/assets/docs/assets/js/9278.a4fd875d.js,sha256=Nm7cJgq11XXaYA3WxmU_H5Yk2S8L1fgF6RC9lX7eepU,143
|
|
393
411
|
solace_agent_mesh/assets/docs/assets/js/945fb41e.6f4cdffd.js,sha256=j_IOg6hVZ84EbElDs_am3igdTAR7q7Vw-2AdnDiEcd4,10347
|
|
394
412
|
solace_agent_mesh/assets/docs/assets/js/94e8668d.b5ddb7a1.js,sha256=P6cmYLoJYbtcKF6JGjTADpYN3BTnIm2icW5zao73sNI,48112
|
|
395
413
|
solace_agent_mesh/assets/docs/assets/js/9616.b75c2f6d.js,sha256=Ry0lLDd8HQzYAHmCKcXJ4iQ-9utISMjqcWk_iURtf1A,20576
|
|
396
414
|
solace_agent_mesh/assets/docs/assets/js/9793.c6d16376.js,sha256=-Xm7Yt1AJvEcfoYlQ04O5Douk4bsO4mgo_UJN8TVIUY,100459
|
|
397
415
|
solace_agent_mesh/assets/docs/assets/js/9bb13469.dd1c9b54.js,sha256=hP-rwG08UerLypD5zOyKMv-JVnGJIBqJlDKeWKIPzxc,13277
|
|
398
|
-
solace_agent_mesh/assets/docs/assets/js/9e9d0a82.
|
|
416
|
+
solace_agent_mesh/assets/docs/assets/js/9e9d0a82.570c057b.js,sha256=QeKSgSVG4Fm18tBMWnoiGjcgh0-8di_Xs5BpqaBYjP0,18672
|
|
399
417
|
solace_agent_mesh/assets/docs/assets/js/a7bd4aaa.2204d2f7.js,sha256=v9wa2Q1Mt7cayLyMjyDTUT8J_kILQ2idmxDhgyBHlpE,756
|
|
400
418
|
solace_agent_mesh/assets/docs/assets/js/a94703ab.0438dbc2.js,sha256=drinuntIgk0lUv1Wc_WlHu5I8d5ZDszh329V_5WQrD4,11251
|
|
401
419
|
solace_agent_mesh/assets/docs/assets/js/ab9708a8.3e6dd091.js,sha256=pvc0nbW3yTXZ7e1kb5Ll-JqpPSb7FKRS7d2FbB-DkFU,14262
|
|
402
420
|
solace_agent_mesh/assets/docs/assets/js/aba21aa0.c42a534c.js,sha256=e8uMq6LJqDkt4o-uIbKH2CIw_7cQ4Kthlh4O9UqwWdw,211
|
|
403
|
-
solace_agent_mesh/assets/docs/assets/js/ad71b5ed.
|
|
421
|
+
solace_agent_mesh/assets/docs/assets/js/ad71b5ed.af3ecfd1.js,sha256=ocFJ0FjclMcFoIrGR8UYpcx3Lh4kp6FmTl29qL4pb64,17944
|
|
404
422
|
solace_agent_mesh/assets/docs/assets/js/c198a0dc.8f31f867.js,sha256=jjVz-PIiKwuOUwNXyKTGvV3m8brqRDAorep4EswafGo,29539
|
|
405
423
|
solace_agent_mesh/assets/docs/assets/js/c93cbaa0.eaff365e.js,sha256=J6GACCObEKJYlZDehyxmAvLjrhOawG18M6VFztp4eKo,21775
|
|
406
|
-
solace_agent_mesh/assets/docs/assets/js/
|
|
407
|
-
solace_agent_mesh/assets/docs/assets/js/
|
|
424
|
+
solace_agent_mesh/assets/docs/assets/js/ceb2a7a6.5d92d7d0.js,sha256=sIMjfXERI9UZ_nApb9UuuP5ZK8XoX6h87VSIm0FTrXQ,30514
|
|
425
|
+
solace_agent_mesh/assets/docs/assets/js/da0b5bad.d08a9466.js,sha256=m8DQLTrjEK5wOmcI8UyWjMIHM3tHCUK6IPPX63qZz_s,52684
|
|
426
|
+
solace_agent_mesh/assets/docs/assets/js/db924877.e98d12a1.js,sha256=sdYqliuleBONwJo9MbeJKQuyF91gYloovmvTLgy5yLw,14972
|
|
408
427
|
solace_agent_mesh/assets/docs/assets/js/dd817ffc.0aa9630a.js,sha256=Jx8FtzBwY4pY7IkxjA5crkXIu-qnzW9ulGUSbFZbtlY,7372
|
|
409
428
|
solace_agent_mesh/assets/docs/assets/js/dd81e2b8.d590bc9e.js,sha256=n9XuUG4MlNoHlb5EiHqBMjoouHL6l5BN6o3gSlFdS5o,45540
|
|
410
429
|
solace_agent_mesh/assets/docs/assets/js/de5f4c65.e8241890.js,sha256=YtUp4ly1TF1-AKhUvCf1MAaUU8K0PK__r4lO8QcDvD0,17957
|
|
411
|
-
solace_agent_mesh/assets/docs/assets/js/de915948.
|
|
430
|
+
solace_agent_mesh/assets/docs/assets/js/de915948.27d6b065.js,sha256=0kLo2XTRGrEr3gq6vkecnCBVYNm40LkyNMOKrQSw6oc,36203
|
|
412
431
|
solace_agent_mesh/assets/docs/assets/js/e3d9abda.2b916f9e.js,sha256=fDEPt_ewBLtRX4-U0oxm_2qJdwucDnZbwSTT8wgDFsY,16231
|
|
413
|
-
solace_agent_mesh/assets/docs/assets/js/e6f9706b.
|
|
432
|
+
solace_agent_mesh/assets/docs/assets/js/e6f9706b.e74a984d.js,sha256=uhiXLYOtK6LHeCfQO8W-X4EW1leeU0wQcsoH9un1H2k,11153
|
|
414
433
|
solace_agent_mesh/assets/docs/assets/js/e92d0134.cf6d6522.js,sha256=7Qn3F2nScQS-i5py5mATw7YuS52HWTLr6TZc3e2O2jA,13192
|
|
415
|
-
solace_agent_mesh/assets/docs/assets/js/f284c35a.
|
|
416
|
-
solace_agent_mesh/assets/docs/assets/js/ff4d71f2.
|
|
417
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
418
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
419
|
-
solace_agent_mesh/assets/docs/assets/js/runtime~main.
|
|
420
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/index.html,sha256=
|
|
421
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/agents/index.html,sha256=
|
|
422
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/index.html,sha256=
|
|
423
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/artifact-management/index.html,sha256=
|
|
424
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/audio-tools/index.html,sha256=
|
|
425
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/data-analysis-tools/index.html,sha256=
|
|
426
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/embeds/index.html,sha256=
|
|
427
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/cli/index.html,sha256=
|
|
428
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/gateways/index.html,sha256=
|
|
429
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/orchestrator/index.html,sha256=
|
|
430
|
-
solace_agent_mesh/assets/docs/docs/documentation/components/plugins/index.html,sha256
|
|
431
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
432
|
-
solace_agent_mesh/assets/docs/docs/documentation/deploying/
|
|
433
|
-
solace_agent_mesh/assets/docs/docs/documentation/deploying/
|
|
434
|
-
solace_agent_mesh/assets/docs/docs/documentation/deploying/
|
|
435
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
436
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/
|
|
437
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/create-
|
|
438
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/
|
|
439
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/creating-
|
|
440
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/
|
|
441
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/
|
|
442
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/
|
|
443
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
444
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
445
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
446
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
447
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
448
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
449
|
-
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/
|
|
450
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
451
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
452
|
-
solace_agent_mesh/assets/docs/docs/documentation/enterprise/
|
|
453
|
-
solace_agent_mesh/assets/docs/docs/documentation/enterprise/
|
|
454
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
455
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
456
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/
|
|
457
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/
|
|
458
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
459
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
460
|
-
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/
|
|
461
|
-
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/
|
|
462
|
-
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/
|
|
463
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
464
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
434
|
+
solace_agent_mesh/assets/docs/assets/js/f284c35a.42f59cdd.js,sha256=C9hLMwaVgxWf7S0Db_5t2N6ml9uOT1KVaD7nyeoEA5E,29123
|
|
435
|
+
solace_agent_mesh/assets/docs/assets/js/ff4d71f2.15b02f97.js,sha256=16MU9gsSqlwMOUnIzBGO6v8EJLuZ_uzN89VzQGbk9po,8370
|
|
436
|
+
solace_agent_mesh/assets/docs/assets/js/main.20feee82.js,sha256=Ys5YkGaj81Ojj8rpRUOLOT-ronmDb6ir4KmYcgEYpkc,488308
|
|
437
|
+
solace_agent_mesh/assets/docs/assets/js/main.20feee82.js.LICENSE.txt,sha256=3Jia5o7yaxOtbxuy9khs-thK96m55yCiPaUA-IkWh0A,2069
|
|
438
|
+
solace_agent_mesh/assets/docs/assets/js/runtime~main.0d198646.js,sha256=OY-KNIKv5QGDiVlD6J-36JSYer-cXyxe9Y4vO43eTYA,6688
|
|
439
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/index.html,sha256=iaUOwOAa_iac5Hh2YXT2_iQgorKh3WLQFXpLro1fJ1M,26456
|
|
440
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/agents/index.html,sha256=cUKXGcAiyT3Tqdklnjf1OhEL2ZFsfW2BwJGn2C-s3dw,41909
|
|
441
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/index.html,sha256=YKpWXVBrhuEgBTzcZB5f1MjWQj3F3rqG_jE20mDqZXU,44937
|
|
442
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/artifact-management/index.html,sha256=6yyxI_-a0xAm-IMVDwgET93QVoQne8J2eMHfTczv4Hw,34977
|
|
443
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/audio-tools/index.html,sha256=29lvQN2oDegtECD4H_gq2vyDNiAf4YiprvSZ3tDYdfY,58393
|
|
444
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/data-analysis-tools/index.html,sha256=DqAJfbhnG9Qk-j1VPShwJ8p28YHIfojQ0b122XuC-1Y,37942
|
|
445
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/builtin-tools/embeds/index.html,sha256=IwDGCWtXCtrJE694Koy5LLAIr746K8SDOZtXmeQCJ-Y,50898
|
|
446
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/cli/index.html,sha256=qFt1eX56nqKQWH-hbi_pudbhynGhlSRI7kyt5Wn0A1E,53125
|
|
447
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/gateways/index.html,sha256=AFXHc0eV44QGeUNZsvqiOEoaaJpc_sCDizY0DGRgsXY,30847
|
|
448
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/orchestrator/index.html,sha256=JIDTqiuBAiDy48l7gUbMAhZBL14le2vRJXaeKatnOyU,24564
|
|
449
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/plugins/index.html,sha256=-f0bv49O6Bz9fvcjPQwV2Yr7mR9GZCTVQ_Cn6-XPcJg,40780
|
|
450
|
+
solace_agent_mesh/assets/docs/docs/documentation/components/proxies/index.html,sha256=GmQgdxlZATF6ymoZ-1W8PKjNpVORE1avT3anogZILus,91611
|
|
451
|
+
solace_agent_mesh/assets/docs/docs/documentation/deploying/index.html,sha256=ph--5KZG8OE3y90BNnZAa5rSmEMFh-qWJbA4SeCqhGs,24500
|
|
452
|
+
solace_agent_mesh/assets/docs/docs/documentation/deploying/debugging/index.html,sha256=YFhWQoHq8AmJA8MvZY4LIIyxYlPyq_hm8qY8mYergqQ,58060
|
|
453
|
+
solace_agent_mesh/assets/docs/docs/documentation/deploying/deployment-options/index.html,sha256=kv7278f9hxWkfAYYCAp4S5bSdZMERVXsG_kpUReyY2w,54387
|
|
454
|
+
solace_agent_mesh/assets/docs/docs/documentation/deploying/observability/index.html,sha256=zTXDbiw9WEm-SA201IIwGgrLLQh9mFxHqj6f06kTvko,32881
|
|
455
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/index.html,sha256=Fi2rNay7Uu2PsvbVaY1g332KKoJydMpBt-62096nqk0,28524
|
|
456
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/create-agents/index.html,sha256=3Am2RJX98XvzAVzLggaQyNYk66PKwyia6jrbX6wZi5c,175411
|
|
457
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/create-gateways/index.html,sha256=aB-H4KLWK1aRRpQEJFG6GRk5KudNEawDlgTzOFEHj3o,402146
|
|
458
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/creating-python-tools/index.html,sha256=aNq5DhajZXs5Dkw1HVB-6GhAinyioc2_Tei8tRGHaes,175848
|
|
459
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/creating-service-providers/index.html,sha256=U9DhhCLUOs5FLgJCsJ12pxwbYl88tF36xadu7ESvmE0,59895
|
|
460
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/evaluations/index.html,sha256=B-J1cKxYTtv1ru9NTtrDWVavtwAgPiPY2wn-j9IdqnM,110328
|
|
461
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/structure/index.html,sha256=pgFNqoSYsN19FUQ7eBmB6FwjVdpNRC-ywr8n_R_6NJ8,28997
|
|
462
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/bedrock-agents/index.html,sha256=uO9sbzPIqme-VJugw-cek65Fsx-p5D_Hagx65vJuaLw,77868
|
|
463
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/custom-agent/index.html,sha256=ENzn-eNsfcUkILTi1TV2YMEtgklmfFhVx4Cy3ypJ3TU,385719
|
|
464
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/event-mesh-gateway/index.html,sha256=m62n2E6D0ZnHB2e_7odHSSJn6BV2v1msqOlVOWN5qkI,70780
|
|
465
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/mcp-integration/index.html,sha256=Hj1RM_xSqoifxMgob8-ADgx-1qVDsuw5YShMEBIIGNI,70547
|
|
466
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/mongodb-integration/index.html,sha256=aZdgJH3IXqOCGs2tKF0vql_3aD7X9hIAIfkItg9iwC4,89958
|
|
467
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/rag-integration/index.html,sha256=eq3W8B5bV60ynzKRUPeyRqePevlW9IHv7XqAQvSUG4w,82632
|
|
468
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/rest-gateway/index.html,sha256=_jOGRygr1C68KNvk8KGGROTBk_fYnCpKRu8Eo-iqM7Y,49062
|
|
469
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/slack-integration/index.html,sha256=_NxYLYbOKErrw4lLXZeL5B2BcJEWtDo4UyN3YGoupkg,52277
|
|
470
|
+
solace_agent_mesh/assets/docs/docs/documentation/developing/tutorials/sql-database/index.html,sha256=pukd-kuZjyLK96XTAL1pUhuClIsWGuzl1MJ-FQ58pPU,71656
|
|
471
|
+
solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html,sha256=BBpt1o3V8V-MHSdawrd1OYrxWjvBxG6F4N7VkHh7lO4,26069
|
|
472
|
+
solace_agent_mesh/assets/docs/docs/documentation/enterprise/installation/index.html,sha256=93XjTotwjot69wGiNVExYuHNT_kgExj-pgRwK0dbS_s,41068
|
|
473
|
+
solace_agent_mesh/assets/docs/docs/documentation/enterprise/rbac-setup-guide/index.html,sha256=ovgtI5ZfsJEnX2EOWtSSNxIHneuYJ0jH3QGhZmYyq4E,113059
|
|
474
|
+
solace_agent_mesh/assets/docs/docs/documentation/enterprise/single-sign-on/index.html,sha256=XuyFihYwc39ARkzNtxJIGYWSEhZ68gfGxFt47U8mcS8,111138
|
|
475
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/index.html,sha256=3IZCBysipWtcQ6BfHOduHW2faFEpsqf3_vFUF1FYVwQ,31550
|
|
476
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/architecture/index.html,sha256=UtRonGsc0-aaGUuoI2N1OrHKQ_7v2coVsqNecv6BIWk,32078
|
|
477
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=M4SsRDNdcatDkS5_M3CfTNChXbi9eMjSYF6sHTe1kMU,26960
|
|
478
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/try-agent-mesh/index.html,sha256=JqJ18uECZe_OV-jcfL0PZDvUe2D70785wMBBxlm0E4U,28685
|
|
479
|
+
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/index.html,sha256=nwnKc-FxgEEoiTO-kpTKHZKFyDSkPosURsWmr5chxy8,25318
|
|
480
|
+
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/configurations/index.html,sha256=7g_gzltZLDlAApF9ewAACzoY-yAmTrC7tAv-AKJOK-4,65807
|
|
481
|
+
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/installation/index.html,sha256=w0NZUWLpKA48kdR6SgmwZuslhwrXTgpJPpmbjq493eM,35972
|
|
482
|
+
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/large_language_models/index.html,sha256=LSUzpWCQxInMLQwdXhbSc1jKk01zcNA6G5RF77I4bbc,85735
|
|
483
|
+
solace_agent_mesh/assets/docs/docs/documentation/installing-and-configuring/run-project/index.html,sha256=qR_b_ql_YDngz2Mt0G9O7pKBgp-b2jcTerhN6wB6qbc,45071
|
|
484
|
+
solace_agent_mesh/assets/docs/docs/documentation/migrations/a2a-upgrade/a2a-gateway-upgrade-to-0.3.0/index.html,sha256=l5vaS4SabTn8_OAv5VAhjO68VTx4kUCts4I6CYY5ryI,72231
|
|
485
|
+
solace_agent_mesh/assets/docs/docs/documentation/migrations/a2a-upgrade/a2a-technical-migration-map/index.html,sha256=dV_3lyZYhNjOs2TeOWr9I0_DjN9oE6CQOK__q82qGvA,87583
|
|
465
486
|
solace_agent_mesh/assets/docs/img/Solace_AI_Framework_With_Broker.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
466
487
|
solace_agent_mesh/assets/docs/img/logo.png,sha256=TdXZ2wnkSkaFrGO-5fy2WcmjGXaGzwE29dM83raxoTg,45439
|
|
467
488
|
solace_agent_mesh/assets/docs/img/sac-flows.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
@@ -471,7 +492,7 @@ solace_agent_mesh/assets/docs/img/solace-logo-text.svg,sha256=-wslMOppjNAJqbWRfB
|
|
|
471
492
|
solace_agent_mesh/assets/docs/img/solace-logo.png,sha256=ZHgHO43gSoj8LuPIVPUulJmzGVyUAujyBu2s139ZLuU,6619
|
|
472
493
|
solace_agent_mesh/config_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
473
494
|
solace_agent_mesh/config_portal/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
474
|
-
solace_agent_mesh/config_portal/backend/common.py,sha256=
|
|
495
|
+
solace_agent_mesh/config_portal/backend/common.py,sha256=RmNUyUpFtbdZgUDh2nEOUCRhMj_H9ILtOmZFqRV9jpI,3036
|
|
475
496
|
solace_agent_mesh/config_portal/backend/plugin_catalog_server.py,sha256=Qr5cFUMyDq0qHDTa9ZRbczTi8BUWPZTvxAv3jRxa3hw,7875
|
|
476
497
|
solace_agent_mesh/config_portal/backend/server.py,sha256=gx8KIAopkeAmn4WfseP5z79GOE246Lf8nPaCw7QrBPo,23689
|
|
477
498
|
solace_agent_mesh/config_portal/backend/plugin_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -481,24 +502,24 @@ solace_agent_mesh/config_portal/backend/plugin_catalog/registry_manager.py,sha25
|
|
|
481
502
|
solace_agent_mesh/config_portal/backend/plugin_catalog/scraper.py,sha256=j7yJUEKjgsVs7TvSf8Uf_22bKotlYhocIYhfJhTpQPI,21238
|
|
482
503
|
solace_agent_mesh/config_portal/frontend/static/client/Solace_community_logo.png,sha256=ugNi5vBxTdFZMW2uWNZYcutyk4z8yw9e5KEL5XDcodU,5894
|
|
483
504
|
solace_agent_mesh/config_portal/frontend/static/client/favicon.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
484
|
-
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=
|
|
485
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-
|
|
505
|
+
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=N_yUh6YbUdAimauis14jqMp-1r7gDqDWkfsWmTKe8dU,1419
|
|
506
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-ByU1X1HD.js,sha256=VYytFIuUJwYe_8ii0_q2PwKD9WfG2hD07o6aK9ZYDW4,276032
|
|
486
507
|
solace_agent_mesh/config_portal/frontend/static/client/assets/components-Rk0n-9cK.js,sha256=dXPV9MnIciHjfm68Wp9aKpViYlXfyN_6etThgGS8KO8,40041
|
|
487
508
|
solace_agent_mesh/config_portal/frontend/static/client/assets/entry.client-mvZjNKiz.js,sha256=-9lo6je5RWC0Q4FKlTg-tdu1dsoNQvwbLr5zgfZwf58,3862
|
|
488
509
|
solace_agent_mesh/config_portal/frontend/static/client/assets/index-DzNKzXrc.js,sha256=4xvgTOvPkqnfRR2N9T199hzTFK6u_NdvA5ImbTe2UYU,217925
|
|
489
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-
|
|
510
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-61038fc6.js,sha256=oZWPCU0OcKLUNcT-Hd5LV6iNH9DjUU5BjvLgeDQ1uAE,781
|
|
490
511
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-BWvk5-gF.js,sha256=KoDaD7JSrkUDgUbDa0JqaB7mXNCc2fR-T5kKAcH5nho,1799
|
|
491
512
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-DxRwaWiE.css,sha256=HaETPzdva-2CpjK-MmIBI6lipZMiGHmAqLRJiD8s2QE,33607
|
|
492
|
-
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256
|
|
493
|
-
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=
|
|
494
|
-
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-
|
|
495
|
-
solace_agent_mesh/client/webui/frontend/static/assets/client-
|
|
513
|
+
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256=mRCN4tUy21ULbWZ9ge4rWCLO6vpiGDefEFl2KC9MCUc,604
|
|
514
|
+
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=3RcYJNmBmrB1uNpq8QrLm0LrOsVouMqTxJVLHAlNV5M,671
|
|
515
|
+
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-BTf6dqwp.js,sha256=JxoDVkAH5ZwBZ8J26VWEMSqYi92gzPeIxXQaxgT0PMA,528
|
|
516
|
+
solace_agent_mesh/client/webui/frontend/static/assets/client-CaY59VuC.js,sha256=Vp97fjzF2BWNES0MhFJ4mekbS7OAmngjUdyjKVmI3aw,174527
|
|
496
517
|
solace_agent_mesh/client/webui/frontend/static/assets/favicon-BLgzUch9.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
497
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
498
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
499
|
-
solace_agent_mesh/client/webui/frontend/static/assets/vendor-
|
|
500
|
-
solace_agent_mesh-1.
|
|
501
|
-
solace_agent_mesh-1.
|
|
502
|
-
solace_agent_mesh-1.
|
|
503
|
-
solace_agent_mesh-1.
|
|
504
|
-
solace_agent_mesh-1.
|
|
518
|
+
solace_agent_mesh/client/webui/frontend/static/assets/main-BGTaW0uv.js,sha256=HJIeqmpPY3YDrBK_rtu6x5jIJeu_nttqYFj-hNE_iUk,448989
|
|
519
|
+
solace_agent_mesh/client/webui/frontend/static/assets/main-DHJKSW1S.css,sha256=4qkn-N9R41XfGzdwmg-mY-QxLqZ7MLTnHTKssvjFg2o,119232
|
|
520
|
+
solace_agent_mesh/client/webui/frontend/static/assets/vendor-BEmvJSYz.js,sha256=YgZcqQ36L9pX5QJn_9kyQdFxcCcnoNT-Hd1pMhoR1MM,341779
|
|
521
|
+
solace_agent_mesh-1.6.0.dist-info/METADATA,sha256=19yiODyx3ruJcj2Kv16SdKEiQbC5JI6Tb3-j5ILr05I,25448
|
|
522
|
+
solace_agent_mesh-1.6.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
523
|
+
solace_agent_mesh-1.6.0.dist-info/entry_points.txt,sha256=5pLVH8d8bd4sxUwBh7VTni8gTTSzTqGfY14zgdQZm1I,106
|
|
524
|
+
solace_agent_mesh-1.6.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
525
|
+
solace_agent_mesh-1.6.0.dist-info/RECORD,,
|