solace-agent-mesh 1.0.7__py3-none-any.whl → 1.1.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/adk_llm.txt +182 -42
- solace_agent_mesh/agent/adk/artifacts/artifacts_llm.txt +171 -0
- solace_agent_mesh/agent/adk/callbacks.py +165 -104
- solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py +0 -18
- solace_agent_mesh/agent/adk/models/models_llm.txt +104 -55
- solace_agent_mesh/agent/adk/runner.py +7 -5
- solace_agent_mesh/agent/adk/services.py +9 -1
- solace_agent_mesh/agent/adk/setup.py +11 -0
- solace_agent_mesh/agent/adk/stream_parser.py +8 -1
- solace_agent_mesh/agent/adk/tool_wrapper.py +10 -3
- solace_agent_mesh/agent/agent_llm.txt +355 -18
- solace_agent_mesh/agent/protocol/event_handlers.py +433 -296
- solace_agent_mesh/agent/protocol/protocol_llm.txt +54 -7
- solace_agent_mesh/agent/sac/app.py +1 -1
- solace_agent_mesh/agent/sac/component.py +212 -517
- solace_agent_mesh/agent/sac/sac_llm.txt +133 -63
- solace_agent_mesh/agent/testing/testing_llm.txt +25 -58
- solace_agent_mesh/agent/tools/peer_agent_tool.py +15 -11
- solace_agent_mesh/agent/tools/tools_llm.txt +234 -69
- solace_agent_mesh/agent/utils/artifact_helpers.py +35 -1
- solace_agent_mesh/agent/utils/utils_llm.txt +90 -105
- solace_agent_mesh/assets/docs/404.html +3 -3
- solace_agent_mesh/assets/docs/assets/js/{3d406171.7d02a73b.js → 3d406171.0b9eeed1.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/6e0db977.39a79ca9.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{75384d09.ccd480c4.js → 75384d09.bf78fbdb.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/90dd9cf6.88f385ea.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/f284c35a.fb68323a.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/main.a75ecc0d.js +2 -0
- solace_agent_mesh/assets/docs/assets/js/runtime~main.458efb1d.js +1 -0
- solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/migration-guides/a2a-upgrade-to-0.3.0/a2a-gateway-upgrade-to-0.3.0/index.html +105 -0
- solace_agent_mesh/assets/docs/docs/documentation/migration-guides/a2a-upgrade-to-0.3.0/a2a-technical-migration-map/index.html +53 -0
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html +8 -8
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html +4 -4
- solace_agent_mesh/assets/docs/lunr-index-1756992446316.json +1 -0
- solace_agent_mesh/assets/docs/lunr-index.json +1 -1
- solace_agent_mesh/assets/docs/search-doc-1756992446316.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/web_add_agent_step.py +12 -3
- solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py +10 -14
- solace_agent_mesh/cli/commands/init_cmd/web_init_step.py +2 -15
- solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py +6 -2
- solace_agent_mesh/cli/utils.py +15 -0
- solace_agent_mesh/client/webui/frontend/static/assets/{authCallback-DvlO62me.js → authCallback-BmF2l6vg.js} +1 -1
- solace_agent_mesh/client/webui/frontend/static/assets/{client-bp6u3qVZ.js → client-D881Dttc.js} +4 -4
- solace_agent_mesh/client/webui/frontend/static/assets/main-C0jZjYa8.js +699 -0
- solace_agent_mesh/client/webui/frontend/static/assets/main-CCeG324-.css +1 -0
- solace_agent_mesh/client/webui/frontend/static/auth-callback.html +2 -2
- solace_agent_mesh/client/webui/frontend/static/index.html +3 -3
- solace_agent_mesh/common/a2a/__init__.py +213 -0
- solace_agent_mesh/common/a2a/a2a_llm.txt +182 -0
- solace_agent_mesh/common/a2a/artifact.py +328 -0
- solace_agent_mesh/common/a2a/events.py +183 -0
- solace_agent_mesh/common/a2a/message.py +307 -0
- solace_agent_mesh/common/a2a/protocol.py +513 -0
- solace_agent_mesh/common/a2a/task.py +127 -0
- solace_agent_mesh/common/a2a/translation.py +653 -0
- solace_agent_mesh/common/a2a/types.py +54 -0
- solace_agent_mesh/common/a2a_spec/a2a.json +2576 -0
- solace_agent_mesh/common/a2a_spec/a2a_spec_llm.txt +407 -0
- solace_agent_mesh/common/a2a_spec/schemas/agent_progress_update.json +18 -0
- solace_agent_mesh/common/a2a_spec/schemas/artifact_creation_progress.json +31 -0
- solace_agent_mesh/common/a2a_spec/schemas/llm_invocation.json +18 -0
- solace_agent_mesh/common/a2a_spec/schemas/schemas_llm.txt +235 -0
- solace_agent_mesh/common/a2a_spec/schemas/tool_invocation_start.json +26 -0
- solace_agent_mesh/common/a2a_spec/schemas/tool_result.json +25 -0
- solace_agent_mesh/common/agent_registry.py +1 -1
- solace_agent_mesh/common/common_llm.txt +192 -70
- solace_agent_mesh/common/data_parts.py +99 -0
- solace_agent_mesh/common/middleware/middleware_llm.txt +17 -17
- solace_agent_mesh/common/sac/__init__.py +0 -0
- solace_agent_mesh/common/sac/sac_llm.txt +71 -0
- solace_agent_mesh/common/sac/sam_component_base.py +252 -0
- solace_agent_mesh/common/services/providers/providers_llm.txt +51 -84
- solace_agent_mesh/common/services/services_llm.txt +206 -26
- solace_agent_mesh/common/utils/artifact_utils.py +29 -0
- solace_agent_mesh/common/utils/embeds/embeds_llm.txt +176 -80
- solace_agent_mesh/common/utils/utils_llm.txt +323 -42
- solace_agent_mesh/config_portal/backend/common.py +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/{_index-MqsrTd6g.js → _index-Bym6YkMd.js} +74 -24
- solace_agent_mesh/config_portal/frontend/static/client/assets/{components-B7lKcHVY.js → components-Rk0n-9cK.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/{entry.client-CEumGClk.js → entry.client-mvZjNKiz.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/{index-DSo1AH_7.js → index-DzNKzXrc.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-d845808d.js +1 -0
- solace_agent_mesh/config_portal/frontend/static/client/assets/{root-C4XmHinv.js → root-BWvk5-gF.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/index.html +3 -3
- solace_agent_mesh/core_a2a/core_a2a_llm.txt +10 -8
- solace_agent_mesh/core_a2a/service.py +20 -44
- solace_agent_mesh/gateway/base/app.py +27 -1
- solace_agent_mesh/gateway/base/base_llm.txt +177 -72
- solace_agent_mesh/gateway/base/component.py +294 -523
- solace_agent_mesh/gateway/gateway_llm.txt +299 -58
- solace_agent_mesh/gateway/http_sse/component.py +156 -183
- solace_agent_mesh/gateway/http_sse/components/components_llm.txt +29 -29
- solace_agent_mesh/gateway/http_sse/http_sse_llm.txt +272 -36
- solace_agent_mesh/gateway/http_sse/main.py +8 -10
- solace_agent_mesh/gateway/http_sse/routers/agents.py +1 -1
- solace_agent_mesh/gateway/http_sse/routers/artifacts.py +18 -4
- solace_agent_mesh/gateway/http_sse/routers/routers_llm.txt +231 -5
- solace_agent_mesh/gateway/http_sse/routers/sessions.py +12 -7
- solace_agent_mesh/gateway/http_sse/routers/tasks.py +116 -169
- solace_agent_mesh/gateway/http_sse/services/agent_service.py +1 -1
- solace_agent_mesh/gateway/http_sse/services/services_llm.txt +89 -135
- solace_agent_mesh/gateway/http_sse/services/task_service.py +2 -5
- solace_agent_mesh/solace_agent_mesh_llm.txt +362 -0
- solace_agent_mesh/templates/gateway_component_template.py +149 -98
- {solace_agent_mesh-1.0.7.dist-info → solace_agent_mesh-1.1.0.dist-info}/METADATA +5 -4
- {solace_agent_mesh-1.0.7.dist-info → solace_agent_mesh-1.1.0.dist-info}/RECORD +144 -127
- solace_agent_mesh/assets/docs/assets/js/f284c35a.731836ad.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/main.d79f063b.js +0 -2
- solace_agent_mesh/assets/docs/assets/js/runtime~main.6415ad00.js +0 -1
- solace_agent_mesh/assets/docs/lunr-index-1756146501924.json +0 -1
- solace_agent_mesh/assets/docs/search-doc-1756146501924.json +0 -1
- solace_agent_mesh/client/webui/frontend/static/assets/main-BCpII1-0.css +0 -1
- solace_agent_mesh/client/webui/frontend/static/assets/main-BucUdn9m.js +0 -673
- solace_agent_mesh/common/a2a_protocol.py +0 -564
- solace_agent_mesh/common/client/__init__.py +0 -4
- solace_agent_mesh/common/client/card_resolver.py +0 -21
- solace_agent_mesh/common/client/client.py +0 -85
- solace_agent_mesh/common/client/client_llm.txt +0 -133
- solace_agent_mesh/common/server/__init__.py +0 -4
- solace_agent_mesh/common/server/server.py +0 -122
- solace_agent_mesh/common/server/server_llm.txt +0 -169
- solace_agent_mesh/common/server/task_manager.py +0 -291
- solace_agent_mesh/common/server/utils.py +0 -28
- solace_agent_mesh/common/types.py +0 -411
- solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-28271392.js +0 -1
- /solace_agent_mesh/assets/docs/assets/js/{main.d79f063b.js.LICENSE.txt → main.a75ecc0d.js.LICENSE.txt} +0 -0
- {solace_agent_mesh-1.0.7.dist-info → solace_agent_mesh-1.1.0.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-1.0.7.dist-info → solace_agent_mesh-1.1.0.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-1.0.7.dist-info → solace_agent_mesh-1.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,83 +1,96 @@
|
|
|
1
1
|
solace_agent_mesh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
solace_agent_mesh/llm.txt,sha256=0HhcBA1hHCqzrBtX2HmLeJSqJ3MnQfpwfj5KfD1C3ws,10856
|
|
3
3
|
solace_agent_mesh/llm_detail.txt,sha256=bGC0uhenAL_DeFcfKBjGuONmP_8jhNaP0r2Zuipc1Vk,159304
|
|
4
|
+
solace_agent_mesh/solace_agent_mesh_llm.txt,sha256=tiJ8d0lZoVWVuMHMkYfKiwuw4pbOGxYck-3sMaMatYU,14662
|
|
4
5
|
solace_agent_mesh/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
solace_agent_mesh/agent/agent_llm.txt,sha256=
|
|
6
|
+
solace_agent_mesh/agent/agent_llm.txt,sha256=SxQXi97BbQr2clksllCAwzl4Qy-IxcRMKIcN43o3T-s,14768
|
|
6
7
|
solace_agent_mesh/agent/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
solace_agent_mesh/agent/adk/adk_llm.txt,sha256=
|
|
8
|
+
solace_agent_mesh/agent/adk/adk_llm.txt,sha256=XTONKecOiorM2mr0PB_FP5r8fgPXr2Dlp8C1Yt2AOws,15116
|
|
8
9
|
solace_agent_mesh/agent/adk/app_llm_agent.py,sha256=WOJoUI23i5zPDqubNVVJhWUFvVdY4sRmsYzKmz-DomU,842
|
|
9
|
-
solace_agent_mesh/agent/adk/callbacks.py,sha256=
|
|
10
|
-
solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py,sha256=
|
|
10
|
+
solace_agent_mesh/agent/adk/callbacks.py,sha256=cvyJmxf3Du5WGOj2i4_gubt8iBb8IhzfdAWIB2ChJak,71906
|
|
11
|
+
solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py,sha256=KXr9zY8GBt8FzY8z9XKiV4KX_EiGBfcxGsnLV03ULQ8,11316
|
|
11
12
|
solace_agent_mesh/agent/adk/intelligent_mcp_callbacks.py,sha256=4h2riXiw6DqFi3VVRZ92w_YuQQJ_Du6iUgx3PRuzrb8,15839
|
|
12
13
|
solace_agent_mesh/agent/adk/invocation_monitor.py,sha256=_20-nQXVjGlAEyw9PLFTTvgti-WgqyNE58LPUELUWnA,11671
|
|
13
14
|
solace_agent_mesh/agent/adk/mcp_content_processor.py,sha256=8s3ytZ8qrKZCUt_u8aE_EHH1_01yewPoekkllCuz9ME,23850
|
|
14
|
-
solace_agent_mesh/agent/adk/runner.py,sha256=
|
|
15
|
-
solace_agent_mesh/agent/adk/services.py,sha256=
|
|
16
|
-
solace_agent_mesh/agent/adk/setup.py,sha256=
|
|
17
|
-
solace_agent_mesh/agent/adk/stream_parser.py,sha256=
|
|
18
|
-
solace_agent_mesh/agent/adk/tool_wrapper.py,sha256=
|
|
15
|
+
solace_agent_mesh/agent/adk/runner.py,sha256=gP_mcGNO_RI3g4P14bo7t331SDCMadidrY4Vxe4eM_w,12718
|
|
16
|
+
solace_agent_mesh/agent/adk/services.py,sha256=BzhaGUsw6_x0Ia1Zy2XkazPvPFF4RNFqUjlgGXCaYls,12892
|
|
17
|
+
solace_agent_mesh/agent/adk/setup.py,sha256=YN5lRjflcvGZeeOpq6ssWwz7Je0BPKGEoDvL-po5Jnk,32615
|
|
18
|
+
solace_agent_mesh/agent/adk/stream_parser.py,sha256=3i5rFN7dDVgjLvK4GG0PKYmxgIdtqKABfM9oTCouSZ0,8278
|
|
19
|
+
solace_agent_mesh/agent/adk/tool_wrapper.py,sha256=yzkXjE4QtdVtO5edB-c-R_qJgaex9rmCHIswW1ltfxY,6513
|
|
19
20
|
solace_agent_mesh/agent/adk/artifacts/__init__.py,sha256=vAB8eqGwgPo3nx6YkT93Y7puYRMcqIKMAchBizvdw7Y,62
|
|
21
|
+
solace_agent_mesh/agent/adk/artifacts/artifacts_llm.txt,sha256=UZVqU_AU8rqrnzQV6CZ_MzsYd7o9ihUcqF7J1xns9gU,6567
|
|
20
22
|
solace_agent_mesh/agent/adk/artifacts/filesystem_artifact_service.py,sha256=JWR6PqWP2UOw1_6iLOWMB57txzdc4hnjIr2w5cVk76c,13589
|
|
21
23
|
solace_agent_mesh/agent/adk/artifacts/s3_artifact_service.py,sha256=6CyKDOuQJ4b0vibAFlOHq2bDQoQglqX0NDxWUXAhqUs,15178
|
|
22
24
|
solace_agent_mesh/agent/adk/models/lite_llm.py,sha256=Enia0uFs2epagavdaCWNnvMFIL7VxRuo0A6mYBQZGWQ,30325
|
|
23
|
-
solace_agent_mesh/agent/adk/models/models_llm.txt,sha256=
|
|
25
|
+
solace_agent_mesh/agent/adk/models/models_llm.txt,sha256=tpihTC3M1-WXduJgZerCGcJzNUfRSsbtol4VFhKyd6U,6119
|
|
24
26
|
solace_agent_mesh/agent/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=
|
|
26
|
-
solace_agent_mesh/agent/protocol/protocol_llm.txt,sha256=
|
|
27
|
+
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=hunmtIrS2GFULUiK4ZXMM-xIX4OdjrH7dPFvODADcQc,68874
|
|
28
|
+
solace_agent_mesh/agent/protocol/protocol_llm.txt,sha256=3-ojfRlRtmmr6RuiAx_r1ib3LzSaRWjJdDaUpM9mZ5E,3929
|
|
27
29
|
solace_agent_mesh/agent/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
solace_agent_mesh/agent/sac/app.py,sha256=
|
|
29
|
-
solace_agent_mesh/agent/sac/component.py,sha256=
|
|
30
|
+
solace_agent_mesh/agent/sac/app.py,sha256=hYrkpxXzUt6_GjRF3y_ApOO17ZFLT56kYuBqwt-RKM8,32846
|
|
31
|
+
solace_agent_mesh/agent/sac/component.py,sha256=BXm8FwN3upf_RXWIHC5yJZME70MCveFzLPBLxwMeM5k,130097
|
|
30
32
|
solace_agent_mesh/agent/sac/patch_adk.py,sha256=LQhPvwpEVeeDVUgZD-p8CTxft-jRv_OadMR-gR1uTXk,4266
|
|
31
|
-
solace_agent_mesh/agent/sac/sac_llm.txt,sha256=
|
|
33
|
+
solace_agent_mesh/agent/sac/sac_llm.txt,sha256=KcnVBK8oBuyguMkrCzG773GOQyPqscGxK7VdK2RYYco,9101
|
|
32
34
|
solace_agent_mesh/agent/sac/task_execution_context.py,sha256=EpX6IWUtlv9ot9aW4_5bjEctJXd-O5Ozmq-FsJE9MBU,7663
|
|
33
35
|
solace_agent_mesh/agent/testing/__init__.py,sha256=Jo_gILQRyefq52v4zYml91xf04lduzam-2fwgNwuAy4,64
|
|
34
36
|
solace_agent_mesh/agent/testing/debug_utils.py,sha256=-nNJUs8aeRnEFbG0ZrXL3-FFcCDKC_-7KXViwp6fLqw,4972
|
|
35
|
-
solace_agent_mesh/agent/testing/testing_llm.txt,sha256=
|
|
37
|
+
solace_agent_mesh/agent/testing/testing_llm.txt,sha256=14tuiINvkLTel3zTM7MsRQrmGLWuuJ79ywTU7gjiwqg,2180
|
|
36
38
|
solace_agent_mesh/agent/tools/__init__.py,sha256=OKsqMddhk9q2DA8Jp3SOEcbOwa3QBsP4tDDsY4aVgAg,473
|
|
37
39
|
solace_agent_mesh/agent/tools/audio_tools.py,sha256=LOjfD2tTsYanIbntpysX4gQZ1e8NHqmv_yQ7iHitvyQ,59717
|
|
38
40
|
solace_agent_mesh/agent/tools/builtin_artifact_tools.py,sha256=4zUqrPlBfIz2N3sAZXzk-ZmUCyRqA3-qmnTm3vaCcx4,77526
|
|
39
41
|
solace_agent_mesh/agent/tools/builtin_data_analysis_tools.py,sha256=nII4SNDYFt1QaHtXpcoFr3mIg3n1QXTNJfm3VQDD394,8767
|
|
40
42
|
solace_agent_mesh/agent/tools/general_agent_tools.py,sha256=7ygxOwOMacWv7oMQumbIG4XEn3UwRWTSBDuutZPFKj8,21959
|
|
41
43
|
solace_agent_mesh/agent/tools/image_tools.py,sha256=sLIO-d4006CqJ-YaGYsE-1sfDTMCfI0foPLHieaaFZg,47968
|
|
42
|
-
solace_agent_mesh/agent/tools/peer_agent_tool.py,sha256=
|
|
44
|
+
solace_agent_mesh/agent/tools/peer_agent_tool.py,sha256=rCY7D3OKw_oQ6Oc33AkoxBHKFGL3zQwT5NLgUZ4C1cY,12308
|
|
43
45
|
solace_agent_mesh/agent/tools/registry.py,sha256=A4I1RbvQ0b-AFyH4d_vpdAjE3mtoWV_OrObVW3isZbI,1208
|
|
44
46
|
solace_agent_mesh/agent/tools/test_tools.py,sha256=Bu5nueLX1YFxUFJC2jeG5y3z_s1B3KwqkRAo4TKl4YI,4217
|
|
45
47
|
solace_agent_mesh/agent/tools/tool_definition.py,sha256=QFgKAZy-3GAmAG_q5XG9gduQRr6uF3ZEo-H05PY1C6s,1690
|
|
46
|
-
solace_agent_mesh/agent/tools/tools_llm.txt,sha256=
|
|
48
|
+
solace_agent_mesh/agent/tools/tools_llm.txt,sha256=W-JcxYZ6JQERrRTYRhWZQeOobUN_Dszl93_Y0kwv7mc,13653
|
|
47
49
|
solace_agent_mesh/agent/tools/web_tools.py,sha256=fS3GwqJmORMx0efrJmU9tij_tqUKG8JlAbaUzYhEaQY,15187
|
|
48
50
|
solace_agent_mesh/agent/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
solace_agent_mesh/agent/utils/artifact_helpers.py,sha256=
|
|
51
|
+
solace_agent_mesh/agent/utils/artifact_helpers.py,sha256=WrdCMMiGwSUIhBYbpE4DMk2ELgWTYv8CQSIFQpFokmA,41971
|
|
50
52
|
solace_agent_mesh/agent/utils/config_parser.py,sha256=pElDc96YftH3rdBaMCmHDdzPkAEx_kGkU0FrcztKP9E,1665
|
|
51
53
|
solace_agent_mesh/agent/utils/context_helpers.py,sha256=jWKY5Kpy2KWTYMz4G5AOi8VIu3IbD1LdStpI7j5y-bU,2075
|
|
52
|
-
solace_agent_mesh/agent/utils/utils_llm.txt,sha256=
|
|
54
|
+
solace_agent_mesh/agent/utils/utils_llm.txt,sha256=vuy7-BYOx816-QeBGM2ue7W1ned0Q6TjW6A8lln0i2E,7442
|
|
53
55
|
solace_agent_mesh/common/__init__.py,sha256=gtpOFNjDuFmImR592AQckhQTaiA8HrsfTvAP1oCfxCY,63
|
|
54
|
-
solace_agent_mesh/common/
|
|
55
|
-
solace_agent_mesh/common/
|
|
56
|
-
solace_agent_mesh/common/common_llm.txt,sha256=-Vq_9TF7yoyMyqPrspZsOau401gt8Dd0d_SfnmUV0m4,9245
|
|
56
|
+
solace_agent_mesh/common/agent_registry.py,sha256=7rbyyxhtnW8CB45nDjI6S_uEAUotV1iWfu5xqMbm9Dw,1264
|
|
57
|
+
solace_agent_mesh/common/common_llm.txt,sha256=3CPdoLFPf3Mmy93YkI7_bFZGjbdWDN3W183JVvYo4gw,14544
|
|
57
58
|
solace_agent_mesh/common/constants.py,sha256=2lImuxA2sxiS38RNQ4-i1BAwPmekPRnKrhPG4hkJjdE,51
|
|
59
|
+
solace_agent_mesh/common/data_parts.py,sha256=Fc3kTG5PHvQWe_u-5GR8E4hgEUm2VqRTrqPSC3Yy4Og,3141
|
|
58
60
|
solace_agent_mesh/common/exceptions.py,sha256=or9OTXM587Ij5yXlF4fagwqXUcRPPDFNX852GPZk09Y,845
|
|
59
|
-
solace_agent_mesh/common/
|
|
60
|
-
solace_agent_mesh/common/
|
|
61
|
-
solace_agent_mesh/common/
|
|
62
|
-
solace_agent_mesh/common/
|
|
63
|
-
solace_agent_mesh/common/
|
|
61
|
+
solace_agent_mesh/common/a2a/__init__.py,sha256=RvXqNCT5uSSs-D8t97WnnwDW5f2LiL_CXkkeOTSQx4I,6229
|
|
62
|
+
solace_agent_mesh/common/a2a/a2a_llm.txt,sha256=xMdFM0DKJDIu9MZQdIPMqpqJxSN3eQyFnJLK5wl3cOg,13638
|
|
63
|
+
solace_agent_mesh/common/a2a/artifact.py,sha256=McPSqCT2ZQNJAdxzQ7elkTJR7rplPTNx1oay2La0fxI,10922
|
|
64
|
+
solace_agent_mesh/common/a2a/events.py,sha256=-rltDOLfD5dxI-4JpIi3nytEm8LrsszaoVmKk2Rm82s,4861
|
|
65
|
+
solace_agent_mesh/common/a2a/message.py,sha256=8SOPXhOBPPnbcndZppH79ktkupFayG7WyIEKbl0MtU0,8981
|
|
66
|
+
solace_agent_mesh/common/a2a/protocol.py,sha256=SsHgRQYvsJhCHavSB1_BaeW6HEgXxuJ6Iqq-ImhA4xU,16896
|
|
67
|
+
solace_agent_mesh/common/a2a/task.py,sha256=906ByBEw7mlZEabMmgUSkzlFEHUC3r1HYwSuP2OdLog,3153
|
|
68
|
+
solace_agent_mesh/common/a2a/translation.py,sha256=mYrkzRwQnVngrPDwHdGbFRPckriR-7R_IClHnckHOxo,24735
|
|
69
|
+
solace_agent_mesh/common/a2a/types.py,sha256=N0azqlzGXwzmNQ9MLLR1b7lfmY_GrZ4JDHZQMe8sB0g,1717
|
|
70
|
+
solace_agent_mesh/common/a2a_spec/a2a.json,sha256=l9biQ1M2g2zR1B3_rPg6GpeQK2K4Ju8U7FcE24XJXxc,103940
|
|
71
|
+
solace_agent_mesh/common/a2a_spec/a2a_spec_llm.txt,sha256=p8Ub3thLRYe74kh_OSLDb5aBAYLwiSS9ZHClNQN2XsY,12701
|
|
72
|
+
solace_agent_mesh/common/a2a_spec/schemas/agent_progress_update.json,sha256=YCFDfiF5hQkzUxOGk1x1BBy3ZBdS5wbP9g0P1DAcMR0,609
|
|
73
|
+
solace_agent_mesh/common/a2a_spec/schemas/artifact_creation_progress.json,sha256=JiMwpZ8-NYyiPWF5zGAa3yoMkmE167UDjMT8UNCw04A,954
|
|
74
|
+
solace_agent_mesh/common/a2a_spec/schemas/llm_invocation.json,sha256=_Ev5PUgZrcY1FAKRofWCcUN08_TVHHaPhuhOHB2WUSM,583
|
|
75
|
+
solace_agent_mesh/common/a2a_spec/schemas/schemas_llm.txt,sha256=DQmfm-8_8hUEUh2TA7YUgPYw3BfH4RhiX_lAvhbZTVA,6780
|
|
76
|
+
solace_agent_mesh/common/a2a_spec/schemas/tool_invocation_start.json,sha256=xRwcoJJTqpG8B1wKZwj3yIftx4oB44f7zknoXjuHA0I,867
|
|
77
|
+
solace_agent_mesh/common/a2a_spec/schemas/tool_result.json,sha256=yUgmkYDRnwuKOAmlNivdMQ3s-RKlbX6pAuWNaj6CSic,854
|
|
64
78
|
solace_agent_mesh/common/middleware/__init__.py,sha256=HjlEneTOAnApGEjUow8BFqdFloW0AEnV7Qwng5PaVj4,408
|
|
65
79
|
solace_agent_mesh/common/middleware/config_resolver.py,sha256=gu237CXDJcFAH1zae2on-GEP0UevxjulihZ73GAyfZw,4431
|
|
66
|
-
solace_agent_mesh/common/middleware/middleware_llm.txt,sha256
|
|
80
|
+
solace_agent_mesh/common/middleware/middleware_llm.txt,sha256=TSgh6Z5zXD7XoSrdD23ofJFzdhGp_7Siv2kYqTP93p0,9089
|
|
67
81
|
solace_agent_mesh/common/middleware/registry.py,sha256=5eQQW_E61_kBs4W8JZA115wv_tEggJwqmhxkmqAefHI,3931
|
|
68
|
-
solace_agent_mesh/common/
|
|
69
|
-
solace_agent_mesh/common/
|
|
70
|
-
solace_agent_mesh/common/
|
|
71
|
-
solace_agent_mesh/common/server/task_manager.py,sha256=-aqo5W589oTP7OFfwR9ibQ-35kHQDY43aY4MDW_ELnw,10249
|
|
72
|
-
solace_agent_mesh/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
|
|
82
|
+
solace_agent_mesh/common/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
+
solace_agent_mesh/common/sac/sac_llm.txt,sha256=kylXMKzkSl7JBSkIaPYeU4cS3r2bMwsWd60sTQNypqY,2841
|
|
84
|
+
solace_agent_mesh/common/sac/sam_component_base.py,sha256=RP-qd1VN1lg4avo6QgreIcAWtyseU5T9uoFOqJezSAw,9731
|
|
73
85
|
solace_agent_mesh/common/services/__init__.py,sha256=4m4Vnp-DgXSsj-JFcE5ONAwjyWNm8IuaIxF2a0hV0SA,114
|
|
74
86
|
solace_agent_mesh/common/services/employee_service.py,sha256=sIxj0Nt7JRL52P8MzGv3XfCXlBoGRSPOGkq9moMvA4s,6269
|
|
75
87
|
solace_agent_mesh/common/services/identity_service.py,sha256=o6T-hnzfyTr-KAGcHhOEfS-y2jDfLGgESSuSpWFwxzA,4670
|
|
76
|
-
solace_agent_mesh/common/services/services_llm.txt,sha256=
|
|
88
|
+
solace_agent_mesh/common/services/services_llm.txt,sha256=RsJO51zDpJS_Fah0UXvAg0LurA0PPMnSmjiuIiTcyzM,13936
|
|
77
89
|
solace_agent_mesh/common/services/providers/__init__.py,sha256=UVRTEftrFu3XMFRmNLiXKAFRaDYoD-_As05cIOO0gqI,126
|
|
78
90
|
solace_agent_mesh/common/services/providers/local_file_identity_service.py,sha256=v_G-2ASl7CbM-Fw6-NxYiUS0ODkN1XYW7cwmeqImIHU,4913
|
|
79
|
-
solace_agent_mesh/common/services/providers/providers_llm.txt,sha256=
|
|
91
|
+
solace_agent_mesh/common/services/providers/providers_llm.txt,sha256=UjxyEPSURBOQ2qYKS5JZJ6xvkqCxbalLZ19Jdsw_kQU,3221
|
|
80
92
|
solace_agent_mesh/common/utils/__init__.py,sha256=V4B3mUhsqB_3YYdT_JZepEw32OHf4mhzMR7I8I3aV-8,129
|
|
93
|
+
solace_agent_mesh/common/utils/artifact_utils.py,sha256=-FEd1PlspVQNC-iknNeAy6AToZSvuV5SbH71fK7l1X4,826
|
|
81
94
|
solace_agent_mesh/common/utils/asyncio_macos_fix.py,sha256=35CBuEX2HSTflDHVWR06_BaM7d_wD8YJ598uQUNS6BE,2846
|
|
82
95
|
solace_agent_mesh/common/utils/in_memory_cache.py,sha256=AGfyZwqJ7wTjeBBgSKsHWH1v4X8FwpyymCgS8FWVgVI,3316
|
|
83
96
|
solace_agent_mesh/common/utils/initializer.py,sha256=PGznxI70SNiWS8usLEzqhUXxDDvcQgQzY8tBlTJc0Bc,1866
|
|
@@ -85,56 +98,56 @@ solace_agent_mesh/common/utils/log_formatters.py,sha256=EV8-ryy9mQgGv8hXipKrdXCu
|
|
|
85
98
|
solace_agent_mesh/common/utils/message_utils.py,sha256=MFICU-isggU7LJhev0qCm9n5thlhuc1KZ4mt1tNcKKY,2825
|
|
86
99
|
solace_agent_mesh/common/utils/mime_helpers.py,sha256=wbX5g4GNodyWdcmMeKc1VxZcHdDhItN4hrZI3-siqlk,4316
|
|
87
100
|
solace_agent_mesh/common/utils/push_notification_auth.py,sha256=Jp3W2cqNQK6Q27dLGo2bzCOQcwp23TkgkAcb5CckdAo,4622
|
|
88
|
-
solace_agent_mesh/common/utils/utils_llm.txt,sha256=
|
|
101
|
+
solace_agent_mesh/common/utils/utils_llm.txt,sha256=Sdj3ecsd2mFOZiYEs05fTipvzL7OmPA1zNh-qjxJxqU,14416
|
|
89
102
|
solace_agent_mesh/common/utils/embeds/__init__.py,sha256=UQsXrRiFmeKSy_gW_tIHGEI3Av8HprvHM7tzhqmOaiA,733
|
|
90
103
|
solace_agent_mesh/common/utils/embeds/constants.py,sha256=X5bc93SK2Mr9xVEzVfcIA-SkU_zyTfh8zBRq6Rm3gD0,1447
|
|
91
104
|
solace_agent_mesh/common/utils/embeds/converter.py,sha256=WY2XogyR3mCZPNwTFc45lfUG9bA9pTO2XJlt2ksPfSw,18586
|
|
92
|
-
solace_agent_mesh/common/utils/embeds/embeds_llm.txt,sha256=
|
|
105
|
+
solace_agent_mesh/common/utils/embeds/embeds_llm.txt,sha256=Cy0rj25Bb3q69LnQFIDx94m623p_CT7nraXgztTI6m8,13245
|
|
93
106
|
solace_agent_mesh/common/utils/embeds/evaluators.py,sha256=-EONVHnzq2aGDIPNnc598tYwLl3yhnfT9srDtcWtST8,14284
|
|
94
107
|
solace_agent_mesh/common/utils/embeds/modifiers.py,sha256=LE3ZPtjq2IfXXgotiTfCE9Bof-TVFjsETn9JV7b8Fck,27941
|
|
95
108
|
solace_agent_mesh/common/utils/embeds/resolver.py,sha256=kkkbH8FKq987aF_O608CSlpgpJGY9BCFdx8zwHyQaNQ,32310
|
|
96
109
|
solace_agent_mesh/common/utils/embeds/types.py,sha256=jgXPjvZDoJS2ji-bNjiAbfBQuz_OfLHn-frfyI6uQtc,303
|
|
97
110
|
solace_agent_mesh/core_a2a/__init__.py,sha256=DSxiK4RT2IwAk4UOja9aF-G44u0G62yWh_Mz0G9tuv0,59
|
|
98
|
-
solace_agent_mesh/core_a2a/core_a2a_llm.txt,sha256=
|
|
99
|
-
solace_agent_mesh/core_a2a/service.py,sha256=
|
|
111
|
+
solace_agent_mesh/core_a2a/core_a2a_llm.txt,sha256=KykfzI3465QktMkqgNbS7-nEJndE6KnafBVuGb_7Mmc,4085
|
|
112
|
+
solace_agent_mesh/core_a2a/service.py,sha256=iVSjhoKWTE3fOEE37SMtDPdDf4i6eh9_6vsjeRv1Y7A,11016
|
|
100
113
|
solace_agent_mesh/gateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
-
solace_agent_mesh/gateway/gateway_llm.txt,sha256=
|
|
114
|
+
solace_agent_mesh/gateway/gateway_llm.txt,sha256=67m_yuRW0VJ4ddldGWwXLx0aiVqK5lZH3RamNX1fATk,14063
|
|
102
115
|
solace_agent_mesh/gateway/base/__init__.py,sha256=lOpIGp8W2rFNpLxfpk3VKLA-dBqxwtMxMVlhbaCisJY,72
|
|
103
|
-
solace_agent_mesh/gateway/base/app.py,sha256=
|
|
104
|
-
solace_agent_mesh/gateway/base/base_llm.txt,sha256=
|
|
105
|
-
solace_agent_mesh/gateway/base/component.py,sha256=
|
|
116
|
+
solace_agent_mesh/gateway/base/app.py,sha256=LWIdT9by6Dg3sWCUgmfF36TwMJ04tyYfZHQu-is-5vo,11144
|
|
117
|
+
solace_agent_mesh/gateway/base/base_llm.txt,sha256=51U3VfwzCfptYxcFIjmNE8Wt07cgFfH3VlEp2kaXBZU,11291
|
|
118
|
+
solace_agent_mesh/gateway/base/component.py,sha256=chHk4h13XLhOOGjEBIu3b7Ksr_ALcoWw7TUBOj5kofE,55145
|
|
106
119
|
solace_agent_mesh/gateway/base/task_context.py,sha256=sFRRHyvBij-xms1f_VFc8om8-xIpRZawIctWtdmi6QY,2446
|
|
107
120
|
solace_agent_mesh/gateway/http_sse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
121
|
solace_agent_mesh/gateway/http_sse/app.py,sha256=4KVkSdQHf8-s5y8HgoadxGwDOOSX17vVWEuUuMzMlEA,6484
|
|
109
|
-
solace_agent_mesh/gateway/http_sse/component.py,sha256=
|
|
122
|
+
solace_agent_mesh/gateway/http_sse/component.py,sha256=dKiz_CvFT26sapS69xsuKoCjLCnwuWc5Cl3basJK_Zs,65214
|
|
110
123
|
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=KgcOOOvzfUD8sdSvpMTqAcxOpyQK2Hp4TEPu_6RnDJk,11298
|
|
111
|
-
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=
|
|
112
|
-
solace_agent_mesh/gateway/http_sse/main.py,sha256=
|
|
124
|
+
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=Jx6IJWYFl48LmW-xDuCtjpubs0iPY54bt6bLWF_SNUw,14271
|
|
125
|
+
solace_agent_mesh/gateway/http_sse/main.py,sha256=JjOjVCYr2m5-9UxXAPYb-PjKbe0ndRALf6Vj7Wb4ADI,17238
|
|
113
126
|
solace_agent_mesh/gateway/http_sse/session_manager.py,sha256=bHFWcmvavhBTDTiTRhD4WCX1tKLO3_tylaYV_wEnDP8,7424
|
|
114
127
|
solace_agent_mesh/gateway/http_sse/sse_manager.py,sha256=c51QIm80Q1G8aOzimk06ZaOH9wv2bl_WREP1GqevLZk,13507
|
|
115
128
|
solace_agent_mesh/gateway/http_sse/components/__init__.py,sha256=zSidQziYjSrjX5XXXbyBAJ7pgKr0Efy6RXiJiufdq0Q,186
|
|
116
|
-
solace_agent_mesh/gateway/http_sse/components/components_llm.txt,sha256=
|
|
129
|
+
solace_agent_mesh/gateway/http_sse/components/components_llm.txt,sha256=DF-kLoVXikA0-R_7-xA3gsf6vFq8av4CAvbgJUplSVg,3183
|
|
117
130
|
solace_agent_mesh/gateway/http_sse/components/visualization_forwarder_component.py,sha256=oHVnv4DK-nP9Mbp6i6CSJ63Ch6lx4epE3Cn0dn3BndQ,3941
|
|
118
131
|
solace_agent_mesh/gateway/http_sse/routers/__init__.py,sha256=WxRX__xU4YIYhvjN0DTY9XdNYAB9dP81pabwiB23YSo,133
|
|
119
|
-
solace_agent_mesh/gateway/http_sse/routers/agents.py,sha256=
|
|
120
|
-
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=
|
|
132
|
+
solace_agent_mesh/gateway/http_sse/routers/agents.py,sha256=NtOUsC-A7-_RmvLmXwaJ1t1opb9BEIQbisgxsFIks5U,1268
|
|
133
|
+
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=m-O6dgFjz16UEKc1erblip6rJo0mkuqss37wSzNfdl4,31616
|
|
121
134
|
solace_agent_mesh/gateway/http_sse/routers/auth.py,sha256=LcgF45H7AGVPabFLdHcrEqSndadlpx6WbOdBY_l96X8,7201
|
|
122
135
|
solace_agent_mesh/gateway/http_sse/routers/config.py,sha256=je0GJbGvNXyK5D5EYEDHZPKJqNaR-rkYOQtdfB3-6oA,1903
|
|
123
136
|
solace_agent_mesh/gateway/http_sse/routers/people.py,sha256=O2NvV6LD3g9vFXN31yUHKTgkzY1RVW5RDfQq_IP5Q14,2041
|
|
124
|
-
solace_agent_mesh/gateway/http_sse/routers/routers_llm.txt,sha256=
|
|
125
|
-
solace_agent_mesh/gateway/http_sse/routers/sessions.py,sha256=
|
|
137
|
+
solace_agent_mesh/gateway/http_sse/routers/routers_llm.txt,sha256=B7W3Y_TlPJb1t5wdLYrWx1c4sOkjsPi5qCxD0gqPqR0,11715
|
|
138
|
+
solace_agent_mesh/gateway/http_sse/routers/sessions.py,sha256=RxQWnT8oqs0sP4g7fPmBKYtda-j1wNWVHmdDuErxGZ4,2781
|
|
126
139
|
solace_agent_mesh/gateway/http_sse/routers/sse.py,sha256=AUk2p3_KBJLPyAlZ13fHApfd05SQPSJJkwZNq4mJ4PY,5371
|
|
127
|
-
solace_agent_mesh/gateway/http_sse/routers/tasks.py,sha256=
|
|
140
|
+
solace_agent_mesh/gateway/http_sse/routers/tasks.py,sha256=LdENw3M4LOdFSGYHbjH1RjhAykL35CHIH2YJU0iT7ro,8017
|
|
128
141
|
solace_agent_mesh/gateway/http_sse/routers/users.py,sha256=QZYhglmKHjEadS84DnpFygaqik7TKUhuf2mExQqeQJk,2104
|
|
129
142
|
solace_agent_mesh/gateway/http_sse/routers/visualization.py,sha256=AZE5cjrx69W7mwtcKpjGgLunJV08vGHukuUXp-gp6DQ,44652
|
|
130
143
|
solace_agent_mesh/gateway/http_sse/services/__init__.py,sha256=Fk2FIbrJdG1StPCoggbdT2C4Vl5d6qICT6R8yj4IZPQ,92
|
|
131
|
-
solace_agent_mesh/gateway/http_sse/services/agent_service.py,sha256=
|
|
144
|
+
solace_agent_mesh/gateway/http_sse/services/agent_service.py,sha256=TFwlyGzi_SXLfKNosfa_vxwnxTclrnaVjlm6N7xWQEk,2258
|
|
132
145
|
solace_agent_mesh/gateway/http_sse/services/people_service.py,sha256=PbR6vbImQ95JO7p5fSbraBGsHg84dGVjDz4yd-wbrwg,4596
|
|
133
|
-
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=
|
|
134
|
-
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=
|
|
135
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
146
|
+
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=hjMyBLidqh8VGFl7gsA-8VTM1zTUqu4oyI-UJQRReKA,5703
|
|
147
|
+
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=KWtUi34rFCUYDu8w5qw2AXfoAkkNfDipje57FUdXKsY,4348
|
|
148
|
+
solace_agent_mesh/cli/__init__.py,sha256=LGVQyDsWifdACo7qztwb8RWWHds1E7uQ-ZqD8SAjyw4,22
|
|
136
149
|
solace_agent_mesh/cli/main.py,sha256=yFbF4ijz7P6nxj26d-mTC8BnK6NKVnfqPh3y4pDBZqo,831
|
|
137
|
-
solace_agent_mesh/cli/utils.py,sha256=
|
|
150
|
+
solace_agent_mesh/cli/utils.py,sha256=2bHdJFTMn6zakNxwJ8_pbQLD0HYPtTEabWWUcMUNtvk,6146
|
|
138
151
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
152
|
solace_agent_mesh/cli/commands/docs_cmd.py,sha256=vNXyKADt8RrKnP7wsLaj7fBaz6SUgXMMItygHrohE_Y,1953
|
|
140
153
|
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=mLElqAGkaf-MK3r1nIO_sRu0BXwUF1WC38zpeUv_ycc,2193
|
|
@@ -143,8 +156,8 @@ solace_agent_mesh/cli/commands/add_cmd/__init__.py,sha256=IGTXUx_AcoinYlzlZtQsji
|
|
|
143
156
|
solace_agent_mesh/cli/commands/add_cmd/add_cmd_llm.txt,sha256=x-UE5buoIEE_oUJ3opOzW8U33S3XUKCRNKWxNXNVk-c,10212
|
|
144
157
|
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=0LUnAVh_ed1mX0R1w1-qI3cXpkGm9Mtvhw5unPA1V4g,26740
|
|
145
158
|
solace_agent_mesh/cli/commands/add_cmd/gateway_cmd.py,sha256=kV7XOo2CvYWPQ6AL8cLDm-2GACbLAUlQc2c9fNzybEY,12840
|
|
146
|
-
solace_agent_mesh/cli/commands/add_cmd/web_add_agent_step.py,sha256=
|
|
147
|
-
solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py,sha256=
|
|
159
|
+
solace_agent_mesh/cli/commands/add_cmd/web_add_agent_step.py,sha256=niutiDp5neHtgEEtWKcK9TGLJHga87y46rrjVHdjkFU,3702
|
|
160
|
+
solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py,sha256=Gk6Mw54l_M9QJKBa0IkHOkKJmuTsb4HQkIUTyVN-tqE,4326
|
|
148
161
|
solace_agent_mesh/cli/commands/init_cmd/__init__.py,sha256=i66jmAfYiw_iKcBDm8UGwB8Zqb0sW1ImAJYzw2AsOa8,14818
|
|
149
162
|
solace_agent_mesh/cli/commands/init_cmd/broker_step.py,sha256=FzY7yqRDZqy_B7lXWQvb8OLoOULPlt8cI-VxuzaNSUU,7010
|
|
150
163
|
solace_agent_mesh/cli/commands/init_cmd/directory_step.py,sha256=3uPZybhDh84vtXqFfck4__6Dbi9LdqXqs0nRjP3VApY,862
|
|
@@ -152,12 +165,12 @@ solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=DukPYAhvsVnT3y14dwww4
|
|
|
152
165
|
solace_agent_mesh/cli/commands/init_cmd/init_cmd_llm.txt,sha256=7atW7HTy_2XQ3UoPttgIlyIF4_Du2068rqZE2imaHP8,13226
|
|
153
166
|
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=iW0vOWa8B2eNdh43tIcGsURb9MaTpVGUzlsbln4gFFM,17930
|
|
154
167
|
solace_agent_mesh/cli/commands/init_cmd/project_files_step.py,sha256=bOh7yYuaXIIs0q3-nd1nSVc6P6g6EHoDJjFDlKZVnf4,1352
|
|
155
|
-
solace_agent_mesh/cli/commands/init_cmd/web_init_step.py,sha256=
|
|
168
|
+
solace_agent_mesh/cli/commands/init_cmd/web_init_step.py,sha256=0kXKSRDHoIONcFfsvLNI0eOtKOGWoT3OyzpTPAAxdrE,3177
|
|
156
169
|
solace_agent_mesh/cli/commands/init_cmd/webui_gateway_step.py,sha256=l9rGIEHKEDro7pgTLUlFfPYt3sMrYQ8ly4FJvIJA9Ls,6969
|
|
157
170
|
solace_agent_mesh/cli/commands/plugin_cmd/__init__.py,sha256=10F21lMHH6qBvzHcprntMChBAI8cL4wLj6_vSKe8hV0,495
|
|
158
171
|
solace_agent_mesh/cli/commands/plugin_cmd/add_cmd.py,sha256=G-MJEGwX7saxIeEVMFMX01_h-OTttAUb-5RXDW8st1M,14435
|
|
159
172
|
solace_agent_mesh/cli/commands/plugin_cmd/build_cmd.py,sha256=OzEO2lsezlIZe29jWiR08ajQeDEP1cYqrWaMSd8i8o4,2988
|
|
160
|
-
solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py,sha256=
|
|
173
|
+
solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py,sha256=GskrCwJQ42upCIG2nvMomprPrT1f9sBnkGast2ZLb_c,5136
|
|
161
174
|
solace_agent_mesh/cli/commands/plugin_cmd/create_cmd.py,sha256=_J89BbmpamasxM7guD5WZn8ZmHKyT5gaCA9hOTS8a1c,11906
|
|
162
175
|
solace_agent_mesh/cli/commands/plugin_cmd/official_registry.py,sha256=rnzQq3LDvSzvCPoEhoSn6M3xQG4AVLd54PX9cA5GzPg,5218
|
|
163
176
|
solace_agent_mesh/cli/commands/plugin_cmd/plugin_cmd_llm.txt,sha256=-CS4uY1OrPSXDm8cxyrBAv6yLrP5P-GTzyeaZFqaHsM,10967
|
|
@@ -184,7 +197,7 @@ solace_agent_mesh/evaluation/report/templates/header.html,sha256=XP11gY77aoNWrI5
|
|
|
184
197
|
solace_agent_mesh/templates/agent_template.yaml,sha256=5SsauO84yXI1vIS1OLaRwZDEskKMvUKfVTcjj78jN7I,1627
|
|
185
198
|
solace_agent_mesh/templates/eval_backend_template.yaml,sha256=bWAgyXPc4mQot7IWlPa0_O5eGQcQ-Mg_DZzQW6fOrP4,1866
|
|
186
199
|
solace_agent_mesh/templates/gateway_app_template.py,sha256=ClzRjowVTdov9azuPy62AICLd5GuhBHIxlbayeW8oUU,3031
|
|
187
|
-
solace_agent_mesh/templates/gateway_component_template.py,sha256=
|
|
200
|
+
solace_agent_mesh/templates/gateway_component_template.py,sha256=2WyKdOMe8U7kxoI_EJ5pKDTo4eUyb8wONTO5WMc1NtQ,23943
|
|
188
201
|
solace_agent_mesh/templates/gateway_config_template.yaml,sha256=sSDJ5C1BO4lTVuRMnCUr6qQTq8BXLUIJrJZrGH7J_0A,1289
|
|
189
202
|
solace_agent_mesh/templates/logging_config_template.ini,sha256=FggFniB1XZ23CG2lF7Y_3VTey2-9nlXIssFvevXtcSw,1275
|
|
190
203
|
solace_agent_mesh/templates/main_orchestrator.yaml,sha256=Ig4DwYViFXN-1KFn1gR5CVIEeK0dbC8PxfNz5bFqFAE,1757
|
|
@@ -198,12 +211,12 @@ solace_agent_mesh/templates/plugin_tools_template.py,sha256=GUVw556CtBYE6sHbpXnF
|
|
|
198
211
|
solace_agent_mesh/templates/shared_config.yaml,sha256=6ZzDqUQhizkkVv3OxDJtjz_UYCCGJAVB2AcEy7aQYaE,3465
|
|
199
212
|
solace_agent_mesh/templates/templates_llm.txt,sha256=T3h8CcIowTbyBedlfRk7FZww8_xGmnY5fEqGhhdI3JU,9234
|
|
200
213
|
solace_agent_mesh/templates/webui.yaml,sha256=WJV06elz6A31rLOnQK-0axXpVUY1BcH490A59DM4Og0,1976
|
|
201
|
-
solace_agent_mesh/assets/docs/404.html,sha256=
|
|
202
|
-
solace_agent_mesh/assets/docs/lunr-index-
|
|
203
|
-
solace_agent_mesh/assets/docs/lunr-index.json,sha256=
|
|
204
|
-
solace_agent_mesh/assets/docs/search-doc-
|
|
205
|
-
solace_agent_mesh/assets/docs/search-doc.json,sha256=
|
|
206
|
-
solace_agent_mesh/assets/docs/sitemap.xml,sha256=
|
|
214
|
+
solace_agent_mesh/assets/docs/404.html,sha256=hMgCmff4oQjuAla-suLFvtDa4aIc6jvJrqf5JVa-LCI,11749
|
|
215
|
+
solace_agent_mesh/assets/docs/lunr-index-1756992446316.json,sha256=gq7nFYwOFKlBrCPyTRt195idnsBrcR-4On4NfwzcRpE,1031050
|
|
216
|
+
solace_agent_mesh/assets/docs/lunr-index.json,sha256=gq7nFYwOFKlBrCPyTRt195idnsBrcR-4On4NfwzcRpE,1031050
|
|
217
|
+
solace_agent_mesh/assets/docs/search-doc-1756992446316.json,sha256=J9YiRv4JHeimrt4VXXKtitESx0OqQLSnmKyJDECToxU,362524
|
|
218
|
+
solace_agent_mesh/assets/docs/search-doc.json,sha256=J9YiRv4JHeimrt4VXXKtitESx0OqQLSnmKyJDECToxU,362524
|
|
219
|
+
solace_agent_mesh/assets/docs/sitemap.xml,sha256=VRzMUdw7MWkd-zzYEVKFD2dvTTyJ_hydqGKm0stjojs,6321
|
|
207
220
|
solace_agent_mesh/assets/docs/assets/css/styles.906a1503.css,sha256=gQj16ydMLPiq6y-t8Ovto65hsvPbQX6coyIFOja-2eY,83293
|
|
208
221
|
solace_agent_mesh/assets/docs/assets/images/Solace_AI_Framework_With_Broker-85f0a306a9bcdd20b390b7a949f6d862.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
209
222
|
solace_agent_mesh/assets/docs/assets/images/sac-flows-80d5b603c6aafd33e87945680ce0abf3.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
@@ -231,7 +244,7 @@ solace_agent_mesh/assets/docs/assets/js/332e10b5.7a103f42.js,sha256=5vrtNVDFX-_x
|
|
|
231
244
|
solace_agent_mesh/assets/docs/assets/js/3624.b524e433.js,sha256=cmS9btCBUGcxCToTFwQeBROmuScAVaIaaRXiMgvRvvg,14839
|
|
232
245
|
solace_agent_mesh/assets/docs/assets/js/375.708d48db.js,sha256=tnoRKYgl89ieY_0s8NeHjMy9gQvpDQPo5q6kfr5zNt0,4319
|
|
233
246
|
solace_agent_mesh/assets/docs/assets/js/3834.b6cd790e.js,sha256=LuFdgiur49yMqtwnhUN7ECJ2lPvBaWdDam3OANM5WcM,196
|
|
234
|
-
solace_agent_mesh/assets/docs/assets/js/3d406171.
|
|
247
|
+
solace_agent_mesh/assets/docs/assets/js/3d406171.0b9eeed1.js,sha256=ysBVsGz8jiqpGJBMNGUCRXE5VGeVbbbKOXSo1004gak,45141
|
|
235
248
|
solace_agent_mesh/assets/docs/assets/js/4250.95455b28.js,sha256=y3OgeXf-tuJO5M6gJ70aW58HdFE7vZIPX7V4mduXL9c,197
|
|
236
249
|
solace_agent_mesh/assets/docs/assets/js/42b3f8d8.8ccb9901.js,sha256=B2B5XLAdr8qH77ibF_ZWzZSv_Z-F2FRS6f_XGOdf1vc,34514
|
|
237
250
|
solace_agent_mesh/assets/docs/assets/js/4356.d169ab5b.js,sha256=JJdBrbL2-8tn2jfAGsO1ezjcM37BAIZnZsNYgc4UoZs,195
|
|
@@ -254,10 +267,11 @@ solace_agent_mesh/assets/docs/assets/js/6395.e9c73649.js,sha256=-v8U5XdxnXthhTAY
|
|
|
254
267
|
solace_agent_mesh/assets/docs/assets/js/6796.51d2c9b7.js,sha256=yeZg7UFFslMqrIQP-dqk-4vBwLDsJ5Rx6aD1VliW07U,6300
|
|
255
268
|
solace_agent_mesh/assets/docs/assets/js/6976.379be23b.js,sha256=Fe3y3jWBBUqmD4dIUwZUUjiCvv5uSLEss3cOEzUDB9E,193
|
|
256
269
|
solace_agent_mesh/assets/docs/assets/js/6978.ee0b945c.js,sha256=Fabb2n81BbNegY_9ZboMCBu-Zgd5-nETGqLxviUogDg,11834
|
|
270
|
+
solace_agent_mesh/assets/docs/assets/js/6e0db977.39a79ca9.js,sha256=IUgD6mX7LifBRlkWfJrYd4de9p9rawacatuithy8I1g,32591
|
|
257
271
|
solace_agent_mesh/assets/docs/assets/js/7040.cb436723.js,sha256=cmW7CCISvRnJNljTDg4jGJtG6rjSp0nWfZvchAKSdf4,36638
|
|
258
272
|
solace_agent_mesh/assets/docs/assets/js/7195.412f418a.js,sha256=8VHuob7jbA49epJL54bEU-mtOdSeUFXzqbgThE4walo,46219
|
|
259
273
|
solace_agent_mesh/assets/docs/assets/js/7280.3fb73bdb.js,sha256=XlDQpYplGuVoEqfXCt8Yzocd9uBTu64VUrNp4LQDyIY,659
|
|
260
|
-
solace_agent_mesh/assets/docs/assets/js/75384d09.
|
|
274
|
+
solace_agent_mesh/assets/docs/assets/js/75384d09.bf78fbdb.js,sha256=aQUo5JFT0WDv8thj_Uv85hkFPI8P27SosJDy8fZj1zk,21757
|
|
261
275
|
solace_agent_mesh/assets/docs/assets/js/768e31b0.8b51cd70.js,sha256=RiCB8_hLIkx_-9iLJYC_SaDUb8trsfJ-zsETOTX6oLU,12950
|
|
262
276
|
solace_agent_mesh/assets/docs/assets/js/7845.e33e7c4c.js,sha256=sNEWPWBTnV-BmKI7vkcgRpTYeErGBXRbtH_X5YRnr-c,11143
|
|
263
277
|
solace_agent_mesh/assets/docs/assets/js/7900.69516146.js,sha256=MWXxfpYNV5CORkPa0r6EyyynbVJrNENknNv0Zb7TqS8,43021
|
|
@@ -271,6 +285,7 @@ solace_agent_mesh/assets/docs/assets/js/8591.d7c16be6.js.LICENSE.txt,sha256=W15K
|
|
|
271
285
|
solace_agent_mesh/assets/docs/assets/js/8709.7ecd4047.js,sha256=YU5vUOSZ5gdEKBbfOEXpm_8uA_Yq54lYaiwGqT68vyM,78161
|
|
272
286
|
solace_agent_mesh/assets/docs/assets/js/8731.49e930c2.js,sha256=ecg70IZRPAH8EOZxe0LHuP8bzUlB7Awf2vBj4DldxP4,336224
|
|
273
287
|
solace_agent_mesh/assets/docs/assets/js/8908.f9d1b506.js,sha256=LrKHDjwNk1bPFNWpwTeQmTNlC47BvAhr-S3I-AcB_FQ,30883
|
|
288
|
+
solace_agent_mesh/assets/docs/assets/js/90dd9cf6.88f385ea.js,sha256=a2enxSeT4tPXGf1jexQeNrvdr9lGL6K_9dkGeXRdtV0,22040
|
|
274
289
|
solace_agent_mesh/assets/docs/assets/js/9157.b4093d07.js,sha256=-LWKw3jEtKdkEjap1b0NI7tJLVEPj8SyTRq5cJvL0TA,22109
|
|
275
290
|
solace_agent_mesh/assets/docs/assets/js/9278.a4fd875d.js,sha256=Nm7cJgq11XXaYA3WxmU_H5Yk2S8L1fgF6RC9lX7eepU,143
|
|
276
291
|
solace_agent_mesh/assets/docs/assets/js/945fb41e.c63791d1.js,sha256=qlT-X_eLMyfcFJOm7WoWrZdKhbi3pwerMIbGk6tWHfY,15024
|
|
@@ -291,45 +306,47 @@ solace_agent_mesh/assets/docs/assets/js/cc969b05.bd3e0d6c.js,sha256=9LqCerLmI1iU
|
|
|
291
306
|
solace_agent_mesh/assets/docs/assets/js/cd3d4052.b6535013.js,sha256=wi8AuSgR-M8XtFY639DAVFuaiur6LaBabHKoh5qfuJY,9747
|
|
292
307
|
solace_agent_mesh/assets/docs/assets/js/ced92a13.fb92e7ca.js,sha256=96enCMQqnD-_WrFda13oJ3gPLYxmy93LXDFxDuxA5JY,25255
|
|
293
308
|
solace_agent_mesh/assets/docs/assets/js/cee5d587.f5b73ca1.js,sha256=ciDSktNPCP_cmpHCR-ycCpuFEeVmbV_D8uHydRZ225w,9508
|
|
294
|
-
solace_agent_mesh/assets/docs/assets/js/f284c35a.
|
|
309
|
+
solace_agent_mesh/assets/docs/assets/js/f284c35a.fb68323a.js,sha256=kb4Hu-dXiNS_enEYH9nVVjHLjIYf90N8AjWHsoKhtNU,20033
|
|
295
310
|
solace_agent_mesh/assets/docs/assets/js/f897a61a.0aa29dbb.js,sha256=Bv0Itx75hHCRAiGKy34-NjK7CSWZ9CT1l5uyni3GCOw,16949
|
|
296
311
|
solace_agent_mesh/assets/docs/assets/js/fbfa3e75.aca209c9.js,sha256=vmq7isB22h2J_2cVIt1h6D2OhwU6wTBEnk1-CNZv9Wk,7314
|
|
297
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
298
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
299
|
-
solace_agent_mesh/assets/docs/assets/js/runtime~main.
|
|
300
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=
|
|
301
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=
|
|
302
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=
|
|
303
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=
|
|
304
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256
|
|
305
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=
|
|
306
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=
|
|
307
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=
|
|
308
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=
|
|
309
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=
|
|
310
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html,sha256=
|
|
311
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=
|
|
312
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=
|
|
313
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=
|
|
314
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
315
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
316
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
317
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
318
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
319
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
320
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
321
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
322
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
323
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
324
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
325
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
326
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
327
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
328
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
329
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
330
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
331
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
332
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
312
|
+
solace_agent_mesh/assets/docs/assets/js/main.a75ecc0d.js,sha256=qAgKns7eAvkH7yo5YkEuXaqU2n5XsfcS3HUUYdURmtk,481106
|
|
313
|
+
solace_agent_mesh/assets/docs/assets/js/main.a75ecc0d.js.LICENSE.txt,sha256=3Jia5o7yaxOtbxuy9khs-thK96m55yCiPaUA-IkWh0A,2069
|
|
314
|
+
solace_agent_mesh/assets/docs/assets/js/runtime~main.458efb1d.js,sha256=IiKZikQnoWUmSCA44TfqOA8GXNTQcHvulwTBJA55ggU,6084
|
|
315
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=P3dshkkqgLGSgu0TYnAgJpyQd8aodq8Z559GwNxzkKA,39125
|
|
316
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=o1mSALku8oZz5vYvqZS19iq_SvVH2RU7ZUiS9cz-CI4,32415
|
|
317
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=L0fHUeXLbsnvpMZdYB13SwYAx-vCG5dq5PPe7ak8Ezc,49860
|
|
318
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=Z9zSwiWOIzv8vrhPr5yexisMLeJ4Rul1kBvlnPNRiEo,29793
|
|
319
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=-N6h0kisGkO1LXqrAmdEk_iDdiE1PPQ5cmRWYZZFyrc,23499
|
|
320
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=f0BJ_pgdQSSA--rOdtNioNuAvQcIr2Sk6HG_carBcOQ,39583
|
|
321
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=CxzeHsxTudgGL41T7TthUIuGbM64pmqzP1oK9OnWuis,45283
|
|
322
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=vwZPW0ukP8VXFM2QH8lbDtMEmDXcRrCM7rBIX7wsWng,42193
|
|
323
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=hoZqxyAxsirEqPEhxd1GOh54IcSjraeyyYXzysSBAiQ,25737
|
|
324
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=ZxFpEaNRBowUCZUUUpU76PpyCOUwSE_SvSF-KbSJi7k,21370
|
|
325
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html,sha256=M-vnvAZz7REak6S3-h5Jscr7g8qpLokUZO41yYA4R6U,56293
|
|
326
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=lv3cBx1O9f1kb3fDwURMU6aWID4L5GjGCSDVbsnpwk0,32199
|
|
327
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=mG81iOUtYZ5TAhOzpN7h2UdOxGGqd0vHtze4xiucL7w,30107
|
|
328
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=4Bfv1B3j_toxSnjCHtripLR9pntovKsn5lBHXd1zMCU,42186
|
|
329
|
+
solace_agent_mesh/assets/docs/docs/documentation/migration-guides/a2a-upgrade-to-0.3.0/a2a-gateway-upgrade-to-0.3.0/index.html,sha256=bWAL3QCRdxVRF3bD2HbmLZk5sjB2jGEh7_uDY99PTEY,84535
|
|
330
|
+
solace_agent_mesh/assets/docs/docs/documentation/migration-guides/a2a-upgrade-to-0.3.0/a2a-technical-migration-map/index.html,sha256=8WoMGO3pNHUVeI1pk3zJ6Bqd_dgqu6Hxlts1qjrzUS8,87235
|
|
331
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=sGQ-j_BXd2sOC-qouXTRqOfpMvo1T0Ft_BinXFL8v5M,74910
|
|
332
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=DLsnU217qzd-kSMQJdOZUekgz_SSwHMoLqHBnsgDf7w,383013
|
|
333
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=-h9sitDKwGjDZnHDroVKWEulvtwYngUZYFHp4MyJjEc,68916
|
|
334
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=xFQZ8gL8-t2sT1iVl91Ao_4eWNTfFWq1r37HOxiM2Rg,64680
|
|
335
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=Rq_lhVtunLvaQLcieccwoIDoLHkkGYa9Z3CM8nnxBFk,87232
|
|
336
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=YxFWT3kPyn4G7idtaU1_wPVtGZp7EDAto4ZsQw2-1nQ,79979
|
|
337
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=tAQd2V7eUVZbPFFaX8Jjb0iLlXfACcuMGiR3ByPMz-U,46347
|
|
338
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=NS-Wj8ml3SW-VIwSc51VhwHHBrMAupe2FpBTpaZZe0o,49630
|
|
339
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=81Fe40W1yqIO0aIQ9HlBJq3daIodC7AudidnnS-1eww,68937
|
|
340
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=ctyz9TdpCg0gFz2ur7lg5VuOO-NnkEFH-xZUFfx4Ru0,44275
|
|
341
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=TwUMTw6pzZZvojT-5gvIfsG1dBCp9Rz6wgBI81oePIo,34227
|
|
342
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=qvIB49Uo1THmUD0xnJI1vOUOfjtJmCYZORK8EP5ODQU,57682
|
|
343
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=XpE2BU_mEdEYIikIwJu451QaMbaxK68OOJFKnDCamFE,37231
|
|
344
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=Mc91ds8Hea52TK7xgSU_zZ7bWzMXzUq2Ub_mrm4Zjic,50111
|
|
345
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=Eh09DoAlSQ3uPC2GJq5QrYQ6KEIJ_moozc52ZRZoqa8,161890
|
|
346
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=RXSFmMtZ6uQm71_HzQe2KTgMbqJz-OCCen3LENREdRk,402336
|
|
347
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=OoM4-9-GGTdFztBQ1UCl697HYtK81m8pxIMsrjAJU2Y,59083
|
|
348
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256=Ykhl8KJ6gHmx-HYQlJUMzKMZ6LuGy2qxLnhMQWk9wlQ,25246
|
|
349
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=fkWIH-YgnkD4DKGT6kZK9NwJ6HDzdGu44YGwN8Typt8,29254
|
|
333
350
|
solace_agent_mesh/assets/docs/img/Solace_AI_Framework_With_Broker.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
334
351
|
solace_agent_mesh/assets/docs/img/logo.png,sha256=TdXZ2wnkSkaFrGO-5fy2WcmjGXaGzwE29dM83raxoTg,45439
|
|
335
352
|
solace_agent_mesh/assets/docs/img/sac-flows.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
@@ -338,7 +355,7 @@ solace_agent_mesh/assets/docs/img/solace-logo-text.svg,sha256=-wslMOppjNAJqbWRfB
|
|
|
338
355
|
solace_agent_mesh/assets/docs/img/solace-logo.png,sha256=XY5zC_yIVxHdO14TMgW4eTsDWryPsgE_oTSJV4CQthw,17627
|
|
339
356
|
solace_agent_mesh/config_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
357
|
solace_agent_mesh/config_portal/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
|
-
solace_agent_mesh/config_portal/backend/common.py,sha256=
|
|
358
|
+
solace_agent_mesh/config_portal/backend/common.py,sha256=UWVotyiLMJPMVNZWJfgDtfsjxb_jZclymC-9Dto2xZc,3071
|
|
342
359
|
solace_agent_mesh/config_portal/backend/plugin_catalog_server.py,sha256=Qr5cFUMyDq0qHDTa9ZRbczTi8BUWPZTvxAv3jRxa3hw,7875
|
|
343
360
|
solace_agent_mesh/config_portal/backend/server.py,sha256=gx8KIAopkeAmn4WfseP5z79GOE246Lf8nPaCw7QrBPo,23689
|
|
344
361
|
solace_agent_mesh/config_portal/backend/plugin_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -348,23 +365,23 @@ solace_agent_mesh/config_portal/backend/plugin_catalog/registry_manager.py,sha25
|
|
|
348
365
|
solace_agent_mesh/config_portal/backend/plugin_catalog/scraper.py,sha256=j7yJUEKjgsVs7TvSf8Uf_22bKotlYhocIYhfJhTpQPI,21238
|
|
349
366
|
solace_agent_mesh/config_portal/frontend/static/client/Solace_community_logo.png,sha256=ugNi5vBxTdFZMW2uWNZYcutyk4z8yw9e5KEL5XDcodU,5894
|
|
350
367
|
solace_agent_mesh/config_portal/frontend/static/client/favicon.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
351
|
-
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=
|
|
352
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-
|
|
353
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/components-
|
|
354
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/entry.client-
|
|
355
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/index-
|
|
356
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-
|
|
357
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/root-
|
|
368
|
+
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=B8SNP7epdMYwDUjFOg7kbQjIWajRnlQey2pZUKtCVWY,1419
|
|
369
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-Bym6YkMd.js,sha256=Z9IGdSN0ZZRdDjWsRApliumhAFTkCo8IzglhTjSGCRY,278167
|
|
370
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/components-Rk0n-9cK.js,sha256=dXPV9MnIciHjfm68Wp9aKpViYlXfyN_6etThgGS8KO8,40041
|
|
371
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/entry.client-mvZjNKiz.js,sha256=-9lo6je5RWC0Q4FKlTg-tdu1dsoNQvwbLr5zgfZwf58,3862
|
|
372
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/index-DzNKzXrc.js,sha256=4xvgTOvPkqnfRR2N9T199hzTFK6u_NdvA5ImbTe2UYU,217925
|
|
373
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-d845808d.js,sha256=2KAUdAv350w6RtfVuIHWQrZikXgvPiIbzWdXKBHg5Ms,781
|
|
374
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/root-BWvk5-gF.js,sha256=KoDaD7JSrkUDgUbDa0JqaB7mXNCc2fR-T5kKAcH5nho,1799
|
|
358
375
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-DxRwaWiE.css,sha256=HaETPzdva-2CpjK-MmIBI6lipZMiGHmAqLRJiD8s2QE,33607
|
|
359
|
-
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256=
|
|
360
|
-
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=
|
|
361
|
-
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-
|
|
362
|
-
solace_agent_mesh/client/webui/frontend/static/assets/client-
|
|
376
|
+
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256=QjngQl-DRfm4IvHivFaUILSdoEiAWFxxF9_D-0CzDkA,493
|
|
377
|
+
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=Q2MFOgdYwXoMJWAvbOCz2HUpVJbDdGteAqkG2Ld-1xQ,558
|
|
378
|
+
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-BmF2l6vg.js,sha256=L5ATJKi5t_Z9PrE7p3qbVMUQd9bViZA_2d40IJDLK3A,489
|
|
379
|
+
solace_agent_mesh/client/webui/frontend/static/assets/client-D881Dttc.js,sha256=p8V3gtLvpi8skNkcA2SpmvheI5Us2rT6We7V5W07Zi0,187775
|
|
363
380
|
solace_agent_mesh/client/webui/frontend/static/assets/favicon-BLgzUch9.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
364
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
365
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
366
|
-
solace_agent_mesh-1.0.
|
|
367
|
-
solace_agent_mesh-1.0.
|
|
368
|
-
solace_agent_mesh-1.0.
|
|
369
|
-
solace_agent_mesh-1.0.
|
|
370
|
-
solace_agent_mesh-1.0.
|
|
381
|
+
solace_agent_mesh/client/webui/frontend/static/assets/main-C0jZjYa8.js,sha256=Q6GrddydntD47_LCy27qvGDwumDeQclQUKR5x5AXVjw,739849
|
|
382
|
+
solace_agent_mesh/client/webui/frontend/static/assets/main-CCeG324-.css,sha256=s7j9AtWJXbB4clARka4CpLlkxwrJCKKMwKweK9cL09I,119326
|
|
383
|
+
solace_agent_mesh-1.1.0.dist-info/METADATA,sha256=UEhNZI5Jh-j4LDmJD3OymkxxUmcQ3bSX_o1hVnhj35U,24712
|
|
384
|
+
solace_agent_mesh-1.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
385
|
+
solace_agent_mesh-1.1.0.dist-info/entry_points.txt,sha256=5pLVH8d8bd4sxUwBh7VTni8gTTSzTqGfY14zgdQZm1I,106
|
|
386
|
+
solace_agent_mesh-1.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
387
|
+
solace_agent_mesh-1.1.0.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunksolace_agenitc_mesh_docs=self.webpackChunksolace_agenitc_mesh_docs||[]).push([[3011],{8549:e=>{e.exports=JSON.parse('{"version":{"pluginId":"default","version":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","isLast":true,"docsSidebars":{"docSidebar":[{"type":"category","label":"Getting Started","collapsible":true,"collapsed":false,"items":[{"type":"link","label":"Introduction","href":"/solace-agent-mesh/docs/documentation/getting-started/introduction","docId":"documentation/getting-started/introduction","unlisted":false},{"type":"link","label":"Installation","href":"/solace-agent-mesh/docs/documentation/getting-started/installation","docId":"documentation/getting-started/installation","unlisted":false},{"type":"link","label":"Quick Start","href":"/solace-agent-mesh/docs/documentation/getting-started/quick-start","docId":"documentation/getting-started/quick-start","unlisted":false},{"type":"link","label":"Component Overview","href":"/solace-agent-mesh/docs/documentation/getting-started/component-overview","docId":"documentation/getting-started/component-overview","unlisted":false},{"type":"link","label":"Configurations","href":"/solace-agent-mesh/docs/documentation/getting-started/configurations","docId":"documentation/getting-started/configurations","unlisted":false}]},{"type":"category","label":"Components and Concepts","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Architecture","href":"/solace-agent-mesh/docs/documentation/concepts/architecture","docId":"documentation/concepts/architecture","unlisted":false},{"type":"link","label":"Solace Agent Mesh CLI","href":"/solace-agent-mesh/docs/documentation/concepts/cli","docId":"documentation/concepts/cli","unlisted":false},{"type":"link","label":"Gateways","href":"/solace-agent-mesh/docs/documentation/concepts/gateways","docId":"documentation/concepts/gateways","unlisted":false},{"type":"link","label":"Agents","href":"/solace-agent-mesh/docs/documentation/concepts/agents","docId":"documentation/concepts/agents","unlisted":false},{"type":"link","label":"Orchestrator","href":"/solace-agent-mesh/docs/documentation/concepts/orchestrator","docId":"documentation/concepts/orchestrator","unlisted":false},{"type":"link","label":"Plugins","href":"/solace-agent-mesh/docs/documentation/concepts/plugins","docId":"documentation/concepts/plugins","unlisted":false}]},{"type":"category","label":"User Guide","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Solace AI Event Connector","href":"/solace-agent-mesh/docs/documentation/user-guide/solace-ai-connector","docId":"documentation/user-guide/solace-ai-connector","unlisted":false},{"type":"link","label":"Structure","href":"/solace-agent-mesh/docs/documentation/user-guide/structure","docId":"documentation/user-guide/structure","unlisted":false},{"type":"link","label":"Create Agents","href":"/solace-agent-mesh/docs/documentation/user-guide/create-agents","docId":"documentation/user-guide/create-agents","unlisted":false},{"type":"link","label":"Create Gateways","href":"/solace-agent-mesh/docs/documentation/user-guide/create-gateways","docId":"documentation/user-guide/create-gateways","unlisted":false},{"type":"link","label":"Creating Service Providers","href":"/solace-agent-mesh/docs/documentation/user-guide/creating-service-providers","docId":"documentation/user-guide/creating-service-providers","unlisted":false},{"type":"category","label":"Built-in Tools","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Artifact Management Tools","href":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/artifact-management","docId":"documentation/user-guide/builtin-tools/artifact-management","unlisted":false},{"type":"link","label":"Data Analysis Tools","href":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/data-analysis-tools","docId":"documentation/user-guide/builtin-tools/data-analysis-tools","unlisted":false},{"type":"link","label":"Audio Tools","href":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/audio-tools","docId":"documentation/user-guide/builtin-tools/audio-tools","unlisted":false},{"type":"link","label":"Dynamic Embeds","href":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/embeds","docId":"documentation/user-guide/builtin-tools/embeds","unlisted":false}],"href":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/"}]},{"type":"category","label":"Deployment","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Deployment","href":"/solace-agent-mesh/docs/documentation/deployment/deploy","docId":"documentation/deployment/deploy","unlisted":false},{"type":"link","label":"Observability","href":"/solace-agent-mesh/docs/documentation/deployment/observability","docId":"documentation/deployment/observability","unlisted":false},{"type":"link","label":"Debugging","href":"/solace-agent-mesh/docs/documentation/deployment/debugging","docId":"documentation/deployment/debugging","unlisted":false}]},{"type":"category","label":"Tutorials","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Build Your Own Agent","href":"/solace-agent-mesh/docs/documentation/tutorials/custom-agent","docId":"documentation/tutorials/custom-agent","unlisted":false},{"type":"link","label":"MCP Integration","href":"/solace-agent-mesh/docs/documentation/tutorials/mcp-integration","docId":"documentation/tutorials/mcp-integration","unlisted":false},{"type":"link","label":"REST Gateway","href":"/solace-agent-mesh/docs/documentation/tutorials/rest-gateway","docId":"documentation/tutorials/rest-gateway","unlisted":false},{"type":"link","label":"Event Mesh Gateway","href":"/solace-agent-mesh/docs/documentation/tutorials/event-mesh-gateway","docId":"documentation/tutorials/event-mesh-gateway","unlisted":false},{"type":"link","label":"Amazon Bedrock Agents","href":"/solace-agent-mesh/docs/documentation/tutorials/bedrock-agents","docId":"documentation/tutorials/bedrock-agents","unlisted":false},{"type":"link","label":"SQL Database Integration","href":"/solace-agent-mesh/docs/documentation/tutorials/sql-database","docId":"documentation/tutorials/sql-database","unlisted":false},{"type":"link","label":"MongoDB Integration","href":"/solace-agent-mesh/docs/documentation/tutorials/mongodb-integration","docId":"documentation/tutorials/mongodb-integration","unlisted":false},{"type":"link","label":"Slack Integration","href":"/solace-agent-mesh/docs/documentation/tutorials/slack-integration","docId":"documentation/tutorials/slack-integration","unlisted":false},{"type":"link","label":"RAG Integration","href":"/solace-agent-mesh/docs/documentation/tutorials/rag-integration","docId":"documentation/tutorials/rag-integration","unlisted":false}]}]},"docs":{"documentation/concepts/agents":{"id":"documentation/concepts/agents","title":"Agents","description":"Agents are specialized processing units within the Solace Agent Mesh framework that are built around the Google Agent Development Kit (ADK) and provide the core intelligence layer. They:","sidebar":"docSidebar"},"documentation/concepts/architecture":{"id":"documentation/concepts/architecture","title":"Architecture","description":"Overview","sidebar":"docSidebar"},"documentation/concepts/cli":{"id":"documentation/concepts/cli","title":"Solace Agent Mesh CLI","description":"Solace Agent Mesh comes with a comprehensive CLI tool that you can use to create, and run an instance of Solace Agent Mesh, which is referred to as a Solace Agent Mesh (SAM) application. Solace Agent Mesh (SAM) CLI also allows you to add agents and gateways, manage plugins, help you debug, and much more.","sidebar":"docSidebar"},"documentation/concepts/gateways":{"id":"documentation/concepts/gateways","title":"Gateways","description":"Gateways are a crucial component of the Solace Agent Mesh framework that expose the agent mesh to external systems through various protocols. Built on a common base gateway architecture, they provide the following functions:","sidebar":"docSidebar"},"documentation/concepts/orchestrator":{"id":"documentation/concepts/orchestrator","title":"Orchestrator","description":"The A2A (Agent-to-Agent) protocol is the communication backbone of Solace Agent Mesh that enables distributed agent coordination and workflow management. Unlike traditional centralized orchestration, the A2A protocol enables agents to discover each other, delegate tasks, and collaborate directly through standardized message patterns.","sidebar":"docSidebar"},"documentation/concepts/plugins":{"id":"documentation/concepts/plugins","title":"Plugins","description":"Plugins","sidebar":"docSidebar"},"documentation/deployment/debugging":{"id":"documentation/deployment/debugging","title":"Debugging","description":"Debugging issues in Solace Agent Mesh starts with identifying the problem. You can monitor your system to debug it more effectively. For more information, see Observability.","sidebar":"docSidebar"},"documentation/deployment/deploy":{"id":"documentation/deployment/deploy","title":"Deployment","description":"Development","sidebar":"docSidebar"},"documentation/deployment/observability":{"id":"documentation/deployment/observability","title":"Observability","description":"Solace Agent Mesh provides a comprehensive set of tools for real-time system monitoring and key insights to help you understand system states, request flows, and key insights for debugging and optimizing your system.","sidebar":"docSidebar"},"documentation/getting-started/component-overview":{"id":"documentation/getting-started/component-overview","title":"Component Overview","description":"Solace Agent Mesh (SAM) is built on event-driven architecture principles using the A2A (Agent-to-Agent) protocol, with all components communicating through a standardized protocol over Solace PubSub+. This architectural choice enables loose coupling between components, making the system highly flexible and scalable.","sidebar":"docSidebar"},"documentation/getting-started/configurations":{"id":"documentation/getting-started/configurations","title":"Configurations","description":"Shared Configurations","sidebar":"docSidebar"},"documentation/getting-started/installation":{"id":"documentation/getting-started/installation","title":"Installation","description":"Before you begin, make sure you have the following:","sidebar":"docSidebar"},"documentation/getting-started/introduction":{"id":"documentation/getting-started/introduction","title":"Introduction","description":"Solace Agent Mesh","sidebar":"docSidebar"},"documentation/getting-started/quick-start":{"id":"documentation/getting-started/quick-start","title":"Quick Start","description":"To get started with Solace Agent Mesh, you can either use the preset configuration from the Docker image or create your own complete project.","sidebar":"docSidebar"},"documentation/tutorials/bedrock-agents":{"id":"documentation/tutorials/bedrock-agents","title":"Amazon Bedrock Agents","description":"This tutorial walks you through the process of integrating Amazon Bedrock Agents and Flows into Solace Agent Mesh (SAM). This integration allows you to create agents that can interact with one or multiple Bedrock Agents or Flows, extending your SAM project with powerful AI capabilities from AWS.","sidebar":"docSidebar"},"documentation/tutorials/custom-agent":{"id":"documentation/tutorials/custom-agent","title":"Build Your Own Agent","description":"This tutorial shows you how to build a sophisticated weather agent using the Solace Agent Mesh framework. Learn how to integrate with external APIs, manage resources properly, and create production-ready agents.","sidebar":"docSidebar"},"documentation/tutorials/event-mesh-gateway":{"id":"documentation/tutorials/event-mesh-gateway","title":"Event Mesh Gateway","description":"If you already have an event mesh in place, you can integrate Solace Agent Mesh into it. This allows you to leverage existing infrastructure while introducing intelligence and automation through Solace Agent Mesh.","sidebar":"docSidebar"},"documentation/tutorials/mcp-integration":{"id":"documentation/tutorials/mcp-integration","title":"MCP Integration","description":"This tutorial walks you through the process of integrating a Model Context Protocol (MCP) Server into Solace Agent Mesh.","sidebar":"docSidebar"},"documentation/tutorials/mongodb-integration":{"id":"documentation/tutorials/mongodb-integration","title":"MongoDB Integration","description":"This tutorial sets up a MongoDB agent in Solace Agent Mesh (SAM), which allows the SAM agent to answer natural language queries about a Mongo database. The agent translates user questions into MongoDB aggregation pipelines and executes them against your database.","sidebar":"docSidebar"},"documentation/tutorials/rag-integration":{"id":"documentation/tutorials/rag-integration","title":"RAG Integration","description":"This tutorial guides you through setting up and configuring Solace Agent Mesh (SAM) Retrieval Augmented Generation (RAG) plugin. The RAG plugin enables your agents to answer questions by retrieving information from a knowledge base of your documents.","sidebar":"docSidebar"},"documentation/tutorials/rest-gateway":{"id":"documentation/tutorials/rest-gateway","title":"REST Gateway","description":"Solace Agent Mesh (SAM) REST API Gateway provides a standard, robust, and secure HTTP-based entry point for programmatic and system-to-system integrations. It allows external clients to submit tasks to SAM agents, manage files, and discover agent capabilities using a familiar RESTful interface.","sidebar":"docSidebar"},"documentation/tutorials/slack-integration":{"id":"documentation/tutorials/slack-integration","title":"Slack Integration","description":"This tutorial integrates a Slack interface into Solace Agent Mesh, enabling interaction with the system directly from your Slack workspace and channels.","sidebar":"docSidebar"},"documentation/tutorials/sql-database":{"id":"documentation/tutorials/sql-database","title":"SQL Database Integration","description":"This tutorial sets up a SQL database agent in Solace Agent Mesh (SAM), which allows the SAM agent to answer natural language queries about a sample coffee company database. This tutorial provides some sample data to set up an SQLite database, but you can use the same approach to connect to other database types, such as MySQL or PostgreSQL.","sidebar":"docSidebar"},"documentation/user-guide/builtin-tools/artifact-management":{"id":"documentation/user-guide/builtin-tools/artifact-management","title":"Artifact Management Tools","description":"This guide details how agents utilize built-in tools to manage file artifacts and their associated metadata. The system employs an explicit, metadata-aware methodology wherein the agent maintains full control over the lifecycle of artifacts, including their creation, listing, loading, and return.","sidebar":"docSidebar"},"documentation/user-guide/builtin-tools/audio-tools":{"id":"documentation/user-guide/builtin-tools/audio-tools","title":"Audio Tools","description":"This guide provides technical documentation for the text-to-speech (TTS) tools available in Solace Agent Mesh (SAM).","sidebar":"docSidebar"},"documentation/user-guide/builtin-tools/builtin-tools":{"id":"documentation/user-guide/builtin-tools/builtin-tools","title":"Configuring Built-in Tools","description":"This guide provides instructions for enabling and configuring the built-in tools provided by Solace Agent Mesh (SAM) framework.","sidebar":"docSidebar"},"documentation/user-guide/builtin-tools/data-analysis-tools":{"id":"documentation/user-guide/builtin-tools/data-analysis-tools","title":"Data Analysis Tools","description":"Solace Agent Mesh (SAM) includes a suite of optional built-in tools that enable agents to perform data analysis tasks directly on artifacts. These tools provide functionality for SQL querying, JQ transformations, and Plotly chart generation.","sidebar":"docSidebar"},"documentation/user-guide/builtin-tools/embeds":{"id":"documentation/user-guide/builtin-tools/embeds","title":"Dynamic Embeds","description":"Dynamic Embeds","sidebar":"docSidebar"},"documentation/user-guide/create-agents":{"id":"documentation/user-guide/create-agents","title":"Create Agents","description":"Introduction","sidebar":"docSidebar"},"documentation/user-guide/create-gateways":{"id":"documentation/user-guide/create-gateways","title":"Create Gateways","description":"Gateways in Solace Agent Mesh (SAM) serve as bridges between external systems and the A2A (Agent-to-Agent) ecosystem. They enable your agents to receive information from and send responses to diverse external platforms like chat systems, web applications, IoT devices, APIs, and file systems.","sidebar":"docSidebar"},"documentation/user-guide/creating-service-providers":{"id":"documentation/user-guide/creating-service-providers","title":"Creating Service Providers","description":"This guide details the process for developers to create service provider plugins for integrating backend systems (for example, HR platforms, CRMs) with Solace Agent Mesh (SAM).","sidebar":"docSidebar"},"documentation/user-guide/solace-ai-connector":{"id":"documentation/user-guide/solace-ai-connector","title":"Solace AI Event Connector","description":"The Solace AI Event Connector is an important part of Solace Agent Mesh. It is a powerful tool designed to seamlessly integrate AI capabilities into your event-driven architecture. It enables you to create efficient pipelines that can process events from PubSub+ event brokers, using AI and other types of components, and then publish the results back to PubSub+ event brokers.","sidebar":"docSidebar"},"documentation/user-guide/structure":{"id":"documentation/user-guide/structure","title":"Structure","description":"Solace Agent Mesh is built on the A2A (Agent-to-Agent) protocol architecture, powered by Solace AI Event Connector and uses Solace PubSub+ as the communication backbone. The framework is controlled by YAML configuration files that define agents, gateways, and plugins, enabling distributed AI agent communication through event-driven messaging.","sidebar":"docSidebar"}}}}')}}]);
|