solace-agent-mesh 1.0.3__py3-none-any.whl → 1.0.5__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/__init__.py +0 -5
- solace_agent_mesh/assets/docs/404.html +2 -2
- solace_agent_mesh/assets/docs/assets/js/{main.dc7db184.js → main.946fa17b.js} +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html +2 -2
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html +2 -2
- solace_agent_mesh/assets/docs/lunr-index-1755275703209.json +1 -0
- solace_agent_mesh/assets/docs/lunr-index.json +1 -1
- solace_agent_mesh/assets/docs/search-doc-1755275703209.json +1 -0
- solace_agent_mesh/assets/docs/search-doc.json +1 -1
- solace_agent_mesh/cli/__init__.py +1 -1
- solace_agent_mesh/cli/commands/run_cmd.py +4 -0
- solace_agent_mesh/common/utils/initializer.py +1 -0
- {solace_agent_mesh-1.0.3.dist-info → solace_agent_mesh-1.0.5.dist-info}/METADATA +13 -6
- {solace_agent_mesh-1.0.3.dist-info → solace_agent_mesh-1.0.5.dist-info}/RECORD +49 -49
- solace_agent_mesh/assets/docs/lunr-index-1755120326601.json +0 -1
- solace_agent_mesh/assets/docs/search-doc-1755120326601.json +0 -1
- /solace_agent_mesh/assets/docs/assets/js/{main.dc7db184.js.LICENSE.txt → main.946fa17b.js.LICENSE.txt} +0 -0
- {solace_agent_mesh-1.0.3.dist-info → solace_agent_mesh-1.0.5.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-1.0.3.dist-info → solace_agent_mesh-1.0.5.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-1.0.3.dist-info → solace_agent_mesh-1.0.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.0.
|
|
1
|
+
__version__ = "1.0.5"
|
|
@@ -4,6 +4,7 @@ import sys
|
|
|
4
4
|
from pathlib import Path
|
|
5
5
|
from dotenv import load_dotenv, find_dotenv
|
|
6
6
|
from cli.utils import error_exit
|
|
7
|
+
from solace_agent_mesh.common.utils.initializer import initialize
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
def _execute_with_solace_ai_connector(config_file_paths: list[str]):
|
|
@@ -90,6 +91,9 @@ def run(files: tuple[str, ...], skip_files: tuple[str, ...], system_env: bool):
|
|
|
90
91
|
else:
|
|
91
92
|
click.echo("Skipping .env file loading due to --system-env flag.")
|
|
92
93
|
|
|
94
|
+
# Run enterprise initialization if present
|
|
95
|
+
initialize()
|
|
96
|
+
|
|
93
97
|
config_files_to_run = []
|
|
94
98
|
project_root = Path.cwd()
|
|
95
99
|
configs_dir = project_root / "configs"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: solace-agent-mesh
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Solace Agent Mesh is an open-source framework for building event-driven, multi-agent AI systems where specialized agents collaborate on complex tasks.
|
|
5
5
|
Project-URL: Homepage, https://github.com/SolaceLabs/solace-agent-mesh
|
|
6
6
|
Project-URL: Repository, https://github.com/SolaceLabs/solace-agent-mesh
|
|
@@ -257,10 +257,6 @@ Requires-Dist: prompt-toolkit>=3.0; extra == 'cli'
|
|
|
257
257
|
Requires-Dist: rich>=13.0; extra == 'cli'
|
|
258
258
|
Provides-Extra: database
|
|
259
259
|
Requires-Dist: sqlalchemy>=2.0; extra == 'database'
|
|
260
|
-
Provides-Extra: dev
|
|
261
|
-
Requires-Dist: pytest-asyncio>=0.20; extra == 'dev'
|
|
262
|
-
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
263
|
-
Requires-Dist: ruff; extra == 'dev'
|
|
264
260
|
Provides-Extra: employee-tools
|
|
265
261
|
Requires-Dist: holidays>=0.24; extra == 'employee-tools'
|
|
266
262
|
Provides-Extra: gcs
|
|
@@ -347,13 +343,24 @@ To run Solace Agent Mesh locally, you'll need:
|
|
|
347
343
|
|
|
348
344
|
#### 1. Create a directory for a new project
|
|
349
345
|
```bash
|
|
350
|
-
mkdir my-
|
|
346
|
+
mkdir my-sam && cd my-sam
|
|
351
347
|
```
|
|
352
348
|
#### 2. Create and activate a Python virtual environment
|
|
353
349
|
```bash
|
|
354
350
|
python3 -m venv .venv && source .venv/bin/activate
|
|
355
351
|
```
|
|
356
352
|
#### 3. Install Solace Agent Mesh (SAM)
|
|
353
|
+
Check if you have a version of SAM already installed.
|
|
354
|
+
```bash
|
|
355
|
+
sam -v
|
|
356
|
+
```
|
|
357
|
+
If you have an earlier version, uninstall it and **start from scratch**:
|
|
358
|
+
```bash
|
|
359
|
+
pip3 uninstall solace-agent-mesh
|
|
360
|
+
```
|
|
361
|
+
Note: Optionally, you can try to upgrade versions but this action is not officially supported at this time. (`pip3 install --upgrade solace-agent-mesh`)
|
|
362
|
+
|
|
363
|
+
If no previous version exists, install the latest version with:
|
|
357
364
|
```bash
|
|
358
365
|
pip3 install solace-agent-mesh
|
|
359
366
|
```
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
solace_agent_mesh/__init__.py,sha256=
|
|
1
|
+
solace_agent_mesh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
solace_agent_mesh/llm.txt,sha256=0HhcBA1hHCqzrBtX2HmLeJSqJ3MnQfpwfj5KfD1C3ws,10856
|
|
3
3
|
solace_agent_mesh/llm_detail.txt,sha256=_QmueD2qgzMSn2LhnyAENsLaWtznBF66AlK8uMyYynw,159312
|
|
4
4
|
solace_agent_mesh/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -75,7 +75,7 @@ solace_agent_mesh/common/services/providers/providers_llm.txt,sha256=7y1ZqMWKt5Q
|
|
|
75
75
|
solace_agent_mesh/common/utils/__init__.py,sha256=V4B3mUhsqB_3YYdT_JZepEw32OHf4mhzMR7I8I3aV-8,129
|
|
76
76
|
solace_agent_mesh/common/utils/asyncio_macos_fix.py,sha256=35CBuEX2HSTflDHVWR06_BaM7d_wD8YJ598uQUNS6BE,2846
|
|
77
77
|
solace_agent_mesh/common/utils/in_memory_cache.py,sha256=AGfyZwqJ7wTjeBBgSKsHWH1v4X8FwpyymCgS8FWVgVI,3316
|
|
78
|
-
solace_agent_mesh/common/utils/initializer.py,sha256=
|
|
78
|
+
solace_agent_mesh/common/utils/initializer.py,sha256=I7_BNQXHRv89NU7K8VyqaRdSuKu1mZl-gOa3iDOFA1E,1881
|
|
79
79
|
solace_agent_mesh/common/utils/log_formatters.py,sha256=EV8-ryy9mQgGv8hXipKrdXCuqTLvlPeovaAmMmIU3Sg,1443
|
|
80
80
|
solace_agent_mesh/common/utils/message_utils.py,sha256=MFICU-isggU7LJhev0qCm9n5thlhuc1KZ4mt1tNcKKY,2825
|
|
81
81
|
solace_agent_mesh/common/utils/mime_helpers.py,sha256=lkeNozRUmiYydUKHN1TfjTDaO6MP0Sap5sU36X0efLY,2550
|
|
@@ -127,13 +127,13 @@ solace_agent_mesh/gateway/http_sse/services/agent_service.py,sha256=JgeuZJyysL4k
|
|
|
127
127
|
solace_agent_mesh/gateway/http_sse/services/people_service.py,sha256=PbR6vbImQ95JO7p5fSbraBGsHg84dGVjDz4yd-wbrwg,4596
|
|
128
128
|
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=TDPDqcqQHaoDWmp8kB_7VXeCb1B0w7dSkXtpxpozO74,8084
|
|
129
129
|
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=m_6xMo5TvwMmDVDT18BheegUqCYZjglvc6APXp5JrQ8,4366
|
|
130
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
130
|
+
solace_agent_mesh/cli/__init__.py,sha256=B9kKWJLln1i8LjtkcYecvNWGLTrez4gCUOHtnPlInFo,22
|
|
131
131
|
solace_agent_mesh/cli/main.py,sha256=yFbF4ijz7P6nxj26d-mTC8BnK6NKVnfqPh3y4pDBZqo,831
|
|
132
132
|
solace_agent_mesh/cli/utils.py,sha256=9Tkqn0YZ69eiIL20C7UI-0EakJcvw36c9Z8YopuZrag,5456
|
|
133
133
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
134
|
solace_agent_mesh/cli/commands/docs_cmd.py,sha256=vNXyKADt8RrKnP7wsLaj7fBaz6SUgXMMItygHrohE_Y,1953
|
|
135
135
|
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=yr50DBM3prsGvWmF0tpRA2vnNIpCf5qA3Ec_1nRWLlg,2070
|
|
136
|
-
solace_agent_mesh/cli/commands/run_cmd.py,sha256=
|
|
136
|
+
solace_agent_mesh/cli/commands/run_cmd.py,sha256=ryMCR8cEofAiDXAZxo0VtMWJ_hxhUjZm6gIWBpEbRPg,7651
|
|
137
137
|
solace_agent_mesh/cli/commands/add_cmd/__init__.py,sha256=IGTXUx_AcoinYlzlZtQsjiCYbe76ZiLqxAcGc6-uoDE,280
|
|
138
138
|
solace_agent_mesh/cli/commands/add_cmd/add_cmd_llm.txt,sha256=1vhMQFfKVaHsviqceNW_mEts2B8j2mXBY7Ui1qEspGM,10216
|
|
139
139
|
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=o43Vhz71jeCYfilrC5arH9kJ4w_ZkNKgCwxOVgkfi5U,24276
|
|
@@ -193,11 +193,11 @@ solace_agent_mesh/templates/plugin_tools_template.py,sha256=GUVw556CtBYE6sHbpXnF
|
|
|
193
193
|
solace_agent_mesh/templates/shared_config.yaml,sha256=Wn-w3wFDdHTke0kRQtxGqXuPyh1wX13irvtL-vzTJ0I,3153
|
|
194
194
|
solace_agent_mesh/templates/templates_llm.txt,sha256=T3h8CcIowTbyBedlfRk7FZww8_xGmnY5fEqGhhdI3JU,9234
|
|
195
195
|
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=
|
|
196
|
+
solace_agent_mesh/assets/docs/404.html,sha256=QA3oxeJ38iT57zkg2cYGS-Dyp0z2BFPsz59xub9t10o,11749
|
|
197
|
+
solace_agent_mesh/assets/docs/lunr-index-1755275703209.json,sha256=CNtBiibM5XaLA1qchA9_DrANp3dXfpKCwxGU69evtBQ,918806
|
|
198
|
+
solace_agent_mesh/assets/docs/lunr-index.json,sha256=CNtBiibM5XaLA1qchA9_DrANp3dXfpKCwxGU69evtBQ,918806
|
|
199
|
+
solace_agent_mesh/assets/docs/search-doc-1755275703209.json,sha256=Orq-spYe2yr-TZ-t3lr6wC6yJRLX9WP-fHvDJnbl1LU,316623
|
|
200
|
+
solace_agent_mesh/assets/docs/search-doc.json,sha256=Orq-spYe2yr-TZ-t3lr6wC6yJRLX9WP-fHvDJnbl1LU,316623
|
|
201
201
|
solace_agent_mesh/assets/docs/sitemap.xml,sha256=3Mt_tEKQVSjkWWslf4fLRiLW33iZ7H-ZOF8SlE1l-eU,5884
|
|
202
202
|
solace_agent_mesh/assets/docs/assets/css/styles.906a1503.css,sha256=gQj16ydMLPiq6y-t8Ovto65hsvPbQX6coyIFOja-2eY,83293
|
|
203
203
|
solace_agent_mesh/assets/docs/assets/images/Solace_AI_Framework_With_Broker-85f0a306a9bcdd20b390b7a949f6d862.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
@@ -289,42 +289,42 @@ solace_agent_mesh/assets/docs/assets/js/cee5d587.f5b73ca1.js,sha256=ciDSktNPCP_c
|
|
|
289
289
|
solace_agent_mesh/assets/docs/assets/js/f284c35a.5aff74ab.js,sha256=Zv9gv-tZFSJR718bElFXJMgnDQzM-AtfsbcD_Hd3RrY,18213
|
|
290
290
|
solace_agent_mesh/assets/docs/assets/js/f897a61a.862b0514.js,sha256=hD0AMhMENVR89kBP_tEqVcng2knd7klqNLV0pozLevs,13959
|
|
291
291
|
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.
|
|
292
|
+
solace_agent_mesh/assets/docs/assets/js/main.946fa17b.js,sha256=M14m1E-5ZxOgndRG3mZf16eqK60X92BY5JaOhkbRiZ8,479392
|
|
293
|
+
solace_agent_mesh/assets/docs/assets/js/main.946fa17b.js.LICENSE.txt,sha256=3Jia5o7yaxOtbxuy9khs-thK96m55yCiPaUA-IkWh0A,2069
|
|
294
294
|
solace_agent_mesh/assets/docs/assets/js/runtime~main.aa687c82.js,sha256=sjr4HLlGpw_NjKtIqyM8EQgbDxoG_4lpwaW1s2CaUgA,5990
|
|
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/enterprise/index.html,sha256=
|
|
305
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=
|
|
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=
|
|
295
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=6aoRW07b81aRjOOUBTawqR7AlDEmiMsyyyjzUOnASd8,30787
|
|
296
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=UjF3RokNz7wOVXguEVZhj64r77ejPL5U0wfnwsnoCDw,31979
|
|
297
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=ORMxHO-YgUN3MR--sAvqJ-Jr74gqfQCk-nF72zi4hM8,49428
|
|
298
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=BWRAdomArt2XX67fkSYOUULbvm0Vuxk7Kuh6EDrf0B4,29345
|
|
299
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=sXW_mjhWNy7lCnPVldTrG58_EuhiEuO-UI-zr6mOJIU,23051
|
|
300
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=Yt_e8wO22gOQwmX_egyQek0recD4AhBsHBBr6LHkVV0,33086
|
|
301
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=G_b1HweeD753NuWc_0tjan7DUXXp4ItNmwXAb3Z1fSc,44831
|
|
302
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=2XzaccpWO7HRlXABGmZthyHm9R8n-utZR9ZSLxjlYYs,41745
|
|
303
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=3qvLVADFWWlX_cMGS60Goj86rq2K_g3n5AXSGYzBjUM,25285
|
|
304
|
+
solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html,sha256=R2hqWmzA6aTreA4n1dNkDiIUYGqL63uU3Rs085d2zNQ,17394
|
|
305
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=Vm1lMx3aujRF50AUWFBwxqsJnkzu4qsQAwpAv8ytwSU,20919
|
|
306
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=oF0--6b1RhO304TUWqe_wWXLuFOBuQVCDtXw7u66pfs,31751
|
|
307
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=Ql-ZDAio7MuAcvdDOed4QWMKeXENG8fO2WYAETc1WgE,29667
|
|
308
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=pHstzcyBjP0VEJfP3dtOp6wbr49Kc25eDRyG-i7XhpY,36669
|
|
309
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=WMNnK9QBnobD9zuuy19rUzZKDHebQ7CT3BEGQ3sOhc4,74458
|
|
310
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=L7KHyni283v0EZ6-y3ggqkKWqS6exFtoeIBIWAjgFq8,323959
|
|
311
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=CRFWKBQJVWRWdEfhWKkPSKn_EMTjHWuzbm03GBNe__8,68464
|
|
312
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=keOv9oqbUm1Qzg32sQveE-ES4chg3SXXVkDFv_ubKpA,64232
|
|
313
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=g8i_t_cnkUJt-4VwRlHTjQgGUdgllZWYnRZUpbBGPMQ,86780
|
|
314
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=U3D-5fCN-LL3IbfhwV_bw2E5sI7NAGtFRt1gzuB0tG4,79440
|
|
315
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=9en7rDo5oDLCowP8P8KxLn2R5QMhiTfanr_L9ruUD-w,45907
|
|
316
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=kyAlq5nhHcWbpdA1yO0TtuuvqvYanB47z0ygHwur2tE,49178
|
|
317
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=O1k-ltPKpVONEj-Px04yAUWZiSSD8IxvZ_BOduJ12Tw,68485
|
|
318
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=NXqhoNb7PfDpBchn7zZ9nUdmBNaVpfV0JuHRZ7o1G5M,43835
|
|
319
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=aTT4ZfHEbMbIFEs841vpfL7MYT4jnaaMxYEQWJIyQJc,33847
|
|
320
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=Ahl0jum0glu2_UhCbnjA-20L8ZyAGhfaMVFqBuwTaFA,57386
|
|
321
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=VfzwB3LwbLaWYPiAmJ86ubCQXU9zJGm5L-hKXhehYDs,36851
|
|
322
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=E_3y5ZI8OmuLoNC0z760Pz9YTR9eJy80_SVTWVOQY3g,49659
|
|
323
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=sBCrsklaEO3gAvfy-jp8wjm1TOjyV4JQOwsdgkcQQ3k,154378
|
|
324
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=M3lpm64T71NkdAVJ8NH66GJ44r57giUYi5QniZgHjHo,401884
|
|
325
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=to0PNeKdpFsJlvG589S9A50bGJxO1O-c7wMKszbKdco,58643
|
|
326
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256=B6yR-j_mk0grZbTBUUSXNol6g1BgUE0Pmq7sDMzcaf8,24794
|
|
327
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=Wz6Q98rMkLBvs3U0DvbFNME6mRudChtCIJyLA6Kl83I,28802
|
|
328
328
|
solace_agent_mesh/assets/docs/img/Solace_AI_Framework_With_Broker.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
329
329
|
solace_agent_mesh/assets/docs/img/logo.png,sha256=TdXZ2wnkSkaFrGO-5fy2WcmjGXaGzwE29dM83raxoTg,45439
|
|
330
330
|
solace_agent_mesh/assets/docs/img/sac-flows.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
@@ -358,8 +358,8 @@ solace_agent_mesh/client/webui/frontend/static/assets/client-bp6u3qVZ.js,sha256=
|
|
|
358
358
|
solace_agent_mesh/client/webui/frontend/static/assets/favicon-BLgzUch9.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
359
359
|
solace_agent_mesh/client/webui/frontend/static/assets/main-BCpII1-0.css,sha256=sZ9n2WNmgT7v_YBySB21o_NcX541MlrE5bF8EaS-AHc,116452
|
|
360
360
|
solace_agent_mesh/client/webui/frontend/static/assets/main-DzKPMTRs.js,sha256=GeSNKvUWRNUCY3Q7YGyqWc3TYX32N7NIzwtpvhJiKUA,742284
|
|
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.
|
|
361
|
+
solace_agent_mesh-1.0.5.dist-info/METADATA,sha256=2eK_cIQNMjT7j1eFtx-Ybx9EY3JQBRh0kCqJhTkxywQ,24575
|
|
362
|
+
solace_agent_mesh-1.0.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
363
|
+
solace_agent_mesh-1.0.5.dist-info/entry_points.txt,sha256=5pLVH8d8bd4sxUwBh7VTni8gTTSzTqGfY14zgdQZm1I,106
|
|
364
|
+
solace_agent_mesh-1.0.5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
365
|
+
solace_agent_mesh-1.0.5.dist-info/RECORD,,
|