solace-agent-mesh 1.0.5__py3-none-any.whl → 1.0.7__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/artifacts/__init__.py +1 -0
- solace_agent_mesh/agent/adk/{filesystem_artifact_service.py → artifacts/filesystem_artifact_service.py} +14 -15
- solace_agent_mesh/agent/adk/artifacts/s3_artifact_service.py +440 -0
- solace_agent_mesh/agent/adk/callbacks.py +123 -159
- solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py +316 -0
- solace_agent_mesh/agent/adk/intelligent_mcp_callbacks.py +414 -0
- solace_agent_mesh/agent/adk/mcp_content_processor.py +665 -0
- solace_agent_mesh/agent/adk/services.py +35 -1
- solace_agent_mesh/agent/adk/setup.py +85 -45
- solace_agent_mesh/agent/adk/tool_wrapper.py +19 -3
- solace_agent_mesh/agent/protocol/event_handlers.py +1 -1
- solace_agent_mesh/agent/sac/app.py +67 -0
- solace_agent_mesh/agent/sac/component.py +14 -86
- solace_agent_mesh/assets/docs/404.html +3 -3
- solace_agent_mesh/assets/docs/assets/js/04989206.b9dfe831.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/0e682baa.b3bbde9a.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/1023fc19.364235d5.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/1523c6b4.1b0ec6f9.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/166ab619.e8f3a7c7.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/21ceee5f.3bf39250.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/3d406171.7d02a73b.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/42b3f8d8.8ccb9901.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/442a8107.b3159bb2.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/4c2787c2.fc6804f2.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/5b4258a4.0d080cd9.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/75384d09.ccd480c4.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/768e31b0.8b51cd70.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/945fb41e.c63791d1.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{9eff14a2.036c35ea.js → 9eff14a2.472b0310.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/a3a92b25.4b7fa6a2.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/aba87c2f.76376d7c.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/ae4415af.7a2f0bbf.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/b7006a3a.73a79653.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/beecea0d.ae31f6a7.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/c2c06897.587b4af5.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{cd3d4052.ca6eed8c.js → cd3d4052.b6535013.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/f284c35a.731836ad.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/f897a61a.0aa29dbb.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/main.d79f063b.js +2 -0
- solace_agent_mesh/assets/docs/assets/js/runtime~main.6415ad00.js +1 -0
- solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html +28 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html +6 -6
- solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html +8 -8
- solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html +34 -5
- solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html +5 -5
- 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 +6 -6
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html +72 -0
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +7 -7
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html +35 -16
- 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 +17 -11
- 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 +5 -5
- 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 +6 -6
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html +6 -6
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html +6 -6
- 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 +8 -8
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html +14 -14
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html +8 -8
- 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 +6 -6
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html +35 -23
- 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 +6 -6
- 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-1756146501924.json +1 -0
- solace_agent_mesh/assets/docs/lunr-index.json +1 -1
- solace_agent_mesh/assets/docs/search-doc-1756146501924.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/add_cmd_llm.txt +1 -1
- solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py +67 -10
- solace_agent_mesh/cli/commands/add_cmd/gateway_cmd.py +2 -2
- solace_agent_mesh/cli/commands/eval_cmd.py +8 -2
- solace_agent_mesh/cli/commands/init_cmd/__init__.py +20 -2
- solace_agent_mesh/cli/commands/init_cmd/env_step.py +25 -1
- solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py +45 -1
- solace_agent_mesh/cli/utils.py +21 -12
- solace_agent_mesh/client/webui/frontend/static/assets/main-BucUdn9m.js +673 -0
- solace_agent_mesh/client/webui/frontend/static/index.html +1 -1
- solace_agent_mesh/common/a2a_protocol.py +1 -1
- solace_agent_mesh/common/utils/initializer.py +4 -6
- solace_agent_mesh/common/utils/mime_helpers.py +60 -1
- solace_agent_mesh/config_portal/backend/server.py +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/{_index-xSu2leR8.js → _index-MqsrTd6g.js} +9 -9
- solace_agent_mesh/config_portal/frontend/static/client/assets/{manifest-950eb3be.js → manifest-28271392.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/index.html +1 -1
- solace_agent_mesh/core_a2a/core_a2a_llm.txt +1 -1
- solace_agent_mesh/core_a2a/service.py +1 -1
- solace_agent_mesh/evaluation/run.py +149 -15
- solace_agent_mesh/evaluation/summary_builder.py +5 -3
- solace_agent_mesh/gateway/http_sse/dependencies.py +1 -1
- solace_agent_mesh/gateway/http_sse/http_sse_llm.txt +1 -1
- solace_agent_mesh/gateway/http_sse/services/task_service.py +1 -1
- solace_agent_mesh/llm_detail.txt +2 -2
- solace_agent_mesh/templates/agent_template.yaml +1 -1
- solace_agent_mesh/templates/plugin_agent_config_template.yaml +3 -3
- solace_agent_mesh/templates/plugin_readme_template.md +1 -1
- solace_agent_mesh/templates/shared_config.yaml +8 -1
- {solace_agent_mesh-1.0.5.dist-info → solace_agent_mesh-1.0.7.dist-info}/METADATA +5 -2
- {solace_agent_mesh-1.0.5.dist-info → solace_agent_mesh-1.0.7.dist-info}/RECORD +114 -109
- solace_agent_mesh/assets/docs/assets/js/04989206.da8246cd.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/0e682baa.79f0ab22.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/1023fc19.8e6d174c.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/1523c6b4.91c7bc01.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/166ab619.7d97ccaf.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/21ceee5f.614fa8dd.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/3d406171.9b081d5f.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/42b3f8d8.36090198.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/442a8107.5ba94b65.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/4c2787c2.66ee00e9.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/5b4258a4.bda20761.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/75384d09.c3991823.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/768e31b0.a12673db.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/945fb41e.74d728aa.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/a3a92b25.26ca071f.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/aba87c2f.a6b84da6.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/ae4415af.96189a93.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/b7006a3a.38c0cf3d.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/bb2ef573.56931473.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/c2c06897.63b76e9e.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/f284c35a.5aff74ab.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/f897a61a.862b0514.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/main.946fa17b.js +0 -2
- solace_agent_mesh/assets/docs/assets/js/runtime~main.aa687c82.js +0 -1
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html +0 -17
- solace_agent_mesh/assets/docs/lunr-index-1755275703209.json +0 -1
- solace_agent_mesh/assets/docs/search-doc-1755275703209.json +0 -1
- solace_agent_mesh/client/webui/frontend/static/assets/main-DzKPMTRs.js +0 -673
- /solace_agent_mesh/assets/docs/assets/js/{main.946fa17b.js.LICENSE.txt → main.d79f063b.js.LICENSE.txt} +0 -0
- {solace_agent_mesh-1.0.5.dist-info → solace_agent_mesh-1.0.7.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-1.0.5.dist-info → solace_agent_mesh-1.0.7.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-1.0.5.dist-info → solace_agent_mesh-1.0.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,27 +1,32 @@
|
|
|
1
1
|
solace_agent_mesh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
solace_agent_mesh/llm.txt,sha256=0HhcBA1hHCqzrBtX2HmLeJSqJ3MnQfpwfj5KfD1C3ws,10856
|
|
3
|
-
solace_agent_mesh/llm_detail.txt,sha256=
|
|
3
|
+
solace_agent_mesh/llm_detail.txt,sha256=bGC0uhenAL_DeFcfKBjGuONmP_8jhNaP0r2Zuipc1Vk,159304
|
|
4
4
|
solace_agent_mesh/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
solace_agent_mesh/agent/agent_llm.txt,sha256=TkY3Tjha7vOpyv0t3JPtc73VW-5G-lB-4ECnV8OihgI,2880
|
|
6
6
|
solace_agent_mesh/agent/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
solace_agent_mesh/agent/adk/adk_llm.txt,sha256=yXUZn-BgsfNmmQJ28wdLFsW_A8ymrWsD7PMHvmciRIw,7738
|
|
8
8
|
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/
|
|
9
|
+
solace_agent_mesh/agent/adk/callbacks.py,sha256=sOs4coObH6xSZFC7rpymFSsksXZiZ2M2LDFGIFnqItU,69545
|
|
10
|
+
solace_agent_mesh/agent/adk/embed_resolving_mcp_toolset.py,sha256=JI5fsmOIVVceD49H_2l3cwrjbjjZqj4tPgoIIPH8kSY,11888
|
|
11
|
+
solace_agent_mesh/agent/adk/intelligent_mcp_callbacks.py,sha256=4h2riXiw6DqFi3VVRZ92w_YuQQJ_Du6iUgx3PRuzrb8,15839
|
|
11
12
|
solace_agent_mesh/agent/adk/invocation_monitor.py,sha256=_20-nQXVjGlAEyw9PLFTTvgti-WgqyNE58LPUELUWnA,11671
|
|
13
|
+
solace_agent_mesh/agent/adk/mcp_content_processor.py,sha256=8s3ytZ8qrKZCUt_u8aE_EHH1_01yewPoekkllCuz9ME,23850
|
|
12
14
|
solace_agent_mesh/agent/adk/runner.py,sha256=TTnyz-xGXcVseKo4TkZMZYS6BjYYBHBWocYg3RYmqcI,12757
|
|
13
|
-
solace_agent_mesh/agent/adk/services.py,sha256=
|
|
14
|
-
solace_agent_mesh/agent/adk/setup.py,sha256=
|
|
15
|
+
solace_agent_mesh/agent/adk/services.py,sha256=9wuu1jiTRpDLBi09jMEqq1-TGP6ygno9AVz9bXiZQso,12662
|
|
16
|
+
solace_agent_mesh/agent/adk/setup.py,sha256=ce8u6PwGIQsO7fU1Rx2fpHWQRUyd-Bu2zcrlzAbjVo8,32055
|
|
15
17
|
solace_agent_mesh/agent/adk/stream_parser.py,sha256=6eMapFRV9nF8m4pRzfnOpykzK3OF3p6NkgWZvNwTt20,8071
|
|
16
|
-
solace_agent_mesh/agent/adk/tool_wrapper.py,sha256=
|
|
18
|
+
solace_agent_mesh/agent/adk/tool_wrapper.py,sha256=p4X0CnxeCE-Va2V3GTT5NUCu2p22wTrv6z7vFMuaUls,6261
|
|
19
|
+
solace_agent_mesh/agent/adk/artifacts/__init__.py,sha256=vAB8eqGwgPo3nx6YkT93Y7puYRMcqIKMAchBizvdw7Y,62
|
|
20
|
+
solace_agent_mesh/agent/adk/artifacts/filesystem_artifact_service.py,sha256=JWR6PqWP2UOw1_6iLOWMB57txzdc4hnjIr2w5cVk76c,13589
|
|
21
|
+
solace_agent_mesh/agent/adk/artifacts/s3_artifact_service.py,sha256=6CyKDOuQJ4b0vibAFlOHq2bDQoQglqX0NDxWUXAhqUs,15178
|
|
17
22
|
solace_agent_mesh/agent/adk/models/lite_llm.py,sha256=Enia0uFs2epagavdaCWNnvMFIL7VxRuo0A6mYBQZGWQ,30325
|
|
18
23
|
solace_agent_mesh/agent/adk/models/models_llm.txt,sha256=eIotHOFSg9h1_pvr1qNuQoPWBSm26XNSWTn8SXzm5kg,4598
|
|
19
24
|
solace_agent_mesh/agent/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=
|
|
25
|
+
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=wxoYwVPHa8WhTnm726FGEV_793leHilEuiePmH3wRpA,62429
|
|
21
26
|
solace_agent_mesh/agent/protocol/protocol_llm.txt,sha256=fZrqfT7avWZR4y_kcSgCh7hlayA6fMCgUvq3emKPtDc,1570
|
|
22
27
|
solace_agent_mesh/agent/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
solace_agent_mesh/agent/sac/app.py,sha256=
|
|
24
|
-
solace_agent_mesh/agent/sac/component.py,sha256=
|
|
28
|
+
solace_agent_mesh/agent/sac/app.py,sha256=pTKpAY16Mp9zoPVXAdxrgw2YX4ASSLSR-wWaFSLjA8k,32855
|
|
29
|
+
solace_agent_mesh/agent/sac/component.py,sha256=gJXm51GqZlWCzXojBJw2PIz2xWY5CWuJinyqS9sP9qs,141923
|
|
25
30
|
solace_agent_mesh/agent/sac/patch_adk.py,sha256=LQhPvwpEVeeDVUgZD-p8CTxft-jRv_OadMR-gR1uTXk,4266
|
|
26
31
|
solace_agent_mesh/agent/sac/sac_llm.txt,sha256=xOYAScW1Xe651JvZi4LkxRMWlsLCJevVi9hstUKjwfw,8454
|
|
27
32
|
solace_agent_mesh/agent/sac/task_execution_context.py,sha256=EpX6IWUtlv9ot9aW4_5bjEctJXd-O5Ozmq-FsJE9MBU,7663
|
|
@@ -46,7 +51,7 @@ solace_agent_mesh/agent/utils/config_parser.py,sha256=pElDc96YftH3rdBaMCmHDdzPkA
|
|
|
46
51
|
solace_agent_mesh/agent/utils/context_helpers.py,sha256=jWKY5Kpy2KWTYMz4G5AOi8VIu3IbD1LdStpI7j5y-bU,2075
|
|
47
52
|
solace_agent_mesh/agent/utils/utils_llm.txt,sha256=v2pjxLwvDnexUHqKkGR-nf2ZMexxZ4qrOPFgwpL_wVI,9307
|
|
48
53
|
solace_agent_mesh/common/__init__.py,sha256=gtpOFNjDuFmImR592AQckhQTaiA8HrsfTvAP1oCfxCY,63
|
|
49
|
-
solace_agent_mesh/common/a2a_protocol.py,sha256=
|
|
54
|
+
solace_agent_mesh/common/a2a_protocol.py,sha256=dmNooNqZgadgo7SLkdGK1OOZKL1lpmuD0ufeRPg1QdA,22890
|
|
50
55
|
solace_agent_mesh/common/agent_registry.py,sha256=Ddsw1X57vmInrnhDUqXNRqbi-T1i1rr_3XS6UWCvTkQ,1269
|
|
51
56
|
solace_agent_mesh/common/common_llm.txt,sha256=-Vq_9TF7yoyMyqPrspZsOau401gt8Dd0d_SfnmUV0m4,9245
|
|
52
57
|
solace_agent_mesh/common/constants.py,sha256=2lImuxA2sxiS38RNQ4-i1BAwPmekPRnKrhPG4hkJjdE,51
|
|
@@ -75,10 +80,10 @@ solace_agent_mesh/common/services/providers/providers_llm.txt,sha256=7y1ZqMWKt5Q
|
|
|
75
80
|
solace_agent_mesh/common/utils/__init__.py,sha256=V4B3mUhsqB_3YYdT_JZepEw32OHf4mhzMR7I8I3aV-8,129
|
|
76
81
|
solace_agent_mesh/common/utils/asyncio_macos_fix.py,sha256=35CBuEX2HSTflDHVWR06_BaM7d_wD8YJ598uQUNS6BE,2846
|
|
77
82
|
solace_agent_mesh/common/utils/in_memory_cache.py,sha256=AGfyZwqJ7wTjeBBgSKsHWH1v4X8FwpyymCgS8FWVgVI,3316
|
|
78
|
-
solace_agent_mesh/common/utils/initializer.py,sha256=
|
|
83
|
+
solace_agent_mesh/common/utils/initializer.py,sha256=PGznxI70SNiWS8usLEzqhUXxDDvcQgQzY8tBlTJc0Bc,1866
|
|
79
84
|
solace_agent_mesh/common/utils/log_formatters.py,sha256=EV8-ryy9mQgGv8hXipKrdXCuqTLvlPeovaAmMmIU3Sg,1443
|
|
80
85
|
solace_agent_mesh/common/utils/message_utils.py,sha256=MFICU-isggU7LJhev0qCm9n5thlhuc1KZ4mt1tNcKKY,2825
|
|
81
|
-
solace_agent_mesh/common/utils/mime_helpers.py,sha256=
|
|
86
|
+
solace_agent_mesh/common/utils/mime_helpers.py,sha256=wbX5g4GNodyWdcmMeKc1VxZcHdDhItN4hrZI3-siqlk,4316
|
|
82
87
|
solace_agent_mesh/common/utils/push_notification_auth.py,sha256=Jp3W2cqNQK6Q27dLGo2bzCOQcwp23TkgkAcb5CckdAo,4622
|
|
83
88
|
solace_agent_mesh/common/utils/utils_llm.txt,sha256=6b2N7eWw75MrLdgccVjzaMGA2XG8p6JORQZ_8f0u4G0,5112
|
|
84
89
|
solace_agent_mesh/common/utils/embeds/__init__.py,sha256=UQsXrRiFmeKSy_gW_tIHGEI3Av8HprvHM7tzhqmOaiA,733
|
|
@@ -90,8 +95,8 @@ solace_agent_mesh/common/utils/embeds/modifiers.py,sha256=LE3ZPtjq2IfXXgotiTfCE9
|
|
|
90
95
|
solace_agent_mesh/common/utils/embeds/resolver.py,sha256=kkkbH8FKq987aF_O608CSlpgpJGY9BCFdx8zwHyQaNQ,32310
|
|
91
96
|
solace_agent_mesh/common/utils/embeds/types.py,sha256=jgXPjvZDoJS2ji-bNjiAbfBQuz_OfLHn-frfyI6uQtc,303
|
|
92
97
|
solace_agent_mesh/core_a2a/__init__.py,sha256=DSxiK4RT2IwAk4UOja9aF-G44u0G62yWh_Mz0G9tuv0,59
|
|
93
|
-
solace_agent_mesh/core_a2a/core_a2a_llm.txt,sha256=
|
|
94
|
-
solace_agent_mesh/core_a2a/service.py,sha256=
|
|
98
|
+
solace_agent_mesh/core_a2a/core_a2a_llm.txt,sha256=tay_j71ATcg4rCJ-ASoxXdvtzDQDtLU_onT-i0EW8xA,3923
|
|
99
|
+
solace_agent_mesh/core_a2a/service.py,sha256=O5ofyL32HapqDNv4c6_lqSYBDVlc1aaC6m8G1a7jh0Q,11835
|
|
95
100
|
solace_agent_mesh/gateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
101
|
solace_agent_mesh/gateway/gateway_llm.txt,sha256=5WsgJLAOL7qKPGdRU5RBCOplQ-LNZYXM1ABy2de7W2s,7347
|
|
97
102
|
solace_agent_mesh/gateway/base/__init__.py,sha256=lOpIGp8W2rFNpLxfpk3VKLA-dBqxwtMxMVlhbaCisJY,72
|
|
@@ -102,8 +107,8 @@ solace_agent_mesh/gateway/base/task_context.py,sha256=sFRRHyvBij-xms1f_VFc8om8-x
|
|
|
102
107
|
solace_agent_mesh/gateway/http_sse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
108
|
solace_agent_mesh/gateway/http_sse/app.py,sha256=4KVkSdQHf8-s5y8HgoadxGwDOOSX17vVWEuUuMzMlEA,6484
|
|
104
109
|
solace_agent_mesh/gateway/http_sse/component.py,sha256=QO03Kuu6gn81VMg88w9-OO_OeKXgCe3AnxNz4Yb8oTg,66164
|
|
105
|
-
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=
|
|
106
|
-
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=
|
|
110
|
+
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=KgcOOOvzfUD8sdSvpMTqAcxOpyQK2Hp4TEPu_6RnDJk,11298
|
|
111
|
+
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=_ah5pkS7fwrlDa4pvcTlAOcLPi7udrjIzyMlNfCX8-Y,5451
|
|
107
112
|
solace_agent_mesh/gateway/http_sse/main.py,sha256=1bfLVN4CIY4RUDYsj97lEeaxU8lYPpelAmMuGKJyaZU,17250
|
|
108
113
|
solace_agent_mesh/gateway/http_sse/session_manager.py,sha256=bHFWcmvavhBTDTiTRhD4WCX1tKLO3_tylaYV_wEnDP8,7424
|
|
109
114
|
solace_agent_mesh/gateway/http_sse/sse_manager.py,sha256=c51QIm80Q1G8aOzimk06ZaOH9wv2bl_WREP1GqevLZk,13507
|
|
@@ -126,26 +131,26 @@ solace_agent_mesh/gateway/http_sse/services/__init__.py,sha256=Fk2FIbrJdG1StPCog
|
|
|
126
131
|
solace_agent_mesh/gateway/http_sse/services/agent_service.py,sha256=JgeuZJyysL4k1nL5hEm1ZL3RcBHL0fwDa-MZK9XJ3Hk,2265
|
|
127
132
|
solace_agent_mesh/gateway/http_sse/services/people_service.py,sha256=PbR6vbImQ95JO7p5fSbraBGsHg84dGVjDz4yd-wbrwg,4596
|
|
128
133
|
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=TDPDqcqQHaoDWmp8kB_7VXeCb1B0w7dSkXtpxpozO74,8084
|
|
129
|
-
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=
|
|
130
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
134
|
+
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=SYUTrU01HdAaXw9Y9G1e96mEIf4_QmAmVIRMKurMk-A,4362
|
|
135
|
+
solace_agent_mesh/cli/__init__.py,sha256=BW7SWRpHoxuOQZ67pS20yog2LWYl-nK7-BEFBNrHGgA,22
|
|
131
136
|
solace_agent_mesh/cli/main.py,sha256=yFbF4ijz7P6nxj26d-mTC8BnK6NKVnfqPh3y4pDBZqo,831
|
|
132
|
-
solace_agent_mesh/cli/utils.py,sha256=
|
|
137
|
+
solace_agent_mesh/cli/utils.py,sha256=eXJa4aEl3INjch9JwNb8wYtgr5iqPpMfH1OMrUQGthU,5816
|
|
133
138
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
139
|
solace_agent_mesh/cli/commands/docs_cmd.py,sha256=vNXyKADt8RrKnP7wsLaj7fBaz6SUgXMMItygHrohE_Y,1953
|
|
135
|
-
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=
|
|
140
|
+
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=mLElqAGkaf-MK3r1nIO_sRu0BXwUF1WC38zpeUv_ycc,2193
|
|
136
141
|
solace_agent_mesh/cli/commands/run_cmd.py,sha256=ryMCR8cEofAiDXAZxo0VtMWJ_hxhUjZm6gIWBpEbRPg,7651
|
|
137
142
|
solace_agent_mesh/cli/commands/add_cmd/__init__.py,sha256=IGTXUx_AcoinYlzlZtQsjiCYbe76ZiLqxAcGc6-uoDE,280
|
|
138
|
-
solace_agent_mesh/cli/commands/add_cmd/add_cmd_llm.txt,sha256=
|
|
139
|
-
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=
|
|
140
|
-
solace_agent_mesh/cli/commands/add_cmd/gateway_cmd.py,sha256=
|
|
143
|
+
solace_agent_mesh/cli/commands/add_cmd/add_cmd_llm.txt,sha256=x-UE5buoIEE_oUJ3opOzW8U33S3XUKCRNKWxNXNVk-c,10212
|
|
144
|
+
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=0LUnAVh_ed1mX0R1w1-qI3cXpkGm9Mtvhw5unPA1V4g,26740
|
|
145
|
+
solace_agent_mesh/cli/commands/add_cmd/gateway_cmd.py,sha256=kV7XOo2CvYWPQ6AL8cLDm-2GACbLAUlQc2c9fNzybEY,12840
|
|
141
146
|
solace_agent_mesh/cli/commands/add_cmd/web_add_agent_step.py,sha256=hOQjOKxQ_YZf4pJWlCt6iLHiu_Iy50kwRoRm_ZkeoP4,3362
|
|
142
147
|
solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py,sha256=1p7GNFJeAH9bLcD2tknN1Ly8RIBY8K3wYdMRB-PYnn0,4438
|
|
143
|
-
solace_agent_mesh/cli/commands/init_cmd/__init__.py,sha256=
|
|
148
|
+
solace_agent_mesh/cli/commands/init_cmd/__init__.py,sha256=i66jmAfYiw_iKcBDm8UGwB8Zqb0sW1ImAJYzw2AsOa8,14818
|
|
144
149
|
solace_agent_mesh/cli/commands/init_cmd/broker_step.py,sha256=FzY7yqRDZqy_B7lXWQvb8OLoOULPlt8cI-VxuzaNSUU,7010
|
|
145
150
|
solace_agent_mesh/cli/commands/init_cmd/directory_step.py,sha256=3uPZybhDh84vtXqFfck4__6Dbi9LdqXqs0nRjP3VApY,862
|
|
146
|
-
solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=
|
|
151
|
+
solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=DukPYAhvsVnT3y14dwww4pllr-3oO8LgYdxfiWBZoDM,6834
|
|
147
152
|
solace_agent_mesh/cli/commands/init_cmd/init_cmd_llm.txt,sha256=7atW7HTy_2XQ3UoPttgIlyIF4_Du2068rqZE2imaHP8,13226
|
|
148
|
-
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=
|
|
153
|
+
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=iW0vOWa8B2eNdh43tIcGsURb9MaTpVGUzlsbln4gFFM,17930
|
|
149
154
|
solace_agent_mesh/cli/commands/init_cmd/project_files_step.py,sha256=bOh7yYuaXIIs0q3-nd1nSVc6P6g6EHoDJjFDlKZVnf4,1352
|
|
150
155
|
solace_agent_mesh/cli/commands/init_cmd/web_init_step.py,sha256=2iJTmZfwQv2FRILfHmtZEngB1ePDhll7da_UcnGJMlE,3470
|
|
151
156
|
solace_agent_mesh/cli/commands/init_cmd/webui_gateway_step.py,sha256=l9rGIEHKEDro7pgTLUlFfPYt3sMrYQ8ly4FJvIJA9Ls,6969
|
|
@@ -162,9 +167,9 @@ solace_agent_mesh/evaluation/evaluator.py,sha256=pm05eBtfVsKIkp4BUrumi8StyU9Ctxz
|
|
|
162
167
|
solace_agent_mesh/evaluation/message_organizer.py,sha256=TOrgTqkLlAVP9VYvWxT4bCFprn6wVov8WrvejvU3vKk,19685
|
|
163
168
|
solace_agent_mesh/evaluation/report_data_processor.py,sha256=6ieALwwCmyhRQWCas3SozvpixguOI7NWP6ACMYZZpcQ,39001
|
|
164
169
|
solace_agent_mesh/evaluation/report_generator.py,sha256=pNTQ9yLC9NteuiPNDHMfHSy2QuWMWJBKrLTeYx8TfnE,23113
|
|
165
|
-
solace_agent_mesh/evaluation/run.py,sha256=
|
|
170
|
+
solace_agent_mesh/evaluation/run.py,sha256=7HEmNzKCv0HY9uDzxQ6rEIuiobQA1CXn8ROk0F2ToiM,27058
|
|
166
171
|
solace_agent_mesh/evaluation/subscriber.py,sha256=_EDbYbbAZFh9ENwiY0M1NkBn_LyWpJp0onPZ1dJq93Y,28955
|
|
167
|
-
solace_agent_mesh/evaluation/summary_builder.py,sha256=
|
|
172
|
+
solace_agent_mesh/evaluation/summary_builder.py,sha256=EOGjIqL_kV5LEzLCBXVw4Z9kWwdOVu1zNQ3rL-FG8zI,27920
|
|
168
173
|
solace_agent_mesh/evaluation/test_case_loader.py,sha256=lt-lM1USazWdJ9zynpoFlmFrJLkX8DvWeM8WsqhLguc,24449
|
|
169
174
|
solace_agent_mesh/evaluation/report/benchmark_info.html,sha256=bSjYFWC8qmLxk8VmSPBJHalPLJ9dm4Pim-sN9Zg2wd8,905
|
|
170
175
|
solace_agent_mesh/evaluation/report/chart_section.html,sha256=Cfi0E4_Bqe7fHT8EDM9AQhVcNZ7Sn9ag47BU0-aog0c,4310
|
|
@@ -176,48 +181,48 @@ solace_agent_mesh/evaluation/report/modal_styles.css,sha256=8VaQ6P3pqWDcymUCSWQ6
|
|
|
176
181
|
solace_agent_mesh/evaluation/report/performance_metrics_styles.css,sha256=2bdQFQU06POcKBiYAO8p5e8OYFrOiLw9U_7lG_MZdjY,1944
|
|
177
182
|
solace_agent_mesh/evaluation/report/templates/footer.html,sha256=Au1U7cQvu7w2mIsqGEtn5JVovkgHgyU4upt-3aU3RNg,16
|
|
178
183
|
solace_agent_mesh/evaluation/report/templates/header.html,sha256=XP11gY77aoNWrI57RvIi1KItaltXzchHp5EFhu7DAAY,8802
|
|
179
|
-
solace_agent_mesh/templates/agent_template.yaml,sha256=
|
|
184
|
+
solace_agent_mesh/templates/agent_template.yaml,sha256=5SsauO84yXI1vIS1OLaRwZDEskKMvUKfVTcjj78jN7I,1627
|
|
180
185
|
solace_agent_mesh/templates/eval_backend_template.yaml,sha256=bWAgyXPc4mQot7IWlPa0_O5eGQcQ-Mg_DZzQW6fOrP4,1866
|
|
181
186
|
solace_agent_mesh/templates/gateway_app_template.py,sha256=ClzRjowVTdov9azuPy62AICLd5GuhBHIxlbayeW8oUU,3031
|
|
182
187
|
solace_agent_mesh/templates/gateway_component_template.py,sha256=trreZwOFujxkPU6qoKAOxoeg-vHldw9iE2AIw5keQiY,22096
|
|
183
188
|
solace_agent_mesh/templates/gateway_config_template.yaml,sha256=sSDJ5C1BO4lTVuRMnCUr6qQTq8BXLUIJrJZrGH7J_0A,1289
|
|
184
189
|
solace_agent_mesh/templates/logging_config_template.ini,sha256=FggFniB1XZ23CG2lF7Y_3VTey2-9nlXIssFvevXtcSw,1275
|
|
185
190
|
solace_agent_mesh/templates/main_orchestrator.yaml,sha256=Ig4DwYViFXN-1KFn1gR5CVIEeK0dbC8PxfNz5bFqFAE,1757
|
|
186
|
-
solace_agent_mesh/templates/plugin_agent_config_template.yaml,sha256=
|
|
191
|
+
solace_agent_mesh/templates/plugin_agent_config_template.yaml,sha256=RO4m2YyIeZznHH4-53VDv89yT0sMchtp3f2zmLlrREM,4493
|
|
187
192
|
solace_agent_mesh/templates/plugin_custom_config_template.yaml,sha256=5LXQeNoTq6dz2XyRa6_pTZCPQsPO27MF2kHEK8_sv9U,1117
|
|
188
193
|
solace_agent_mesh/templates/plugin_custom_template.py,sha256=-c7JD_AGfgBqatPMvJBpSDaiwKp5LsbjrKn_sDSAy_4,360
|
|
189
194
|
solace_agent_mesh/templates/plugin_gateway_config_template.yaml,sha256=JmVLdW3Qoqa0qORNlU8WyVe5FMnQL6FSoZNt65C4IFI,2500
|
|
190
195
|
solace_agent_mesh/templates/plugin_pyproject_template.toml,sha256=dcgdHwCUUYV2G8slWzKGVlrpijwTnArX-KMa2sKvXok,944
|
|
191
|
-
solace_agent_mesh/templates/plugin_readme_template.md,sha256=
|
|
196
|
+
solace_agent_mesh/templates/plugin_readme_template.md,sha256=i094KPRPL_u3JTA1h6FRjMy0YlA_B4jNKDBiYdE6wbM,1271
|
|
192
197
|
solace_agent_mesh/templates/plugin_tools_template.py,sha256=GUVw556CtBYE6sHbpXnFf0uysp6furt4_tMZVOlpI6s,8465
|
|
193
|
-
solace_agent_mesh/templates/shared_config.yaml,sha256=
|
|
198
|
+
solace_agent_mesh/templates/shared_config.yaml,sha256=6ZzDqUQhizkkVv3OxDJtjz_UYCCGJAVB2AcEy7aQYaE,3465
|
|
194
199
|
solace_agent_mesh/templates/templates_llm.txt,sha256=T3h8CcIowTbyBedlfRk7FZww8_xGmnY5fEqGhhdI3JU,9234
|
|
195
200
|
solace_agent_mesh/templates/webui.yaml,sha256=WJV06elz6A31rLOnQK-0axXpVUY1BcH490A59DM4Og0,1976
|
|
196
|
-
solace_agent_mesh/assets/docs/404.html,sha256=
|
|
197
|
-
solace_agent_mesh/assets/docs/lunr-index-
|
|
198
|
-
solace_agent_mesh/assets/docs/lunr-index.json,sha256=
|
|
199
|
-
solace_agent_mesh/assets/docs/search-doc-
|
|
200
|
-
solace_agent_mesh/assets/docs/search-doc.json,sha256=
|
|
201
|
-
solace_agent_mesh/assets/docs/sitemap.xml,sha256=
|
|
201
|
+
solace_agent_mesh/assets/docs/404.html,sha256=di25jJBo128wSj3UkFWOQGG5xgtn4BEX2AJlnuZjRHs,11749
|
|
202
|
+
solace_agent_mesh/assets/docs/lunr-index-1756146501924.json,sha256=oiN7gZ74_ceZiVNajGO_d2E5Mm5EFwQY1AMxDVtVpmg,980725
|
|
203
|
+
solace_agent_mesh/assets/docs/lunr-index.json,sha256=oiN7gZ74_ceZiVNajGO_d2E5Mm5EFwQY1AMxDVtVpmg,980725
|
|
204
|
+
solace_agent_mesh/assets/docs/search-doc-1756146501924.json,sha256=hweS5vk40GfESu8nFT0I_QzAtxXf2j4oWB2NUjIYe04,342229
|
|
205
|
+
solace_agent_mesh/assets/docs/search-doc.json,sha256=hweS5vk40GfESu8nFT0I_QzAtxXf2j4oWB2NUjIYe04,342229
|
|
206
|
+
solace_agent_mesh/assets/docs/sitemap.xml,sha256=fLYP0DfUv0Mt1OY3bSryyhsBy3BtzKBIYx1kAMktPfU,5904
|
|
202
207
|
solace_agent_mesh/assets/docs/assets/css/styles.906a1503.css,sha256=gQj16ydMLPiq6y-t8Ovto65hsvPbQX6coyIFOja-2eY,83293
|
|
203
208
|
solace_agent_mesh/assets/docs/assets/images/Solace_AI_Framework_With_Broker-85f0a306a9bcdd20b390b7a949f6d862.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
204
209
|
solace_agent_mesh/assets/docs/assets/images/sac-flows-80d5b603c6aafd33e87945680ce0abf3.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
205
210
|
solace_agent_mesh/assets/docs/assets/images/sac_parts_of_a_component-cb3d0424b1d0c17734c5435cca6b4082.png,sha256=Z7-TCXxDC2fd6iZ3Lkr-F3OHhqr6m_glnzVIcwUhv4k,12283
|
|
206
|
-
solace_agent_mesh/assets/docs/assets/js/04989206.
|
|
207
|
-
solace_agent_mesh/assets/docs/assets/js/0e682baa.
|
|
211
|
+
solace_agent_mesh/assets/docs/assets/js/04989206.b9dfe831.js,sha256=FKsu-Lj1N5hEHYOyooBDJag8kom60PpKkPkW0VxBPRs,10851
|
|
212
|
+
solace_agent_mesh/assets/docs/assets/js/0e682baa.b3bbde9a.js,sha256=gqBjyA4nzVqKYPk1bJDWyFQxt3_S-ihGUSW0ZI3UBQw,12559
|
|
208
213
|
solace_agent_mesh/assets/docs/assets/js/1001.0182a8bd.js,sha256=wnldyGaqrut3ES6Q5UDpRGsaNwlX_JoL2FDB_f7_hBI,90563
|
|
209
|
-
solace_agent_mesh/assets/docs/assets/js/1023fc19.
|
|
214
|
+
solace_agent_mesh/assets/docs/assets/js/1023fc19.364235d5.js,sha256=epmvQQ-_y9YtrBx1SwxApQOo_23jkVYgb5Hf13V9Yo0,14613
|
|
210
215
|
solace_agent_mesh/assets/docs/assets/js/1039.0bd46aa1.js,sha256=3gOxMCGWPNyBymsv8WkRfDuOlc7UZ1c9c794Q7gmNyQ,71713
|
|
211
216
|
solace_agent_mesh/assets/docs/assets/js/149.b797a808.js,sha256=BZRazTFuXMaIQkDiXM1Sq9J3QgYa2HJuuJCCs8gQz3w,438
|
|
212
|
-
solace_agent_mesh/assets/docs/assets/js/1523c6b4.
|
|
217
|
+
solace_agent_mesh/assets/docs/assets/js/1523c6b4.1b0ec6f9.js,sha256=6dwK7ScvWjGWJNiJkgThZE0XAX_pdSrjBAH9NiQBQtI,16510
|
|
213
218
|
solace_agent_mesh/assets/docs/assets/js/165.6a39807d.js,sha256=LbpDL4NSduNRTSI3RUIg5dLdMd4wawHU4Qta2vf8ryg,428812
|
|
214
219
|
solace_agent_mesh/assets/docs/assets/js/165.6a39807d.js.LICENSE.txt,sha256=QX5NnNHHE912JA-8rhkyT6_OOM9KmKb6eM5ZwZ_m0fk,485
|
|
215
|
-
solace_agent_mesh/assets/docs/assets/js/166ab619.
|
|
220
|
+
solace_agent_mesh/assets/docs/assets/js/166ab619.e8f3a7c7.js,sha256=yWTbpgGD-v6K2Qr4a0Sxo9uXorbQOiZee9kErIz7ZAw,17641
|
|
216
221
|
solace_agent_mesh/assets/docs/assets/js/17896441.a5e82f9b.js,sha256=tVREW18iBlO-P7JNPvgX1-RR8tnFAoLarHSSTNAYfTw,568073
|
|
217
222
|
solace_agent_mesh/assets/docs/assets/js/17896441.a5e82f9b.js.LICENSE.txt,sha256=WX8R_ZUDUISsiSypR5LNXXo_QEtn2JZPIpsBgCIh88Y,322
|
|
218
223
|
solace_agent_mesh/assets/docs/assets/js/1c6e87d2.a8c5ce5a.js,sha256=wW7iqWNvRJItcPvkT0Js2Y9BcAp1SglpvR3u2KvUNmU,11812
|
|
219
224
|
solace_agent_mesh/assets/docs/assets/js/2130.ab9fd314.js,sha256=t_AtyiW0eu0qFLk4hnlJEofpadh7m6lgEqDgP46V4D0,274059
|
|
220
|
-
solace_agent_mesh/assets/docs/assets/js/21ceee5f.
|
|
225
|
+
solace_agent_mesh/assets/docs/assets/js/21ceee5f.3bf39250.js,sha256=efuLvEKIaarHSWvaas0YzzHT_b5fMwPL3BcNO7kw-UY,5543
|
|
221
226
|
solace_agent_mesh/assets/docs/assets/js/2237.5e477fc6.js,sha256=zW8HJtjPXRUHEgvhkLqqI6USE-FyQKRQlozKw4eDVec,1309
|
|
222
227
|
solace_agent_mesh/assets/docs/assets/js/2334.622a6395.js,sha256=v4GvVtB8gFzf7i97_St55G3k0zvW6emQZyR0eQ9iXyU,38195
|
|
223
228
|
solace_agent_mesh/assets/docs/assets/js/2a9cab12.8909df92.js,sha256=1rKGQBVpS44CwhbFS8oJ7U2FsuEKpTfE2-zGjPpCFIk,17859
|
|
@@ -226,23 +231,23 @@ solace_agent_mesh/assets/docs/assets/js/332e10b5.7a103f42.js,sha256=5vrtNVDFX-_x
|
|
|
226
231
|
solace_agent_mesh/assets/docs/assets/js/3624.b524e433.js,sha256=cmS9btCBUGcxCToTFwQeBROmuScAVaIaaRXiMgvRvvg,14839
|
|
227
232
|
solace_agent_mesh/assets/docs/assets/js/375.708d48db.js,sha256=tnoRKYgl89ieY_0s8NeHjMy9gQvpDQPo5q6kfr5zNt0,4319
|
|
228
233
|
solace_agent_mesh/assets/docs/assets/js/3834.b6cd790e.js,sha256=LuFdgiur49yMqtwnhUN7ECJ2lPvBaWdDam3OANM5WcM,196
|
|
229
|
-
solace_agent_mesh/assets/docs/assets/js/3d406171.
|
|
234
|
+
solace_agent_mesh/assets/docs/assets/js/3d406171.7d02a73b.js,sha256=5e6YZSeC-L1-ONqARR_fO6mkho6I3Q5OtwYyF1E1V1w,45141
|
|
230
235
|
solace_agent_mesh/assets/docs/assets/js/4250.95455b28.js,sha256=y3OgeXf-tuJO5M6gJ70aW58HdFE7vZIPX7V4mduXL9c,197
|
|
231
|
-
solace_agent_mesh/assets/docs/assets/js/42b3f8d8.
|
|
236
|
+
solace_agent_mesh/assets/docs/assets/js/42b3f8d8.8ccb9901.js,sha256=B2B5XLAdr8qH77ibF_ZWzZSv_Z-F2FRS6f_XGOdf1vc,34514
|
|
232
237
|
solace_agent_mesh/assets/docs/assets/js/4356.d169ab5b.js,sha256=JJdBrbL2-8tn2jfAGsO1ezjcM37BAIZnZsNYgc4UoZs,195
|
|
233
|
-
solace_agent_mesh/assets/docs/assets/js/442a8107.
|
|
238
|
+
solace_agent_mesh/assets/docs/assets/js/442a8107.b3159bb2.js,sha256=Q-EkgCGSjulBtLNhOpBQe0aIE2urIll5V9f3NlSsZt0,18468
|
|
234
239
|
solace_agent_mesh/assets/docs/assets/js/4458.518e66fa.js,sha256=oUPDT1LqnbeRts2CudqNueI-OQHML5gg9dWEvP6PiE4,25886
|
|
235
240
|
solace_agent_mesh/assets/docs/assets/js/4488.c7cc3442.js,sha256=r1GHmJIWPPQ07T92TAs1H59eHcs-e87AFDqi_0VK48A,435
|
|
236
241
|
solace_agent_mesh/assets/docs/assets/js/4494.6ee23046.js,sha256=UrwgwbJNRAZiY6UtdzHrpggUpkNGlIh9vHiSXdv5DDI,61052
|
|
237
242
|
solace_agent_mesh/assets/docs/assets/js/4855.fc4444b6.js,sha256=Rbhzs2AM-6i8Wyppb8a2Ws8kpNE8Pr5QMgx0sxAozxs,11494
|
|
238
243
|
solace_agent_mesh/assets/docs/assets/js/4866.22daefc0.js,sha256=bQRnSAwf0FIrdrYQLeyXv6f4utbEoi4nSU-kKchB4sw,3876
|
|
239
244
|
solace_agent_mesh/assets/docs/assets/js/4950.ca4caeda.js,sha256=Kq5gqn-p3ozVcUY7fWZnY4_35_sNcFN8z4bNY6Cqt-s,146409
|
|
240
|
-
solace_agent_mesh/assets/docs/assets/js/4c2787c2.
|
|
245
|
+
solace_agent_mesh/assets/docs/assets/js/4c2787c2.fc6804f2.js,sha256=0IwIlLMkZe9HpIf5wa-lMgNTy4_6ZH0iusQJV5G2HZI,7849
|
|
241
246
|
solace_agent_mesh/assets/docs/assets/js/5388.7a136447.js,sha256=F9mKVkGI0I-fmfKn3kADJdVlVAe4lD7LQKjZ_kE7_cY,25022
|
|
242
247
|
solace_agent_mesh/assets/docs/assets/js/55f47984.c484bf96.js,sha256=yVT6Xi18F5X4LRxpDcBTSD1TB9TCW0q6QDLKfeBaQB0,52787
|
|
243
248
|
solace_agent_mesh/assets/docs/assets/js/5607.081356f8.js,sha256=82P_IlhzwOSMkBDBTXHJsjSx0s1dFbcojWnOC-Vp7qU,194
|
|
244
249
|
solace_agent_mesh/assets/docs/assets/js/5864.b0d0e9de.js,sha256=XRxc9MFKvCVwmU2KY3io24cVMqk_dK8koh1B2rEQINQ,33926
|
|
245
|
-
solace_agent_mesh/assets/docs/assets/js/5b4258a4.
|
|
250
|
+
solace_agent_mesh/assets/docs/assets/js/5b4258a4.0d080cd9.js,sha256=XO57DicV0rtbI8zv8qtZoe6fVbAFRWV3ddaDBUUFVSY,10721
|
|
246
251
|
solace_agent_mesh/assets/docs/assets/js/5e95c892.558d5167.js,sha256=LrlOoFsc_wTcyuzay3WDxkpYtVGn2kUIWCosBvg_z8I,377
|
|
247
252
|
solace_agent_mesh/assets/docs/assets/js/6143.0a1464c9.js,sha256=N9VlCMIQjWkazDtcal5eC7xe1YvOVCMRx119JzMQl1k,39122
|
|
248
253
|
solace_agent_mesh/assets/docs/assets/js/6395.e9c73649.js,sha256=-v8U5XdxnXthhTAYmuTbvDQRKDPxzQQS-Lew81sPN-8,440
|
|
@@ -252,8 +257,8 @@ solace_agent_mesh/assets/docs/assets/js/6978.ee0b945c.js,sha256=Fabb2n81BbNegY_9
|
|
|
252
257
|
solace_agent_mesh/assets/docs/assets/js/7040.cb436723.js,sha256=cmW7CCISvRnJNljTDg4jGJtG6rjSp0nWfZvchAKSdf4,36638
|
|
253
258
|
solace_agent_mesh/assets/docs/assets/js/7195.412f418a.js,sha256=8VHuob7jbA49epJL54bEU-mtOdSeUFXzqbgThE4walo,46219
|
|
254
259
|
solace_agent_mesh/assets/docs/assets/js/7280.3fb73bdb.js,sha256=XlDQpYplGuVoEqfXCt8Yzocd9uBTu64VUrNp4LQDyIY,659
|
|
255
|
-
solace_agent_mesh/assets/docs/assets/js/75384d09.
|
|
256
|
-
solace_agent_mesh/assets/docs/assets/js/768e31b0.
|
|
260
|
+
solace_agent_mesh/assets/docs/assets/js/75384d09.ccd480c4.js,sha256=GTSKakVQBb2rRv7OvvsOO225APzAMw0L0bV6BKguoVY,21565
|
|
261
|
+
solace_agent_mesh/assets/docs/assets/js/768e31b0.8b51cd70.js,sha256=RiCB8_hLIkx_-9iLJYC_SaDUb8trsfJ-zsETOTX6oLU,12950
|
|
257
262
|
solace_agent_mesh/assets/docs/assets/js/7845.e33e7c4c.js,sha256=sNEWPWBTnV-BmKI7vkcgRpTYeErGBXRbtH_X5YRnr-c,11143
|
|
258
263
|
solace_agent_mesh/assets/docs/assets/js/7900.69516146.js,sha256=MWXxfpYNV5CORkPa0r6EyyynbVJrNENknNv0Zb7TqS8,43021
|
|
259
264
|
solace_agent_mesh/assets/docs/assets/js/8356.8a379c04.js,sha256=bj4ozR1V-6vmmty5Dr_1CCAup1i4lWAgRfY-ZHrMH-U,197
|
|
@@ -268,63 +273,63 @@ solace_agent_mesh/assets/docs/assets/js/8731.49e930c2.js,sha256=ecg70IZRPAH8EOZx
|
|
|
268
273
|
solace_agent_mesh/assets/docs/assets/js/8908.f9d1b506.js,sha256=LrKHDjwNk1bPFNWpwTeQmTNlC47BvAhr-S3I-AcB_FQ,30883
|
|
269
274
|
solace_agent_mesh/assets/docs/assets/js/9157.b4093d07.js,sha256=-LWKw3jEtKdkEjap1b0NI7tJLVEPj8SyTRq5cJvL0TA,22109
|
|
270
275
|
solace_agent_mesh/assets/docs/assets/js/9278.a4fd875d.js,sha256=Nm7cJgq11XXaYA3WxmU_H5Yk2S8L1fgF6RC9lX7eepU,143
|
|
271
|
-
solace_agent_mesh/assets/docs/assets/js/945fb41e.
|
|
276
|
+
solace_agent_mesh/assets/docs/assets/js/945fb41e.c63791d1.js,sha256=qlT-X_eLMyfcFJOm7WoWrZdKhbi3pwerMIbGk6tWHfY,15024
|
|
272
277
|
solace_agent_mesh/assets/docs/assets/js/9616.b75c2f6d.js,sha256=Ry0lLDd8HQzYAHmCKcXJ4iQ-9utISMjqcWk_iURtf1A,20576
|
|
273
278
|
solace_agent_mesh/assets/docs/assets/js/9793.c6d16376.js,sha256=-Xm7Yt1AJvEcfoYlQ04O5Douk4bsO4mgo_UJN8TVIUY,100459
|
|
274
|
-
solace_agent_mesh/assets/docs/assets/js/9eff14a2.
|
|
275
|
-
solace_agent_mesh/assets/docs/assets/js/a3a92b25.
|
|
279
|
+
solace_agent_mesh/assets/docs/assets/js/9eff14a2.472b0310.js,sha256=Yo_IseS84vBMdHdeEqg6IqPlSh3p3WK4XtkNaJtjpBk,10567
|
|
280
|
+
solace_agent_mesh/assets/docs/assets/js/a3a92b25.4b7fa6a2.js,sha256=ZcppuNhcOhf8CkCipfepjr6hE9Us7-W5B6hQ933s1aA,5781
|
|
276
281
|
solace_agent_mesh/assets/docs/assets/js/a7bd4aaa.2204d2f7.js,sha256=v9wa2Q1Mt7cayLyMjyDTUT8J_kILQ2idmxDhgyBHlpE,756
|
|
277
282
|
solace_agent_mesh/assets/docs/assets/js/a94703ab.0438dbc2.js,sha256=drinuntIgk0lUv1Wc_WlHu5I8d5ZDszh329V_5WQrD4,11251
|
|
278
283
|
solace_agent_mesh/assets/docs/assets/js/aba21aa0.c42a534c.js,sha256=e8uMq6LJqDkt4o-uIbKH2CIw_7cQ4Kthlh4O9UqwWdw,211
|
|
279
|
-
solace_agent_mesh/assets/docs/assets/js/aba87c2f.
|
|
280
|
-
solace_agent_mesh/assets/docs/assets/js/ae4415af.
|
|
281
|
-
solace_agent_mesh/assets/docs/assets/js/b7006a3a.
|
|
284
|
+
solace_agent_mesh/assets/docs/assets/js/aba87c2f.76376d7c.js,sha256=c_JiYiB-WUZb5XF6EH4XQAxUHYZkNeUgVzTuohLTbgU,17144
|
|
285
|
+
solace_agent_mesh/assets/docs/assets/js/ae4415af.7a2f0bbf.js,sha256=F3xkR1q7_hS_UUfF9fg-3sPDJ-8bAOsHjbqaX-UoEMM,29047
|
|
286
|
+
solace_agent_mesh/assets/docs/assets/js/b7006a3a.73a79653.js,sha256=YYjvDTjQytUxcimeJinuha5T7SdUyHTYjRz7kLFOGOQ,12973
|
|
282
287
|
solace_agent_mesh/assets/docs/assets/js/bac0be12.f50d9bac.js,sha256=quA_kaWdOjhBBpvq5jhKpSqEKaOqy8y4oITXTObG8Yk,17998
|
|
283
|
-
solace_agent_mesh/assets/docs/assets/js/
|
|
284
|
-
solace_agent_mesh/assets/docs/assets/js/c2c06897.
|
|
288
|
+
solace_agent_mesh/assets/docs/assets/js/beecea0d.ae31f6a7.js,sha256=oEQqPzjzWdpvM2fMjLFEFg5uoaN9KtcPatNqiVDu4NU,26216
|
|
289
|
+
solace_agent_mesh/assets/docs/assets/js/c2c06897.587b4af5.js,sha256=sgWo2S9PB6F9eL3Z3nrbx1IS-vtwFi_dt5KX9rNVpk8,14948
|
|
285
290
|
solace_agent_mesh/assets/docs/assets/js/cc969b05.bd3e0d6c.js,sha256=9LqCerLmI1iU53gH096nOvASEvXnC3RvcNRKiS91LmE,23069
|
|
286
|
-
solace_agent_mesh/assets/docs/assets/js/cd3d4052.
|
|
291
|
+
solace_agent_mesh/assets/docs/assets/js/cd3d4052.b6535013.js,sha256=wi8AuSgR-M8XtFY639DAVFuaiur6LaBabHKoh5qfuJY,9747
|
|
287
292
|
solace_agent_mesh/assets/docs/assets/js/ced92a13.fb92e7ca.js,sha256=96enCMQqnD-_WrFda13oJ3gPLYxmy93LXDFxDuxA5JY,25255
|
|
288
293
|
solace_agent_mesh/assets/docs/assets/js/cee5d587.f5b73ca1.js,sha256=ciDSktNPCP_cmpHCR-ycCpuFEeVmbV_D8uHydRZ225w,9508
|
|
289
|
-
solace_agent_mesh/assets/docs/assets/js/f284c35a.
|
|
290
|
-
solace_agent_mesh/assets/docs/assets/js/f897a61a.
|
|
294
|
+
solace_agent_mesh/assets/docs/assets/js/f284c35a.731836ad.js,sha256=OpaZVW_KrMt74u-M_ul3eEPs4Rs93LVqWv10QCLkS40,18276
|
|
295
|
+
solace_agent_mesh/assets/docs/assets/js/f897a61a.0aa29dbb.js,sha256=Bv0Itx75hHCRAiGKy34-NjK7CSWZ9CT1l5uyni3GCOw,16949
|
|
291
296
|
solace_agent_mesh/assets/docs/assets/js/fbfa3e75.aca209c9.js,sha256=vmq7isB22h2J_2cVIt1h6D2OhwU6wTBEnk1-CNZv9Wk,7314
|
|
292
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
293
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
294
|
-
solace_agent_mesh/assets/docs/assets/js/runtime~main.
|
|
295
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=
|
|
296
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=
|
|
297
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=
|
|
298
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=
|
|
299
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=
|
|
300
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=
|
|
301
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=
|
|
302
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=
|
|
303
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=
|
|
304
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
305
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/
|
|
306
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=
|
|
307
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=
|
|
308
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=
|
|
309
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=
|
|
310
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=
|
|
311
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=
|
|
312
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=
|
|
313
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=
|
|
314
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=
|
|
315
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=
|
|
316
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=
|
|
317
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=
|
|
318
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=
|
|
319
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=
|
|
320
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=
|
|
321
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=
|
|
322
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=
|
|
323
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=
|
|
324
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=
|
|
325
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=
|
|
326
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256=
|
|
327
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=
|
|
297
|
+
solace_agent_mesh/assets/docs/assets/js/main.d79f063b.js,sha256=v4MqzrTW_cVtYVnPxU8nG0E8NcOKGtXg-tMnjgP8upc,479511
|
|
298
|
+
solace_agent_mesh/assets/docs/assets/js/main.d79f063b.js.LICENSE.txt,sha256=3Jia5o7yaxOtbxuy9khs-thK96m55yCiPaUA-IkWh0A,2069
|
|
299
|
+
solace_agent_mesh/assets/docs/assets/js/runtime~main.6415ad00.js,sha256=vS6Nuyk2qqCfgDa5TWKfD0kOQ55APhufxUPVffGzypU,5987
|
|
300
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=_wALfHfXZkPvK4JvuuhBEywYQTfTWZadTFV7ymjWKFc,38710
|
|
301
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=gIMCaWRqM-KmwnIhbJD-PoEReRrB_Q73uGyMNDpH67I,32000
|
|
302
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=vjQWfbteEMsZgny8SVUHV_oshIz8UghOfcCWu9NM5zo,49445
|
|
303
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=BsbTrAfTvBF-l7adA62gbG7KNT9V3Ej-sniE5Rr4Qmk,29378
|
|
304
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=NCd_BCYJocOdx2CE_qK0FB3bt8rXfHB1G5TDj-TN9k8,23084
|
|
305
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=8ryVq9mw11SyjKPa8CqjrPv67vURos5m2znFHgsbq7k,39168
|
|
306
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=OYYanZuH8CVSTxo0J_6dVen6AR4P9ZHlTt0xUw1KSFI,44868
|
|
307
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=6bU8ui_pSjckGcj-9O-q7_vItmJgJLlbIB_C6xxIQbg,41778
|
|
308
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=1Gf2Lnwv1sROsvfkiymT_GgF3uFwHIljEiS8rZ69fns,25322
|
|
309
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=eci6_cvogjwblgj_8F4yGlcZt338jMpEQNgJMMXxntg,20955
|
|
310
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html,sha256=5-aFaukBSCNPMrloYPjjJg0FgmBc9CRGiYY0DyJntSA,55878
|
|
311
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=BGu1ANaANGS7817vqTLMzNsy2E7Mhu9XrY4dk0KQF4g,31784
|
|
312
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=ZeIXp0EVJQNe14rf_91DHCO6Qzt_t0nVtZDprrXYz3I,29692
|
|
313
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=p7bcED7-5KjwRSeM5cgHl3anDWInS9SHva5BQBD25tg,41771
|
|
314
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=cCI5njTdyiw9eegXgKl43ptXIvmDiGgpacfVddj4ibQ,74495
|
|
315
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=12X_KKNXidOKdis8YlASh8bzfTAGxcBVuE18UPRFI30,382598
|
|
316
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=5gbdoo1aO9i6V6Si6H_K0bnZyTbbpNJVREU1VJGPiMo,68501
|
|
317
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=d8zbUwQdkajx04TxWmwTJKRMzf95a7UVMepzYD1J7k0,64265
|
|
318
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=J5_YZ_wC6i_PHMryyJdJH_bcPSgXxHhzFf2fzVSLtek,86817
|
|
319
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=cy_J5QlaNQ65vT4_ae66QLEtP3yprZZwGTp-UMGC55g,79247
|
|
320
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=xByfBZX-SZyn5bqXPpuRly-QfIrYFelSK_XkVNTOSuw,45932
|
|
321
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=QQQzaC_LIsPgM3CUSZHv24GPAWhrNw9pOpotz4hXALk,49215
|
|
322
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=fjoKpsVUoSMJtxcy98vYaJE7mq5byP-OfP75qnJLafg,68522
|
|
323
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=XE1pLXEWYOWbGqB51HwEaEuUohe-38eIfqPkDV8Lk68,43860
|
|
324
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=M0lQgnsVLwaGmeP6oldl2HSlXadTg6wY1pPHAIuRpvI,33812
|
|
325
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=_qy1gdFoCCaftmpuldfG4eqoiLERwP217a5nX2XxQHA,57267
|
|
326
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=c6MqFYXNfsBCSZqwl204OWcJWHCwB2SGVanutsqr9CU,36816
|
|
327
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=77pHBXSeumeVLjYrvt7M-li6oprwKNXy7pZyzLsUai0,49696
|
|
328
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=r48xIsT1NsYysKLJaSV_1oTv-pdWlgp2SvkmNpXcpe0,161475
|
|
329
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=TsTUKplNPB8t8NAt8_Q4Zx4HcuqAs2Gl-mS6H3469Xs,401921
|
|
330
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=SGwu8t6d0QilCC8Tu7QEq8CC0SfUxv7m5WCK4WKP1ts,58668
|
|
331
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256=8lFD-_Jw8VYi4xtfmiiXR2ckcw5Pi5ldiipRKVMLgds,24831
|
|
332
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=kNryrerX9-pzZHOpr1QNvrQHjPQfm5yi29iGufK_asg,28839
|
|
328
333
|
solace_agent_mesh/assets/docs/img/Solace_AI_Framework_With_Broker.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
329
334
|
solace_agent_mesh/assets/docs/img/logo.png,sha256=TdXZ2wnkSkaFrGO-5fy2WcmjGXaGzwE29dM83raxoTg,45439
|
|
330
335
|
solace_agent_mesh/assets/docs/img/sac-flows.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
@@ -335,7 +340,7 @@ solace_agent_mesh/config_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
335
340
|
solace_agent_mesh/config_portal/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
341
|
solace_agent_mesh/config_portal/backend/common.py,sha256=mT7BrPMYpUAvABX5kKCmLhd7ShCAtjCIS1QPAgA2X9A,3074
|
|
337
342
|
solace_agent_mesh/config_portal/backend/plugin_catalog_server.py,sha256=Qr5cFUMyDq0qHDTa9ZRbczTi8BUWPZTvxAv3jRxa3hw,7875
|
|
338
|
-
solace_agent_mesh/config_portal/backend/server.py,sha256=
|
|
343
|
+
solace_agent_mesh/config_portal/backend/server.py,sha256=gx8KIAopkeAmn4WfseP5z79GOE246Lf8nPaCw7QrBPo,23689
|
|
339
344
|
solace_agent_mesh/config_portal/backend/plugin_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
345
|
solace_agent_mesh/config_portal/backend/plugin_catalog/constants.py,sha256=Eqq6lO_glHs-0LghOOHXewg6RecwumhI3zjBKUFGMAQ,787
|
|
341
346
|
solace_agent_mesh/config_portal/backend/plugin_catalog/models.py,sha256=Fu6EDX3PD1RTX84ucIs2UbtRk0Y0H3Lm3248MlP0jpY,1199
|
|
@@ -343,23 +348,23 @@ solace_agent_mesh/config_portal/backend/plugin_catalog/registry_manager.py,sha25
|
|
|
343
348
|
solace_agent_mesh/config_portal/backend/plugin_catalog/scraper.py,sha256=j7yJUEKjgsVs7TvSf8Uf_22bKotlYhocIYhfJhTpQPI,21238
|
|
344
349
|
solace_agent_mesh/config_portal/frontend/static/client/Solace_community_logo.png,sha256=ugNi5vBxTdFZMW2uWNZYcutyk4z8yw9e5KEL5XDcodU,5894
|
|
345
350
|
solace_agent_mesh/config_portal/frontend/static/client/favicon.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
346
|
-
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=
|
|
347
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-
|
|
351
|
+
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=OT4Y-2INot1-NWqPweFAue2rliVzc-kmISkShzyWpUM,1419
|
|
352
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-MqsrTd6g.js,sha256=hsNbzkDbtMMN5j5GTEqMhYFvFI2dqppJy7SU23upkCw,278685
|
|
348
353
|
solace_agent_mesh/config_portal/frontend/static/client/assets/components-B7lKcHVY.js,sha256=0sRyqnbRRwww1gtmCrs2LKKkV3oof13oqEq2kmzBwMg,40041
|
|
349
354
|
solace_agent_mesh/config_portal/frontend/static/client/assets/entry.client-CEumGClk.js,sha256=beUIdKZx7yRdQKVug52NNgej7_kKA4Wb1yppvlqBqP8,3862
|
|
350
355
|
solace_agent_mesh/config_portal/frontend/static/client/assets/index-DSo1AH_7.js,sha256=llg7q5i7csyU2UQoobFGNFA_Szk1J8bUDBZMYZ0bckw,217933
|
|
351
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-
|
|
356
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-28271392.js,sha256=sKjQppa_JEOXVx0rpNLLopM0Xc2EDmySvDTWqT0BEao,781
|
|
352
357
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-C4XmHinv.js,sha256=eE0D7vH3RMWe6spPF7YqgTTO36szT_0mAYwHUjBGrDg,1799
|
|
353
358
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-DxRwaWiE.css,sha256=HaETPzdva-2CpjK-MmIBI6lipZMiGHmAqLRJiD8s2QE,33607
|
|
354
359
|
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256=LiPrEF-c40umgZXbxwYP6NCNaFVKNQXqqbIXzzgnkx4,493
|
|
355
|
-
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=
|
|
360
|
+
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=VE7EnJ0RGyZzzRnRjxVhALx9mh7E2Z50wsSxN7wwL-A,558
|
|
356
361
|
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-DvlO62me.js,sha256=ywTL4zkDWkJPt7XLgrlHXjMhcJ0YkY9GLbrigJajsjw,489
|
|
357
362
|
solace_agent_mesh/client/webui/frontend/static/assets/client-bp6u3qVZ.js,sha256=_AAv-71pSyphB132FsplpbvkEfI_akuyLvfB-njUKV8,187773
|
|
358
363
|
solace_agent_mesh/client/webui/frontend/static/assets/favicon-BLgzUch9.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
359
364
|
solace_agent_mesh/client/webui/frontend/static/assets/main-BCpII1-0.css,sha256=sZ9n2WNmgT7v_YBySB21o_NcX541MlrE5bF8EaS-AHc,116452
|
|
360
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
361
|
-
solace_agent_mesh-1.0.
|
|
362
|
-
solace_agent_mesh-1.0.
|
|
363
|
-
solace_agent_mesh-1.0.
|
|
364
|
-
solace_agent_mesh-1.0.
|
|
365
|
-
solace_agent_mesh-1.0.
|
|
365
|
+
solace_agent_mesh/client/webui/frontend/static/assets/main-BucUdn9m.js,sha256=QUj9eBfmHJADmvULY4u9mQQId_NUDVL1pVbgfWXlrfA,742559
|
|
366
|
+
solace_agent_mesh-1.0.7.dist-info/METADATA,sha256=SyOVMThaJR3V6bpePtHzb-xD3v5uUqil7TG6ekm8vQs,24674
|
|
367
|
+
solace_agent_mesh-1.0.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
368
|
+
solace_agent_mesh-1.0.7.dist-info/entry_points.txt,sha256=5pLVH8d8bd4sxUwBh7VTni8gTTSzTqGfY14zgdQZm1I,106
|
|
369
|
+
solace_agent_mesh-1.0.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
370
|
+
solace_agent_mesh-1.0.7.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunksolace_agenitc_mesh_docs=self.webpackChunksolace_agenitc_mesh_docs||[]).push([[1935],{3728:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>c,contentTitle:()=>r,default:()=>d,frontMatter:()=>i,metadata:()=>a,toc:()=>l});const a=JSON.parse('{"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:","source":"@site/docs/documentation/concepts/gateways.md","sourceDirName":"documentation/concepts","slug":"/documentation/concepts/gateways","permalink":"/solace-agent-mesh/docs/documentation/concepts/gateways","draft":false,"unlisted":false,"editUrl":"https://github.com/SolaceLabs/solace-agent-mesh/edit/main/docs/docs/documentation/concepts/gateways.md","tags":[],"version":"current","sidebarPosition":10,"frontMatter":{"title":"Gateways","sidebar_position":10},"sidebar":"docSidebar","previous":{"title":"Solace Agent Mesh CLI","permalink":"/solace-agent-mesh/docs/documentation/concepts/cli"},"next":{"title":"Agents","permalink":"/solace-agent-mesh/docs/documentation/concepts/agents"}}');var s=n(4848),o=n(8453);const i={title:"Gateways",sidebar_position:10},r="Gateways",c={},l=[{value:"Key Functions",id:"key-functions",level:2},{value:"How Gateways Work",id:"how-gateways-work",level:2},{value:"Available Gateways",id:"available-gateways",level:2},{value:"Core Gateways",id:"core-gateways",level:3},{value:"Plugin Gateways",id:"plugin-gateways",level:3},{value:"Create a Gateway",id:"create-a-gateway",level:2},{value:"Gateway from Scratch",id:"gateway-from-scratch",level:3}];function h(e){const t={a:"a",admonition:"admonition",code:"code",em:"em",h1:"h1",h2:"h2",h3:"h3",header:"header",li:"li",mermaid:"mermaid",ol:"ol",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,o.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(t.header,{children:(0,s.jsx)(t.h1,{id:"gateways",children:"Gateways"})}),"\n",(0,s.jsx)(t.p,{children:"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:"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"serve as the primary interface between Solace Agent Mesh and the outside world"}),"\n",(0,s.jsx)(t.li,{children:"manage the flow of information in and out of the system through the A2A protocol"}),"\n",(0,s.jsx)(t.li,{children:"handle authentication, user enrichment, and message processing"}),"\n",(0,s.jsx)(t.li,{children:"support multiple interface types including REST, HTTP SSE, webhooks, and event mesh connectivity"}),"\n"]}),"\n",(0,s.jsx)(t.admonition,{title:"In one sentence",type:"tip",children:(0,s.jsx)(t.p,{children:"Gateways are the external interfaces that connect various systems to the A2A agent mesh through standardized protocols."})}),"\n",(0,s.jsx)(t.h2,{id:"key-functions",children:"Key Functions"}),"\n",(0,s.jsxs)(t.ol,{children:["\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"Entry Points"}),": Gateways act as the entry points from the outside world and translate external requests into A2A protocol messages and route them through the Solace event mesh to appropriate agents."]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"Authentication & Authorization"}),": Common authentication and user enrichment flow across all gateway types, with pluggable identity providers."]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"Configurable System Purpose"}),": Each gateway has a configurable system purpose that sets the context for all stimuli entering the Solace Agent Mesh through that gateway. This design allows for tailored processing based on the specific use case or domain."]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"Customizable Output Formatting"}),": Gateways have a configurable output description that controls how stimuli responses are formatted when sent back to the outside world. This configurable output description ensures that the output meets the requirements of the receiving system or user interface."]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"Multiple Interface Types"}),": Gateways can have different interfaces to accommodate various communication protocols and systems. Some examples include REST APIs, event meshes, Slack integrations, browser-based interfaces, and so on."]}),"\n"]}),"\n"]}),"\n",(0,s.jsx)(t.h2,{id:"how-gateways-work",children:"How Gateways Work"}),"\n",(0,s.jsx)(t.p,{children:"The following diagram illustrates the complete flow of information through a gateway in Solace Agent Mesh:"}),"\n",(0,s.jsx)(t.mermaid,{value:"sequenceDiagram\n participant External as External System/User\n participant Gateway\n participant Mesh as Solace Agent Mesh\n\n rect rgba(128, 128, 128, 0.2)\n Note over External,Gateway: Authentication Phase [Optional]\n External->>Gateway: Send Request\n Gateway->> Gateway: Authenticate Request\n alt Authentication Failed\n Gateway--\x3e>External: Return Error\n end\n end\n\n rect rgba(128, 128, 128, 0.2)\n Note over Gateway: Authorization Phase [Optional]\n end\n\n rect rgba(128, 128, 128, 0.2)\n Note over Gateway,Mesh: Processing Phase\n Gateway->>Gateway: Apply System Purpose\n Gateway->>Gateway: Attach Format Rules\n Gateway->>Gateway: Format Response\n Gateway->>Gateway: Transform to Stimulus\n Gateway->>Mesh: Send Stimulus\n\n alt Response Expected\n Mesh--\x3e>Gateway: Return Response\n Gateway--\x3e>External: Send Formatted Response\n end\n end"}),"\n",(0,s.jsx)(t.h2,{id:"available-gateways",children:"Available Gateways"}),"\n",(0,s.jsx)(t.p,{children:"Solace Agent Mesh comes with several built-in gateway types:"}),"\n",(0,s.jsx)(t.h3,{id:"core-gateways",children:"Core Gateways"}),"\n",(0,s.jsxs)(t.ol,{children:["\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsx)(t.p,{children:(0,s.jsx)(t.strong,{children:"HTTP SSE Gateway"})}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"Real-time web interface with streaming responses"}),"\n",(0,s.jsx)(t.li,{children:"Server-sent events for live updates"}),"\n",(0,s.jsx)(t.li,{children:"Agent discovery API"}),"\n",(0,s.jsx)(t.li,{children:"File upload and download handling"}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsx)(t.p,{children:(0,s.jsx)(t.strong,{children:"REST Gateway"})}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"Task submission with immediate task ID return"}),"\n",(0,s.jsx)(t.li,{children:"Polling-based result retrieval"}),"\n",(0,s.jsx)(t.li,{children:"Authentication integration"}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(t.li,{children:["\n",(0,s.jsx)(t.p,{children:(0,s.jsx)(t.strong,{children:"Webhook Gateway"})}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"Handles incoming webhook requests"}),"\n",(0,s.jsx)(t.li,{children:"Transforms webhook payloads to A2A messages"}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,s.jsx)(t.h3,{id:"plugin-gateways",children:"Plugin Gateways"}),"\n",(0,s.jsx)(t.p,{children:"Additional gateway types are available through the plugin ecosystem:"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsxs)(t.li,{children:[(0,s.jsx)(t.strong,{children:"Event Mesh Gateway"}),": External event mesh connectivity with message transformation"]}),"\n",(0,s.jsxs)(t.li,{children:[(0,s.jsx)(t.strong,{children:"Slack Gateway"}),": Slack bot integration for team collaboration"]}),"\n",(0,s.jsxs)(t.li,{children:[(0,s.jsx)(t.strong,{children:"Custom Gateways"}),": Create your own gateway implementations"]}),"\n"]}),"\n",(0,s.jsxs)(t.p,{children:["For more information about plugins and how to configure them, see ",(0,s.jsx)(t.a,{href:"/solace-agent-mesh/docs/documentation/concepts/plugins",children:"Plugins"}),"."]}),"\n",(0,s.jsxs)(t.p,{children:["One of the official core plugin gateway interfaces is the ",(0,s.jsx)(t.a,{href:"https://github.com/SolaceLabs/solace-agent-mesh-core-plugins/tree/main/solace-event-mesh",children:"Solace Event Mesh Gateway"}),", which enables communication with the PubSub+ event broker directly as an input interface."]}),"\n",(0,s.jsx)(t.admonition,{type:"note",children:(0,s.jsx)(t.p,{children:"Each gateway type has its own configuration options and specific features. See the individual gateway documentation pages for detailed information on setup and usage."})}),"\n",(0,s.jsx)(t.h2,{id:"create-a-gateway",children:"Create a Gateway"}),"\n",(0,s.jsxs)(t.p,{children:["To create a gateway, you can either ",(0,s.jsx)(t.a,{href:"/solace-agent-mesh/docs/documentation/concepts/plugins#use-a-plugin",children:"use one of the pre-existing plugins"})," or create yours from scratch."]}),"\n",(0,s.jsx)(t.h3,{id:"gateway-from-scratch",children:"Gateway from Scratch"}),"\n",(0,s.jsxs)(t.p,{children:["To create a gateway from scratch, you need to use the CLI ",(0,s.jsx)(t.code,{children:"add gateway"})," command without any interfaces. This command creates a ",(0,s.jsx)(t.em,{children:"python gateway template file"})," which you can then customize to your needs."]}),"\n",(0,s.jsx)(t.pre,{children:(0,s.jsx)(t.code,{className:"language-sh",children:"sam add gateway my-interface\n"})}),"\n",(0,s.jsxs)(t.p,{children:["To learn more about creating your own gateway, see ",(0,s.jsx)(t.a,{href:"/solace-agent-mesh/docs/documentation/user-guide/create-gateways",children:"Create Custom Gateways"}),"."]}),"\n",(0,s.jsx)(t.admonition,{title:"Share and Reuse",type:"tip",children:(0,s.jsxs)(t.p,{children:["If you would like to share your custom gateway with the community or re-use it within other projects, you can create a plugin for it. For more information, see ",(0,s.jsx)(t.a,{href:"/solace-agent-mesh/docs/documentation/concepts/plugins#create-a-plugin",children:"Create Plugins"}),"."]})})]})}function d(e={}){const{wrapper:t}={...(0,o.R)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(h,{...e})}):h(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>i,x:()=>r});var a=n(6540);const s={},o=a.createContext(s);function i(e){const t=a.useContext(o);return a.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function r(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:i(e.components),a.createElement(o.Provider,{value:t},e.children)}}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunksolace_agenitc_mesh_docs=self.webpackChunksolace_agenitc_mesh_docs||[]).push([[1430],{7977:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>l,contentTitle:()=>a,default:()=>h,frontMatter:()=>r,metadata:()=>o,toc:()=>c});const o=JSON.parse('{"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.","source":"@site/docs/documentation/tutorials/mcp-integration.md","sourceDirName":"documentation/tutorials","slug":"/documentation/tutorials/mcp-integration","permalink":"/solace-agent-mesh/docs/documentation/tutorials/mcp-integration","draft":false,"unlisted":false,"editUrl":"https://github.com/SolaceLabs/solace-agent-mesh/edit/main/docs/docs/documentation/tutorials/mcp-integration.md","tags":[],"version":"current","sidebarPosition":10,"frontMatter":{"title":"MCP Integration","sidebar_position":10},"sidebar":"docSidebar","previous":{"title":"Build Your Own Agent","permalink":"/solace-agent-mesh/docs/documentation/tutorials/custom-agent"},"next":{"title":"REST Gateway","permalink":"/solace-agent-mesh/docs/documentation/tutorials/rest-gateway"}}');var s=t(4848),i=t(8453);const r={title:"MCP Integration",sidebar_position:10},a="MCP Integration",l={},c=[{value:"Setting Up the Environment",id:"setting-up-the-environment",level:2},{value:"Adding MCP Tools to an Agent",id:"adding-mcp-tools-to-an-agent",level:2},{value:"1. Stdio Connection (Local MCP Servers)",id:"1-stdio-connection-local-mcp-servers",level:3},{value:"2. SSE Connection (Remote MCP Servers)",id:"2-sse-connection-remote-mcp-servers",level:3},{value:"3. Docker Connection (Containerized MCP Servers)",id:"3-docker-connection-containerized-mcp-servers",level:3},{value:"Complete Example: Filesystem MCP Agent",id:"complete-example-filesystem-mcp-agent",level:2},{value:"Configuration Options",id:"configuration-options",level:2},{value:"Tool-Specific Configuration",id:"tool-specific-configuration",level:3},{value:"Environment Variables",id:"environment-variables",level:3},{value:"Running Your MCP-Enabled Agent",id:"running-your-mcp-enabled-agent",level:2},{value:"How MCP Integration Works",id:"how-mcp-integration-works",level:2},{value:"Testing Your MCP Integration",id:"testing-your-mcp-integration",level:2}];function d(e){const n={a:"a",admonition:"admonition",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",li:"li",ol:"ol",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,i.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(n.header,{children:(0,s.jsx)(n.h1,{id:"mcp-integration",children:"MCP Integration"})}),"\n",(0,s.jsx)(n.p,{children:"This tutorial walks you through the process of integrating a Model Context Protocol (MCP) Server into Solace Agent Mesh."}),"\n",(0,s.jsx)(n.admonition,{title:"Learn about agents",type:"info",children:(0,s.jsxs)(n.p,{children:["You should have an understanding of agents in the Solace Agent Mesh. For more information, see ",(0,s.jsx)(n.a,{href:"/solace-agent-mesh/docs/documentation/concepts/agents",children:"Agents"}),"."]})}),"\n",(0,s.jsxs)(n.p,{children:["Solace Agent Mesh now provides ",(0,s.jsx)(n.strong,{children:"native MCP support"})," through the framework itself. No additional plugins are required - you can connect to MCP servers directly by configuring your agent YAML file with MCP tools."]}),"\n",(0,s.jsx)(n.p,{children:"MCP integration allows your agents to connect to external MCP servers and use their tools, resources, and prompts seamlessly within the A2A protocol ecosystem."}),"\n",(0,s.jsx)(n.h2,{id:"setting-up-the-environment",children:"Setting Up the Environment"}),"\n",(0,s.jsxs)(n.p,{children:["You must ",(0,s.jsx)(n.a,{href:"/solace-agent-mesh/docs/documentation/getting-started/installation",children:"install Solace Agent Mesh and SAM CLI"}),", and then ",(0,s.jsx)(n.a,{href:"/solace-agent-mesh/docs/documentation/getting-started/quick-start",children:"create a new Solace Agent Mesh project"}),"."]}),"\n",(0,s.jsx)(n.p,{children:"For this tutorial using the filesystem MCP server, you also need Node.js and NPM installed."}),"\n",(0,s.jsx)(n.h2,{id:"adding-mcp-tools-to-an-agent",children:"Adding MCP Tools to an Agent"}),"\n",(0,s.jsx)(n.p,{children:"MCP integration is accomplished by adding MCP tools directly to your agent configuration. There are three main connection types supported:"}),"\n",(0,s.jsx)(n.h3,{id:"1-stdio-connection-local-mcp-servers",children:"1. Stdio Connection (Local MCP Servers)"}),"\n",(0,s.jsx)(n.p,{children:"This is the most common method for connecting to MCP servers that run as local processes:"}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'tools:\n - tool_type: mcp\n connection_params:\n type: stdio\n command: "npx"\n args:\n - "-y"\n - "@modelcontextprotocol/server-filesystem"\n - "/tmp/samv2"\n'})}),"\n",(0,s.jsx)(n.h3,{id:"2-sse-connection-remote-mcp-servers",children:"2. SSE Connection (Remote MCP Servers)"}),"\n",(0,s.jsx)(n.p,{children:"For connecting to remote MCP servers using Server-Sent Events:"}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'tools:\n - tool_type: mcp\n connection_params:\n type: sse\n url: "https://mcp.example.com/v1/sse"\n headers:\n Authorization: "Bearer ${MCP_AUTH_TOKEN}"\n'})}),"\n",(0,s.jsx)(n.h3,{id:"3-docker-connection-containerized-mcp-servers",children:"3. Docker Connection (Containerized MCP Servers)"}),"\n",(0,s.jsx)(n.p,{children:"For running MCP servers in Docker containers:"}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'tools:\n - tool_type: mcp\n connection_params:\n type: stdio\n command: "docker"\n args:\n - "run"\n - "-i"\n - "--rm"\n - "-e"\n - "API_KEY"\n - "mcp-server-image:latest"\n environment_variables:\n API_KEY: ${MY_API_KEY}\n'})}),"\n",(0,s.jsx)(n.h2,{id:"complete-example-filesystem-mcp-agent",children:"Complete Example: Filesystem MCP Agent"}),"\n",(0,s.jsx)(n.p,{children:"Here is a complete example of an agent that uses the filesystem MCP server:"}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'# configs/agents/filesystem_agent.yaml\nlog:\n stdout_log_level: INFO\n log_file_level: DEBUG\n log_file: filesystem_agent.log\n\n!include ../shared_config.yaml\n\napps:\n - name: filesystem_mcp_agent_app\n app_base_path: .\n app_module: solace_agent_mesh.agent.sac.app\n broker:\n <<: *broker_connection\n\n app_config:\n namespace: ${NAMESPACE}\n supports_streaming: true\n agent_name: "FileSystemAgent"\n display_name: "File System"\n model: *general_model\n \n instruction: |\n You can interact with the local filesystem using MCP tools.\n Use the available tools to read, write, and manage files as requested.\n\n tools:\n - tool_type: mcp\n connection_params:\n type: stdio\n command: "npx"\n args:\n - "-y"\n - "@modelcontextprotocol/server-filesystem"\n - "/tmp/samv2"\n - tool_type: builtin-group\n group_name: "artifact_management"\n\n session_service: *default_session_service\n artifact_service: *default_artifact_service\n\n # Agent discovery and communication\n agent_card:\n description: "An agent that interacts with the local filesystem via MCP."\n defaultInputModes: ["text"]\n defaultOutputModes: ["text", "file"]\n skills: []\n\n agent_card_publishing: { interval_seconds: 10 }\n agent_discovery: { enabled: true }\n inter_agent_communication:\n allow_list: ["*"]\n request_timeout_seconds: 30\n'})}),"\n",(0,s.jsx)(n.h2,{id:"configuration-options",children:"Configuration Options"}),"\n",(0,s.jsx)(n.h3,{id:"tool-specific-configuration",children:"Tool-Specific Configuration"}),"\n",(0,s.jsx)(n.p,{children:"You can limit which tools from an MCP server are available by specifying a specific tool name:"}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'tools:\n - tool_type: mcp\n tool_name: "read_file" # Only expose the read_file tool\n connection_params:\n type: stdio\n command: "npx"\n args: ["-y", "@modelcontextprotocol/server-filesystem", "/tmp/samv2"]\n'})}),"\n",(0,s.jsx)(n.h3,{id:"environment-variables",children:"Environment Variables"}),"\n",(0,s.jsxs)(n.p,{children:["Pass environment variables to MCP servers using the ",(0,s.jsx)(n.code,{children:"environment_variables"})," block:"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'tools:\n - tool_type: mcp\n connection_params:\n type: stdio\n command: "my-mcp-server"\n environment_variables:\n API_KEY: ${MY_API_KEY}\n DEBUG_MODE: "true"\n CONFIG_PATH: "/etc/myconfig"\n'})}),"\n",(0,s.jsx)(n.h2,{id:"running-your-mcp-enabled-agent",children:"Running Your MCP-Enabled Agent"}),"\n",(0,s.jsxs)(n.ol,{children:["\n",(0,s.jsxs)(n.li,{children:["\n",(0,s.jsxs)(n.p,{children:[(0,s.jsx)(n.strong,{children:"Create the working directory"})," (for filesystem example):"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-sh",children:'mkdir -p /tmp/samv2\necho "Hello MCP!" > /tmp/samv2/test.txt\n'})}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:["\n",(0,s.jsxs)(n.p,{children:[(0,s.jsx)(n.strong,{children:"Set required environment variables"}),":"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-sh",children:'export NAMESPACE="myorg/dev"\nexport SOLACE_BROKER_URL="ws://localhost:8080"\n# ... other Solace broker settings\n'})}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:["\n",(0,s.jsxs)(n.p,{children:[(0,s.jsx)(n.strong,{children:"Run the agent"}),":"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-sh",children:"sam run configs/agents/filesystem_agent.yaml\n"})}),"\n"]}),"\n"]}),"\n",(0,s.jsx)(n.h2,{id:"how-mcp-integration-works",children:"How MCP Integration Works"}),"\n",(0,s.jsx)(n.p,{children:"When your agent starts:"}),"\n",(0,s.jsxs)(n.ol,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Connection"}),": The framework establishes a connection to the MCP server using the specified connection parameters"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Discovery"}),": It queries the MCP server for available tools, resources, and prompts"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Registration"}),": Available capabilities are registered as agent tools."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Communication"}),": The agent can use these tools through the standard A2A protocol, with the framework handling MCP protocol translation"]}),"\n"]}),"\n",(0,s.jsx)(n.h2,{id:"testing-your-mcp-integration",children:"Testing Your MCP Integration"}),"\n",(0,s.jsx)(n.p,{children:"Once your MCP-enabled agent is running, you can test it through any gateway in your project (such as the Web UI gateway):"}),"\n",(0,s.jsxs)(n.ol,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Access your gateway"})," (for example, Web UI at ",(0,s.jsx)(n.code,{children:"http://localhost:8000"}),")"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Send a request"})," to test the MCP functionality:","\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsx)(n.li,{children:'"List the files in the directory"'}),"\n",(0,s.jsx)(n.li,{children:'"Create a simple text file with some content"'}),"\n",(0,s.jsx)(n.li,{children:'"Read the contents of test.txt"'}),"\n"]}),"\n"]}),"\n"]}),"\n",(0,s.jsx)(n.p,{children:"The agent uses the MCP tools to interact with the filesystem and provide responses through the A2A protocol."})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,s.jsx)(n,{...e,children:(0,s.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>r,x:()=>a});var o=t(6540);const s={},i=o.createContext(s);function r(e){const n=o.useContext(i);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function a(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:r(e.components),o.createElement(i.Provider,{value:n},e.children)}}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunksolace_agenitc_mesh_docs=self.webpackChunksolace_agenitc_mesh_docs||[]).push([[1462],{3519:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>l,contentTitle:()=>o,default:()=>h,frontMatter:()=>a,metadata:()=>i,toc:()=>d});const i=JSON.parse('{"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.","source":"@site/docs/documentation/user-guide/builtin-tools/data-analysis-tools.md","sourceDirName":"documentation/user-guide/builtin-tools","slug":"/documentation/user-guide/builtin-tools/data-analysis-tools","permalink":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/data-analysis-tools","draft":false,"unlisted":false,"editUrl":"https://github.com/SolaceLabs/solace-agent-mesh/edit/main/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools.md","tags":[],"version":"current","sidebarPosition":20,"frontMatter":{"title":"Data Analysis Tools","sidebar_position":20},"sidebar":"docSidebar","previous":{"title":"Artifact Management Tools","permalink":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/artifact-management"},"next":{"title":"Audio Tools","permalink":"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/audio-tools"}}');var s=t(4848),r=t(8453);const a={title:"Data Analysis Tools",sidebar_position:20},o="Data Analysis Tools",l={},d=[{value:"1. Setup and Configuration",id:"1-setup-and-configuration",level:2},{value:"2. Available Tools",id:"2-available-tools",level:2},{value:"<code>query_data_with_sql</code>",id:"query_data_with_sql",level:3},{value:"<code>create_sqlite_db</code>",id:"create_sqlite_db",level:3},{value:"<code>transform_data_with_jq</code>",id:"transform_data_with_jq",level:3},{value:"<code>create_chart_from_plotly_config</code>",id:"create_chart_from_plotly_config",level:3},{value:"3. Example Workflow: Querying a Large CSV",id:"3-example-workflow-querying-a-large-csv",level:2},{value:"4. Technical Considerations",id:"4-technical-considerations",level:2},{value:"Result Handling",id:"result-handling",level:3},{value:"Security",id:"security",level:3}];function c(e){const n={a:"a",admonition:"admonition",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",li:"li",ol:"ol",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,r.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(n.header,{children:(0,s.jsx)(n.h1,{id:"data-analysis-tools",children:"Data Analysis Tools"})}),"\n",(0,s.jsx)(n.p,{children:"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."}),"\n",(0,s.jsx)(n.h2,{id:"1-setup-and-configuration",children:"1. Setup and Configuration"}),"\n",(0,s.jsxs)(n.p,{children:["Enable the data analysis tool group in the agent's ",(0,s.jsx)(n.code,{children:"app_config.yml"})," file."]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-yaml",children:'# In your agent\'s app_config:\ntools:\n - tool_type: builtin-group\n group_name: "data_analysis"\n\n# Optional: Configure tool behavior\ndata_tools_config:\n sqlite_memory_threshold_mb: 100\n max_result_preview_rows: 50\n max_result_preview_bytes: 4096\n'})}),"\n",(0,s.jsx)(n.h2,{id:"2-available-tools",children:"2. Available Tools"}),"\n",(0,s.jsx)(n.h3,{id:"query_data_with_sql",children:(0,s.jsx)(n.code,{children:"query_data_with_sql"})}),"\n",(0,s.jsx)(n.admonition,{title:"Enterprise Only",type:"info",children:(0,s.jsx)(n.p,{children:"This feature is available in the Enterprise Edition only."})}),"\n",(0,s.jsx)(n.p,{children:"Executes a SQL query against data stored in a CSV or SQLite artifact."}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Parameters"}),":","\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"input_filename"})," (str): The filename of the input artifact (for example, ",(0,s.jsx)(n.code,{children:"'data.csv'"}),", ",(0,s.jsx)(n.code,{children:"'mydatabase.sqlite'"}),"). Supports versioning (for example, ",(0,s.jsx)(n.code,{children:"'data.csv:2'"}),")."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"sql_query"})," (str): The SQL query string to execute."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"output_format"})," (str, optional): The desired format for the output artifact (",(0,s.jsx)(n.code,{children:"'csv'"})," or ",(0,s.jsx)(n.code,{children:"'json'"}),"). Defaults to ",(0,s.jsx)(n.code,{children:"'csv'"}),"."]}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Behavior"}),":","\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"For CSV Input"}),": The tool loads the CSV data into a temporary in-memory SQLite database table named ",(0,s.jsx)(n.code,{children:"data"})," and executes the query against it."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"For SQLite Input"}),": The tool connects directly to the specified SQLite database artifact in ",(0,s.jsx)(n.strong,{children:"read-only mode"}),"."]}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Returns"}),": A dictionary containing the execution status, a preview of the query result, and the ",(0,s.jsx)(n.code,{children:"output_filename"})," where the full result set is stored."]}),"\n"]}),"\n",(0,s.jsx)(n.hr,{}),"\n",(0,s.jsx)(n.h3,{id:"create_sqlite_db",children:(0,s.jsx)(n.code,{children:"create_sqlite_db"})}),"\n",(0,s.jsx)(n.admonition,{title:"Enterprise Only",type:"info",children:(0,s.jsx)(n.p,{children:"This feature is available in the Enterprise Edition only."})}),"\n",(0,s.jsx)(n.p,{children:"Converts a CSV or JSON artifact into a persistent SQLite database artifact. This is the recommended approach for executing multiple queries on the same dataset, as it avoids repeated parsing of the source file."}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Parameters"}),":","\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"input_filename"})," (str): The filename of the input CSV or JSON artifact."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"output_db_filename"})," (str): The desired filename for the output SQLite database artifact (for example, ",(0,s.jsx)(n.code,{children:"'queryable_dataset.sqlite'"}),")."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"table_name"})," (str, optional): The name of the table to be created within the SQLite database. Defaults to ",(0,s.jsx)(n.code,{children:"'data'"}),"."]}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Returns"}),": A dictionary confirming the successful creation of the database artifact and providing its ",(0,s.jsx)(n.code,{children:"output_filename"}),"."]}),"\n"]}),"\n",(0,s.jsx)(n.hr,{}),"\n",(0,s.jsx)(n.h3,{id:"transform_data_with_jq",children:(0,s.jsx)(n.code,{children:"transform_data_with_jq"})}),"\n",(0,s.jsx)(n.admonition,{title:"Enterprise Only",type:"info",children:(0,s.jsx)(n.p,{children:"This feature is available in the Enterprise Edition only."})}),"\n",(0,s.jsx)(n.p,{children:"Applies a JQ expression to transform data from a JSON, YAML, or CSV artifact."}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Parameters"}),":","\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"input_filename"})," (str): The filename of the input artifact."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"jq_expression"})," (str): The JQ filter or transformation expression string (for example, ",(0,s.jsx)(n.code,{children:"'.users[] | {name, id}'"}),")."]}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Returns"}),": A dictionary containing the execution status, a preview of the transformed data, and the ",(0,s.jsx)(n.code,{children:"output_filename"})," where the full JSON result is stored."]}),"\n"]}),"\n",(0,s.jsx)(n.hr,{}),"\n",(0,s.jsx)(n.h3,{id:"create_chart_from_plotly_config",children:(0,s.jsx)(n.code,{children:"create_chart_from_plotly_config"})}),"\n",(0,s.jsx)(n.p,{children:"Generates a static chart image (for example, PNG, JPG, SVG) from a Plotly configuration provided as a string."}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Parameters"}),":","\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"config_content"})," (str): A JSON or YAML formatted string representing the Plotly ",(0,s.jsx)(n.code,{children:"figure"})," dictionary."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"config_format"})," (str): Specifies whether ",(0,s.jsx)(n.code,{children:"config_content"})," is ",(0,s.jsx)(n.code,{children:"'json'"})," or ",(0,s.jsx)(n.code,{children:"'yaml'"}),"."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"output_filename"})," (str): The desired filename for the output image artifact (for example, ",(0,s.jsx)(n.code,{children:"'sales_chart.png'"}),")."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.code,{children:"output_format"})," (str, optional): The desired image format (",(0,s.jsx)(n.code,{children:"'png'"}),", ",(0,s.jsx)(n.code,{children:"'jpeg'"}),", ",(0,s.jsx)(n.code,{children:"'svg'"}),", etc.). Defaults to ",(0,s.jsx)(n.code,{children:"'png'"}),"."]}),"\n"]}),"\n"]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Returns"}),": A dictionary confirming the chart's creation and providing its ",(0,s.jsx)(n.code,{children:"output_filename"}),"."]}),"\n"]}),"\n",(0,s.jsx)(n.h2,{id:"3-example-workflow-querying-a-large-csv",children:"3. Example Workflow: Querying a Large CSV"}),"\n",(0,s.jsx)(n.p,{children:"The following workflow demonstrates an efficient method for analyzing a large CSV file:"}),"\n",(0,s.jsxs)(n.ol,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"User Request"}),': "I need to run several queries on ',(0,s.jsx)(n.code,{children:"large_data.csv"}),'."']}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Agent Strategy"}),": The agent determines that converting the CSV to a SQLite database is more performant for subsequent queries."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Agent Call 1"}),": The agent calls ",(0,s.jsx)(n.code,{children:"create_sqlite_db"})," to convert ",(0,s.jsx)(n.code,{children:"large_data.csv"})," into a new artifact, ",(0,s.jsx)(n.code,{children:"queryable_data.sqlite"}),"."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Agent Response"}),': "The data has been prepared for querying. What is your first question?"']}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"User Request"}),": \"Find all records where the category is 'Sales'.\""]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Agent Call 2"}),": The agent calls ",(0,s.jsx)(n.code,{children:"query_data_with_sql"}),", targeting the ",(0,s.jsx)(n.strong,{children:(0,s.jsx)(n.code,{children:"queryable_data.sqlite"})})," artifact."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Agent Response"}),": The agent provides the results of the query."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"User Request"}),": \"Now, find the average amount for the 'Marketing' category.\""]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Agent Call 3"}),": The agent calls ",(0,s.jsx)(n.code,{children:"query_data_with_sql"})," again on the ",(0,s.jsxs)(n.strong,{children:["same ",(0,s.jsx)(n.code,{children:"queryable_data.sqlite"})," artifact"]}),", avoiding the overhead of reprocessing the original CSV file."]}),"\n"]}),"\n",(0,s.jsx)(n.h2,{id:"4-technical-considerations",children:"4. Technical Considerations"}),"\n",(0,s.jsx)(n.h3,{id:"result-handling",children:"Result Handling"}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Previews"}),": For ",(0,s.jsx)(n.code,{children:"query_data_with_sql"})," and ",(0,s.jsx)(n.code,{children:"transform_data_with_jq"}),", the tools return a truncated preview of the result directly to the LLM for immediate context."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Full Results"}),": The complete, untruncated result sets are always saved as new artifacts. The LLM is provided with the filename and version of these artifacts."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Accessing Full Results"}),": To utilize the full results, the agent can employ file management tools (",(0,s.jsx)(n.code,{children:"load_artifact"}),") or ",(0,s.jsx)(n.a,{href:"/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/embeds",children:"Dynamic Embeds"})," (",(0,s.jsx)(n.code,{children:"\xabartifact_content:...\xbb"}),")."]}),"\n"]}),"\n",(0,s.jsx)(n.h3,{id:"security",children:"Security"}),"\n",(0,s.jsxs)(n.ul,{children:["\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"SQL Execution"}),": Queries against existing SQLite artifacts are performed in ",(0,s.jsx)(n.strong,{children:"read-only mode"})," to prevent data modification. Queries against temporary databases generated from CSVs are isolated."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"JQ Execution"}),": JQ expressions are executed within a sandboxed Python library, not via shell execution."]}),"\n",(0,s.jsxs)(n.li,{children:[(0,s.jsx)(n.strong,{children:"Resource Usage"}),": Complex queries or transformations can be resource-intensive. Monitor performance and resource consumption accordingly."]}),"\n"]})]})}function h(e={}){const{wrapper:n}={...(0,r.R)(),...e.components};return n?(0,s.jsx)(n,{...e,children:(0,s.jsx)(c,{...e})}):c(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>a,x:()=>o});var i=t(6540);const s={},r=i.createContext(s);function a(e){const n=i.useContext(r);return i.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function o(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:a(e.components),i.createElement(r.Provider,{value:n},e.children)}}}]);
|