solace-agent-mesh 1.0.1__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of solace-agent-mesh might be problematic. Click here for more details.
- solace_agent_mesh/__init__.py +5 -0
- solace_agent_mesh/agent/adk/callbacks.py +23 -1
- solace_agent_mesh/agent/adk/filesystem_artifact_service.py +34 -41
- solace_agent_mesh/agent/adk/runner.py +10 -6
- solace_agent_mesh/agent/adk/services.py +141 -60
- solace_agent_mesh/agent/protocol/event_handlers.py +84 -155
- solace_agent_mesh/agent/sac/app.py +12 -2
- solace_agent_mesh/agent/sac/component.py +182 -38
- solace_agent_mesh/agent/sac/task_execution_context.py +15 -6
- solace_agent_mesh/agent/tools/builtin_artifact_tools.py +8 -1
- solace_agent_mesh/agent/tools/general_agent_tools.py +4 -2
- solace_agent_mesh/agent/tools/peer_agent_tool.py +97 -88
- solace_agent_mesh/agent/utils/artifact_helpers.py +148 -14
- solace_agent_mesh/assets/docs/404.html +3 -3
- solace_agent_mesh/assets/docs/assets/js/{04989206.674a8007.js → 04989206.da8246cd.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/1023fc19.8e6d174c.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/1c6e87d2.a8c5ce5a.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{3d406171.f722eaf5.js → 3d406171.9b081d5f.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/75384d09.c3991823.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/9eff14a2.036c35ea.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{aba87c2f.d3e2dcc3.js → aba87c2f.a6b84da6.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/{ae4415af.8e279b5d.js → ae4415af.96189a93.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/b7006a3a.38c0cf3d.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/bb2ef573.56931473.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{cc969b05.954186d4.js → cc969b05.bd3e0d6c.js} +1 -1
- solace_agent_mesh/assets/docs/assets/js/f284c35a.5aff74ab.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/f897a61a.862b0514.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/main.dc7db184.js +2 -0
- solace_agent_mesh/assets/docs/assets/js/runtime~main.aa687c82.js +1 -0
- solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html +8 -6
- solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html +21 -4
- solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html +10 -10
- 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 +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html +140 -0
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html +4 -4
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html +3 -3
- solace_agent_mesh/assets/docs/img/solace-logo-text.svg +18 -0
- solace_agent_mesh/assets/docs/lunr-index-1755120326601.json +1 -0
- solace_agent_mesh/assets/docs/lunr-index.json +1 -1
- solace_agent_mesh/assets/docs/search-doc-1755120326601.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/init_cmd/env_step.py +8 -0
- solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py +21 -1
- solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py +1 -0
- solace_agent_mesh/cli/commands/plugin_cmd/official_registry.py +2 -1
- solace_agent_mesh/cli/commands/run_cmd.py +42 -3
- solace_agent_mesh/cli/main.py +1 -3
- solace_agent_mesh/client/webui/frontend/static/assets/main-BCpII1-0.css +1 -0
- solace_agent_mesh/client/webui/frontend/static/assets/main-DzKPMTRs.js +673 -0
- solace_agent_mesh/client/webui/frontend/static/index.html +2 -2
- solace_agent_mesh/common/exceptions.py +25 -0
- solace_agent_mesh/common/utils/initializer.py +51 -0
- solace_agent_mesh/common/utils/message_utils.py +79 -0
- solace_agent_mesh/config_portal/backend/common.py +1 -1
- solace_agent_mesh/config_portal/backend/plugin_catalog/constants.py +2 -1
- solace_agent_mesh/config_portal/backend/plugin_catalog/registry_manager.py +6 -2
- solace_agent_mesh/config_portal/backend/plugin_catalog/scraper.py +1 -5
- solace_agent_mesh/config_portal/backend/plugin_catalog_server.py +1 -0
- solace_agent_mesh/config_portal/backend/server.py +1 -0
- solace_agent_mesh/config_portal/frontend/static/client/assets/_index-xSu2leR8.js +48 -0
- solace_agent_mesh/config_portal/frontend/static/client/assets/{manifest-d2b54a97.js → manifest-950eb3be.js} +1 -1
- solace_agent_mesh/config_portal/frontend/static/client/index.html +1 -1
- solace_agent_mesh/gateway/base/component.py +15 -2
- solace_agent_mesh/gateway/http_sse/routers/artifacts.py +9 -3
- solace_agent_mesh/gateway/http_sse/sse_manager.py +23 -1
- solace_agent_mesh/templates/gateway_component_template.py +75 -44
- solace_agent_mesh/templates/logging_config_template.ini +64 -0
- solace_agent_mesh/templates/plugin_agent_config_template.yaml +1 -1
- {solace_agent_mesh-1.0.1.dist-info → solace_agent_mesh-1.0.3.dist-info}/METADATA +56 -46
- {solace_agent_mesh-1.0.1.dist-info → solace_agent_mesh-1.0.3.dist-info}/RECORD +102 -96
- solace_agent_mesh/assets/docs/assets/js/1023fc19.015679ca.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/1c6e87d2.23bccffb.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/9eff14a2.1bf8f61c.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/b7006a3a.40b10c9d.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/bb2ef573.207e6990.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/f284c35a.ecc3d195.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/f897a61a.2c2e152c.js +0 -1
- solace_agent_mesh/assets/docs/assets/js/main.7ed3319f.js +0 -2
- solace_agent_mesh/assets/docs/assets/js/runtime~main.d9520ae2.js +0 -1
- solace_agent_mesh/assets/docs/img/Solace_AI_Framework_README.png +0 -0
- solace_agent_mesh/assets/docs/lunr-index-1753813536522.json +0 -1
- solace_agent_mesh/assets/docs/search-doc-1753813536522.json +0 -1
- solace_agent_mesh/client/webui/frontend/static/assets/main-An0a5j5k.js +0 -663
- solace_agent_mesh/client/webui/frontend/static/assets/main-Bu5-4Bac.css +0 -1
- solace_agent_mesh/config_portal/frontend/static/client/assets/_index-DNxCwAGB.js +0 -48
- /solace_agent_mesh/assets/docs/assets/js/{main.7ed3319f.js.LICENSE.txt → main.dc7db184.js.LICENSE.txt} +0 -0
- {solace_agent_mesh-1.0.1.dist-info → solace_agent_mesh-1.0.3.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-1.0.1.dist-info → solace_agent_mesh-1.0.3.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-1.0.1.dist-info → solace_agent_mesh-1.0.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: solace-agent-mesh
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
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
|
|
@@ -247,7 +247,7 @@ Requires-Dist: python-jwt>=3.3
|
|
|
247
247
|
Requires-Dist: python-multipart>=0.0.7
|
|
248
248
|
Requires-Dist: pyyaml>=6.0
|
|
249
249
|
Requires-Dist: rouge~=1.0.1
|
|
250
|
-
Requires-Dist: solace-ai-connector~=1.1.
|
|
250
|
+
Requires-Dist: solace-ai-connector~=1.1.8
|
|
251
251
|
Requires-Dist: sse-starlette>=1.6
|
|
252
252
|
Requires-Dist: toml~=0.10.2
|
|
253
253
|
Requires-Dist: uvicorn[standard]>=0.20
|
|
@@ -300,30 +300,33 @@ Description-Content-Type: text/markdown
|
|
|
300
300
|
|
|
301
301
|
---
|
|
302
302
|
|
|
303
|
-
|
|
303
|
+
**Solace Agent Mesh** is a framework that supports building AI applications where multiple specialized AI agents work together to solve complex problems. It uses the event messaging of [Solace Platform](https://solace.com) for true scalability and reliability.
|
|
304
304
|
|
|
305
|
-
|
|
305
|
+
With Solace Agent Mesh (SAM), you can create teams of AI agents, each having distinct skills and access to specific tools. For example, you could have a Database Agent that can make SQL queries to fetch data or a MultiModal Agent that can help create images, audio files and reports.
|
|
306
306
|
|
|
307
|
-
|
|
308
|
-
|
|
307
|
+
The framework handles the communication between agents automatically, so you can focus on building great AI experiences.
|
|
308
|
+
|
|
309
|
+
SAM creates a standardized communication layer where AI agents can:
|
|
310
|
+
* Delegate tasks to peer agents
|
|
311
|
+
* Share data and artifacts
|
|
309
312
|
* Connect with diverse user interfaces and external systems
|
|
310
|
-
* Execute
|
|
313
|
+
* Execute multi-step workflows with minimal coupling
|
|
314
|
+
|
|
315
|
+
SAM is built on top of the Solace AI Connector (SAC) which allows Solace Platform Event Brokers to connect to AI models and services and Google's Agent Development Kit (ADK) for AI logic and tool integrations.
|
|
311
316
|
|
|
312
|
-
|
|
317
|
+
The result? A fully asynchronous, event-driven and decoupled AI agent architecture ready for production deployment. It is robust, reliable and easy to maintain.
|
|
313
318
|
|
|
314
319
|
---
|
|
315
320
|
|
|
316
|
-
##
|
|
317
|
-
-
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
-
|
|
321
|
-
-
|
|
322
|
-
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
- 🔗 **[Dynamic Embeds](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/embeds)** – Include dynamic placeholders in responses that are resolved by the framework with support for modifier chains.
|
|
326
|
-
- 🤝 **[Agent-to-Agent Communication](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/concepts/architecture)** – Agents can discover and delegate tasks to peer agents using the A2A protocol over Solace.
|
|
321
|
+
## 🔑 Key Features
|
|
322
|
+
- **[Multi-Agent Event-Driven Architecture](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/component-overview)** – Agents communicate via the Solace Event Mesh for true scalability
|
|
323
|
+
- **[Agent Orchestration](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/concepts/agents)** – Complex tasks are automatically broken down and delegated by the [Orchestrator](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/concepts/orchestrator) agent
|
|
324
|
+
- **[Flexible Interfaces](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/concepts/gateways)** – Integrate with REST API, web UI, [Slack](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/tutorials/slack-integration), or build your own integration
|
|
325
|
+
- **[Extensible](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/concepts/plugins)** – Add your own agents, gateways, or services with minimal code
|
|
326
|
+
- **[Agent-to-Agent Communication](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/concepts/architecture)** – Agents can discover and delegate tasks to each other seamlessly using the Agent2Agent (A2A) Protocol
|
|
327
|
+
- **[Dynamic Embeds](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/user-guide/builtin-tools/embeds)** – Embed dynamic content like real-time data, calculations and file contents in responses
|
|
328
|
+
|
|
329
|
+
📚 **Want to know more?** Check out the full Solace Agent Mesh [documentation](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/introduction/).
|
|
327
330
|
|
|
328
331
|
---
|
|
329
332
|
|
|
@@ -342,39 +345,42 @@ To run Solace Agent Mesh locally, you'll need:
|
|
|
342
345
|
|
|
343
346
|
### 💻 Setup Steps
|
|
344
347
|
|
|
348
|
+
#### 1. Create a directory for a new project
|
|
345
349
|
```bash
|
|
346
|
-
# 1. (Optional) Create and activate a Python virtual environment
|
|
347
|
-
python3 -m venv .venv
|
|
348
|
-
source .venv/bin/activate
|
|
349
|
-
|
|
350
|
-
# 2. Install the Solace Agent Mesh
|
|
351
|
-
pip install solace-agent-mesh
|
|
352
|
-
|
|
353
|
-
# 3. Initialize a new project with web-based setup
|
|
354
350
|
mkdir my-agent-mesh && cd my-agent-mesh
|
|
351
|
+
```
|
|
352
|
+
#### 2. Create and activate a Python virtual environment
|
|
353
|
+
```bash
|
|
354
|
+
python3 -m venv .venv && source .venv/bin/activate
|
|
355
|
+
```
|
|
356
|
+
#### 3. Install Solace Agent Mesh (SAM)
|
|
357
|
+
```bash
|
|
358
|
+
pip3 install solace-agent-mesh
|
|
359
|
+
```
|
|
360
|
+
#### 4. Initialize the new project via a GUI interface
|
|
361
|
+
```bash
|
|
355
362
|
sam init --gui
|
|
356
|
-
|
|
357
|
-
|
|
363
|
+
```
|
|
364
|
+
Note: This initialization UI runs on port 5002
|
|
365
|
+
#### 5. Run the project
|
|
366
|
+
```bash
|
|
358
367
|
sam run
|
|
359
368
|
```
|
|
369
|
+
#### 6. Verify SAM is running
|
|
370
|
+
Open the Web UI at [http://localhost:8000](http://localhost:8000) for the chat inteface and ask a question
|
|
360
371
|
|
|
361
|
-
### 🔧
|
|
372
|
+
### 🔧 Customize SAM
|
|
362
373
|
|
|
374
|
+
#### New agents can be added via a GUI interface
|
|
363
375
|
```bash
|
|
364
|
-
# Add a new agent with GUI interface
|
|
365
376
|
sam add agent --gui
|
|
366
377
|
```
|
|
367
378
|
|
|
368
|
-
|
|
369
|
-
|
|
379
|
+
#### Existing plugins can be installed
|
|
370
380
|
```bash
|
|
371
381
|
sam plugin add <your-component-name> --plugin <plugin-name>
|
|
372
382
|
```
|
|
373
383
|
|
|
374
|
-
#### Once running:
|
|
375
|
-
|
|
376
|
-
Open the Web UI at [http://localhost:8000](http://localhost:8000) to talk with a chat interface.
|
|
377
|
-
|
|
378
384
|
---
|
|
379
385
|
|
|
380
386
|
## 🏗️ Architecture Overview
|
|
@@ -385,7 +391,7 @@ The system allows you to:
|
|
|
385
391
|
|
|
386
392
|
- Host AI agents developed with Google ADK within the SAC framework
|
|
387
393
|
- Define agent capabilities (LLM model, instructions, tools) primarily through SAC YAML configuration
|
|
388
|
-
-
|
|
394
|
+
- Use Solace Platform as the transport for standard Agent-to-Agent (A2A) protocol communication
|
|
389
395
|
- Enable dynamic discovery of peer agents running within the same ecosystem
|
|
390
396
|
- Allow agents to delegate tasks to discovered peers via the A2A protocol over Solace
|
|
391
397
|
- Manage file artifacts using built-in tools with automatic metadata injection
|
|
@@ -413,20 +419,24 @@ Want to go further? Here are some hands-on tutorials to help you get started:
|
|
|
413
419
|
| 🧠 **MCP Integration**<br>Integrating a Model Context Protocol (MCP) Servers into Solace Agent Mesh. | **~10–15 min** | [MCP Integration Tutorial](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/tutorials/mcp-integration) |
|
|
414
420
|
| 💬 **Slack Integration**<br>Chat with Solace Agent Mesh directly from Slack. | **~20–30 min** | [Slack Integration Tutorial](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/tutorials/slack-integration) |
|
|
415
421
|
|
|
416
|
-
📚 Want to explore more? Check out the full [Solace Agent Mesh documentation](https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/introduction/).
|
|
417
|
-
|
|
418
422
|
---
|
|
419
423
|
|
|
420
424
|
## 👥 Contributors
|
|
421
425
|
|
|
422
|
-
Solace Agent Mesh is built with the help of our amazing community.
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
+
Solace Agent Mesh is built with the help of our amazing community. Thanks to everyone who has contributed ideas, code and time to make this project better!
|
|
427
|
+
|
|
428
|
+
View the full list of contributors here: [GitHub Contributors](https://github.com/SolaceLabs/solace-agent-mesh/graphs/contributors) 💚
|
|
429
|
+
|
|
430
|
+
**Looking to contribute?** Check out [CONTRIBUTING.md](CONTRIBUTING.md) to get started and see how you can help!
|
|
426
431
|
|
|
427
432
|
---
|
|
428
433
|
|
|
429
434
|
## 📄 License
|
|
430
435
|
|
|
431
|
-
This project is licensed under the **Apache 2.0 License**.
|
|
432
|
-
|
|
436
|
+
This project is licensed under the **Apache 2.0 License**. See the full license text in the [LICENSE](LICENSE) file.
|
|
437
|
+
|
|
438
|
+
---
|
|
439
|
+
|
|
440
|
+
<h3 align="center">
|
|
441
|
+
<img src="./docs/static/img/solace-logo-text.svg" alt="Solace Agent Mesh Logo" width="100"/>
|
|
442
|
+
</h3>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
solace_agent_mesh/__init__.py,sha256=
|
|
1
|
+
solace_agent_mesh/__init__.py,sha256=20a0cWH3TAY8kKQDUoCMFQJCkPIayPTgKg8HAw7tHiw,103
|
|
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
|
|
@@ -6,42 +6,42 @@ solace_agent_mesh/agent/agent_llm.txt,sha256=TkY3Tjha7vOpyv0t3JPtc73VW-5G-lB-4EC
|
|
|
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/filesystem_artifact_service.py,sha256=
|
|
9
|
+
solace_agent_mesh/agent/adk/callbacks.py,sha256=-PCMdI4nzyRgNRLtfAYmB-L1LcmOJ3NvmV40yKwLb9I,70544
|
|
10
|
+
solace_agent_mesh/agent/adk/filesystem_artifact_service.py,sha256=hH6rP6Vw-gqzOBHVIyGuhxDg5l2vtwXCxAp4dDd3YEE,13628
|
|
11
11
|
solace_agent_mesh/agent/adk/invocation_monitor.py,sha256=_20-nQXVjGlAEyw9PLFTTvgti-WgqyNE58LPUELUWnA,11671
|
|
12
|
-
solace_agent_mesh/agent/adk/runner.py,sha256=
|
|
13
|
-
solace_agent_mesh/agent/adk/services.py,sha256=
|
|
12
|
+
solace_agent_mesh/agent/adk/runner.py,sha256=TTnyz-xGXcVseKo4TkZMZYS6BjYYBHBWocYg3RYmqcI,12757
|
|
13
|
+
solace_agent_mesh/agent/adk/services.py,sha256=8uscr6YsQvXGSnZnaa92KmIhEwvdI42Gb0J46yngPq4,11186
|
|
14
14
|
solace_agent_mesh/agent/adk/setup.py,sha256=OGjWs4pyUt4zoqgvSj8AyjS-Bp46qleVeT1v_ktw_zY,30445
|
|
15
15
|
solace_agent_mesh/agent/adk/stream_parser.py,sha256=6eMapFRV9nF8m4pRzfnOpykzK3OF3p6NkgWZvNwTt20,8071
|
|
16
16
|
solace_agent_mesh/agent/adk/tool_wrapper.py,sha256=eA-Cxeuw080HQlrZiRozHXqEHsYcwByWXQACouB_7kU,5602
|
|
17
17
|
solace_agent_mesh/agent/adk/models/lite_llm.py,sha256=Enia0uFs2epagavdaCWNnvMFIL7VxRuo0A6mYBQZGWQ,30325
|
|
18
18
|
solace_agent_mesh/agent/adk/models/models_llm.txt,sha256=eIotHOFSg9h1_pvr1qNuQoPWBSm26XNSWTn8SXzm5kg,4598
|
|
19
19
|
solace_agent_mesh/agent/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=
|
|
20
|
+
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=TP9FRU_NSozBe-aGVypYaJSReoIF_ixDNWX48BMLj50,62422
|
|
21
21
|
solace_agent_mesh/agent/protocol/protocol_llm.txt,sha256=fZrqfT7avWZR4y_kcSgCh7hlayA6fMCgUvq3emKPtDc,1570
|
|
22
22
|
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=
|
|
23
|
+
solace_agent_mesh/agent/sac/app.py,sha256=A-uOGCwO6T9hoBbC-y56wxkOrJRbuEDtAAQEqJ5WlLk,29506
|
|
24
|
+
solace_agent_mesh/agent/sac/component.py,sha256=KTYpRtmJjD_UWEE30ILrowWjp0ER-7rxEgdPYTngcMo,145019
|
|
25
25
|
solace_agent_mesh/agent/sac/patch_adk.py,sha256=LQhPvwpEVeeDVUgZD-p8CTxft-jRv_OadMR-gR1uTXk,4266
|
|
26
26
|
solace_agent_mesh/agent/sac/sac_llm.txt,sha256=xOYAScW1Xe651JvZi4LkxRMWlsLCJevVi9hstUKjwfw,8454
|
|
27
|
-
solace_agent_mesh/agent/sac/task_execution_context.py,sha256=
|
|
27
|
+
solace_agent_mesh/agent/sac/task_execution_context.py,sha256=EpX6IWUtlv9ot9aW4_5bjEctJXd-O5Ozmq-FsJE9MBU,7663
|
|
28
28
|
solace_agent_mesh/agent/testing/__init__.py,sha256=Jo_gILQRyefq52v4zYml91xf04lduzam-2fwgNwuAy4,64
|
|
29
29
|
solace_agent_mesh/agent/testing/debug_utils.py,sha256=-nNJUs8aeRnEFbG0ZrXL3-FFcCDKC_-7KXViwp6fLqw,4972
|
|
30
30
|
solace_agent_mesh/agent/testing/testing_llm.txt,sha256=idez5-8jmbzRLCeHf22b7kgRPz6hez846BbJusSYYFM,3457
|
|
31
31
|
solace_agent_mesh/agent/tools/__init__.py,sha256=OKsqMddhk9q2DA8Jp3SOEcbOwa3QBsP4tDDsY4aVgAg,473
|
|
32
32
|
solace_agent_mesh/agent/tools/audio_tools.py,sha256=LOjfD2tTsYanIbntpysX4gQZ1e8NHqmv_yQ7iHitvyQ,59717
|
|
33
|
-
solace_agent_mesh/agent/tools/builtin_artifact_tools.py,sha256=
|
|
33
|
+
solace_agent_mesh/agent/tools/builtin_artifact_tools.py,sha256=4zUqrPlBfIz2N3sAZXzk-ZmUCyRqA3-qmnTm3vaCcx4,77526
|
|
34
34
|
solace_agent_mesh/agent/tools/builtin_data_analysis_tools.py,sha256=nII4SNDYFt1QaHtXpcoFr3mIg3n1QXTNJfm3VQDD394,8767
|
|
35
|
-
solace_agent_mesh/agent/tools/general_agent_tools.py,sha256=
|
|
35
|
+
solace_agent_mesh/agent/tools/general_agent_tools.py,sha256=7ygxOwOMacWv7oMQumbIG4XEn3UwRWTSBDuutZPFKj8,21959
|
|
36
36
|
solace_agent_mesh/agent/tools/image_tools.py,sha256=sLIO-d4006CqJ-YaGYsE-1sfDTMCfI0foPLHieaaFZg,47968
|
|
37
|
-
solace_agent_mesh/agent/tools/peer_agent_tool.py,sha256=
|
|
37
|
+
solace_agent_mesh/agent/tools/peer_agent_tool.py,sha256=ECd3pGOYGpg7YL7olMzXX-EdjaPI9tmcSYuENlBJf40,12127
|
|
38
38
|
solace_agent_mesh/agent/tools/registry.py,sha256=A4I1RbvQ0b-AFyH4d_vpdAjE3mtoWV_OrObVW3isZbI,1208
|
|
39
39
|
solace_agent_mesh/agent/tools/test_tools.py,sha256=Bu5nueLX1YFxUFJC2jeG5y3z_s1B3KwqkRAo4TKl4YI,4217
|
|
40
40
|
solace_agent_mesh/agent/tools/tool_definition.py,sha256=QFgKAZy-3GAmAG_q5XG9gduQRr6uF3ZEo-H05PY1C6s,1690
|
|
41
41
|
solace_agent_mesh/agent/tools/tools_llm.txt,sha256=PEnUFoYYwmf0RnPpnH5ibb8Qfg8KSD1SFfZNnbL_2lM,7121
|
|
42
42
|
solace_agent_mesh/agent/tools/web_tools.py,sha256=fS3GwqJmORMx0efrJmU9tij_tqUKG8JlAbaUzYhEaQY,15187
|
|
43
43
|
solace_agent_mesh/agent/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
solace_agent_mesh/agent/utils/artifact_helpers.py,sha256=
|
|
44
|
+
solace_agent_mesh/agent/utils/artifact_helpers.py,sha256=PXyBbFPKyUccPCgGcmqGZWePcR-Sf5i8kvIbO5kQbPY,40710
|
|
45
45
|
solace_agent_mesh/agent/utils/config_parser.py,sha256=pElDc96YftH3rdBaMCmHDdzPkAEx_kGkU0FrcztKP9E,1665
|
|
46
46
|
solace_agent_mesh/agent/utils/context_helpers.py,sha256=jWKY5Kpy2KWTYMz4G5AOi8VIu3IbD1LdStpI7j5y-bU,2075
|
|
47
47
|
solace_agent_mesh/agent/utils/utils_llm.txt,sha256=v2pjxLwvDnexUHqKkGR-nf2ZMexxZ4qrOPFgwpL_wVI,9307
|
|
@@ -50,6 +50,7 @@ solace_agent_mesh/common/a2a_protocol.py,sha256=MP1h4Sci0zxfFsTZ2Zy5BLc_ssXJHoRm
|
|
|
50
50
|
solace_agent_mesh/common/agent_registry.py,sha256=Ddsw1X57vmInrnhDUqXNRqbi-T1i1rr_3XS6UWCvTkQ,1269
|
|
51
51
|
solace_agent_mesh/common/common_llm.txt,sha256=-Vq_9TF7yoyMyqPrspZsOau401gt8Dd0d_SfnmUV0m4,9245
|
|
52
52
|
solace_agent_mesh/common/constants.py,sha256=2lImuxA2sxiS38RNQ4-i1BAwPmekPRnKrhPG4hkJjdE,51
|
|
53
|
+
solace_agent_mesh/common/exceptions.py,sha256=or9OTXM587Ij5yXlF4fagwqXUcRPPDFNX852GPZk09Y,845
|
|
53
54
|
solace_agent_mesh/common/types.py,sha256=R0CktzIkE9y2uenKCzhZswJ8DOMwaoDWxIeCTvwPwvw,10267
|
|
54
55
|
solace_agent_mesh/common/client/__init__.py,sha256=V8lbSEpOWNM2XjG5ky7NIUM0Q2HZTexzL3I8WqZfo-w,117
|
|
55
56
|
solace_agent_mesh/common/client/card_resolver.py,sha256=Q36sujpDkPgEwHHoXZABKdQGfLJ8YfCza1FPoDHC7zw,674
|
|
@@ -74,7 +75,9 @@ solace_agent_mesh/common/services/providers/providers_llm.txt,sha256=7y1ZqMWKt5Q
|
|
|
74
75
|
solace_agent_mesh/common/utils/__init__.py,sha256=V4B3mUhsqB_3YYdT_JZepEw32OHf4mhzMR7I8I3aV-8,129
|
|
75
76
|
solace_agent_mesh/common/utils/asyncio_macos_fix.py,sha256=35CBuEX2HSTflDHVWR06_BaM7d_wD8YJ598uQUNS6BE,2846
|
|
76
77
|
solace_agent_mesh/common/utils/in_memory_cache.py,sha256=AGfyZwqJ7wTjeBBgSKsHWH1v4X8FwpyymCgS8FWVgVI,3316
|
|
78
|
+
solace_agent_mesh/common/utils/initializer.py,sha256=qLOInktGtPW-1YDpCciE7Q5ddi8UXGH1a9jPX0qyK04,1866
|
|
77
79
|
solace_agent_mesh/common/utils/log_formatters.py,sha256=EV8-ryy9mQgGv8hXipKrdXCuqTLvlPeovaAmMmIU3Sg,1443
|
|
80
|
+
solace_agent_mesh/common/utils/message_utils.py,sha256=MFICU-isggU7LJhev0qCm9n5thlhuc1KZ4mt1tNcKKY,2825
|
|
78
81
|
solace_agent_mesh/common/utils/mime_helpers.py,sha256=lkeNozRUmiYydUKHN1TfjTDaO6MP0Sap5sU36X0efLY,2550
|
|
79
82
|
solace_agent_mesh/common/utils/push_notification_auth.py,sha256=Jp3W2cqNQK6Q27dLGo2bzCOQcwp23TkgkAcb5CckdAo,4622
|
|
80
83
|
solace_agent_mesh/common/utils/utils_llm.txt,sha256=6b2N7eWw75MrLdgccVjzaMGA2XG8p6JORQZ_8f0u4G0,5112
|
|
@@ -94,7 +97,7 @@ solace_agent_mesh/gateway/gateway_llm.txt,sha256=5WsgJLAOL7qKPGdRU5RBCOplQ-LNZYX
|
|
|
94
97
|
solace_agent_mesh/gateway/base/__init__.py,sha256=lOpIGp8W2rFNpLxfpk3VKLA-dBqxwtMxMVlhbaCisJY,72
|
|
95
98
|
solace_agent_mesh/gateway/base/app.py,sha256=0WLi_JjeHl3H_G77Gctpii7fxdyHnpre0rl1pMiqVEg,10004
|
|
96
99
|
solace_agent_mesh/gateway/base/base_llm.txt,sha256=FnI25AJQn0-yyULqGTcgIz9hFfw3JsB0e60Q1df5eYc,7725
|
|
97
|
-
solace_agent_mesh/gateway/base/component.py,sha256=
|
|
100
|
+
solace_agent_mesh/gateway/base/component.py,sha256=Tl0g7kPITKIKsP6DTwKgMRBKWAN5AnZs5EPbaxUAFjI,63189
|
|
98
101
|
solace_agent_mesh/gateway/base/task_context.py,sha256=sFRRHyvBij-xms1f_VFc8om8-xIpRZawIctWtdmi6QY,2446
|
|
99
102
|
solace_agent_mesh/gateway/http_sse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
103
|
solace_agent_mesh/gateway/http_sse/app.py,sha256=4KVkSdQHf8-s5y8HgoadxGwDOOSX17vVWEuUuMzMlEA,6484
|
|
@@ -103,13 +106,13 @@ solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=Wjbc5Fidr7k-cJaaV7F9ql
|
|
|
103
106
|
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=OjZwB6PGUkMX7Yfc5iYIFRSyKRxk5LAIefCDEBAv-Fk,5455
|
|
104
107
|
solace_agent_mesh/gateway/http_sse/main.py,sha256=1bfLVN4CIY4RUDYsj97lEeaxU8lYPpelAmMuGKJyaZU,17250
|
|
105
108
|
solace_agent_mesh/gateway/http_sse/session_manager.py,sha256=bHFWcmvavhBTDTiTRhD4WCX1tKLO3_tylaYV_wEnDP8,7424
|
|
106
|
-
solace_agent_mesh/gateway/http_sse/sse_manager.py,sha256=
|
|
109
|
+
solace_agent_mesh/gateway/http_sse/sse_manager.py,sha256=c51QIm80Q1G8aOzimk06ZaOH9wv2bl_WREP1GqevLZk,13507
|
|
107
110
|
solace_agent_mesh/gateway/http_sse/components/__init__.py,sha256=zSidQziYjSrjX5XXXbyBAJ7pgKr0Efy6RXiJiufdq0Q,186
|
|
108
111
|
solace_agent_mesh/gateway/http_sse/components/components_llm.txt,sha256=SVcC-vB2AeNZKGXS-rX8m_nCjbBJ9oejh0jMmemDrFw,3428
|
|
109
112
|
solace_agent_mesh/gateway/http_sse/components/visualization_forwarder_component.py,sha256=oHVnv4DK-nP9Mbp6i6CSJ63Ch6lx4epE3Cn0dn3BndQ,3941
|
|
110
113
|
solace_agent_mesh/gateway/http_sse/routers/__init__.py,sha256=WxRX__xU4YIYhvjN0DTY9XdNYAB9dP81pabwiB23YSo,133
|
|
111
114
|
solace_agent_mesh/gateway/http_sse/routers/agents.py,sha256=8ErcV6Mjp438QNbvUeF3i4HQLyauyCT7ke-QKRGSgKM,1275
|
|
112
|
-
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=
|
|
115
|
+
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=a-8jnPnGd3a-MU_w3eoYQZZ6Wy67sXp7jDeDcsPpDNM,31176
|
|
113
116
|
solace_agent_mesh/gateway/http_sse/routers/auth.py,sha256=LcgF45H7AGVPabFLdHcrEqSndadlpx6WbOdBY_l96X8,7201
|
|
114
117
|
solace_agent_mesh/gateway/http_sse/routers/config.py,sha256=je0GJbGvNXyK5D5EYEDHZPKJqNaR-rkYOQtdfB3-6oA,1903
|
|
115
118
|
solace_agent_mesh/gateway/http_sse/routers/people.py,sha256=O2NvV6LD3g9vFXN31yUHKTgkzY1RVW5RDfQq_IP5Q14,2041
|
|
@@ -124,13 +127,13 @@ solace_agent_mesh/gateway/http_sse/services/agent_service.py,sha256=JgeuZJyysL4k
|
|
|
124
127
|
solace_agent_mesh/gateway/http_sse/services/people_service.py,sha256=PbR6vbImQ95JO7p5fSbraBGsHg84dGVjDz4yd-wbrwg,4596
|
|
125
128
|
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=TDPDqcqQHaoDWmp8kB_7VXeCb1B0w7dSkXtpxpozO74,8084
|
|
126
129
|
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=m_6xMo5TvwMmDVDT18BheegUqCYZjglvc6APXp5JrQ8,4366
|
|
127
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
128
|
-
solace_agent_mesh/cli/main.py,sha256=
|
|
130
|
+
solace_agent_mesh/cli/__init__.py,sha256=2plzdEEb24FLjE2I2XyBBcJEPYWHccNL4SgtLC_6erg,22
|
|
131
|
+
solace_agent_mesh/cli/main.py,sha256=yFbF4ijz7P6nxj26d-mTC8BnK6NKVnfqPh3y4pDBZqo,831
|
|
129
132
|
solace_agent_mesh/cli/utils.py,sha256=9Tkqn0YZ69eiIL20C7UI-0EakJcvw36c9Z8YopuZrag,5456
|
|
130
133
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
134
|
solace_agent_mesh/cli/commands/docs_cmd.py,sha256=vNXyKADt8RrKnP7wsLaj7fBaz6SUgXMMItygHrohE_Y,1953
|
|
132
135
|
solace_agent_mesh/cli/commands/eval_cmd.py,sha256=yr50DBM3prsGvWmF0tpRA2vnNIpCf5qA3Ec_1nRWLlg,2070
|
|
133
|
-
solace_agent_mesh/cli/commands/run_cmd.py,sha256=
|
|
136
|
+
solace_agent_mesh/cli/commands/run_cmd.py,sha256=Aw1XIZuZ-hcBuiXTSOi4Af-uz4pmyUktqtTIy6qLaAQ,7520
|
|
134
137
|
solace_agent_mesh/cli/commands/add_cmd/__init__.py,sha256=IGTXUx_AcoinYlzlZtQsjiCYbe76ZiLqxAcGc6-uoDE,280
|
|
135
138
|
solace_agent_mesh/cli/commands/add_cmd/add_cmd_llm.txt,sha256=1vhMQFfKVaHsviqceNW_mEts2B8j2mXBY7Ui1qEspGM,10216
|
|
136
139
|
solace_agent_mesh/cli/commands/add_cmd/agent_cmd.py,sha256=o43Vhz71jeCYfilrC5arH9kJ4w_ZkNKgCwxOVgkfi5U,24276
|
|
@@ -140,18 +143,18 @@ solace_agent_mesh/cli/commands/add_cmd/web_add_gateway_step.py,sha256=1p7GNFJeAH
|
|
|
140
143
|
solace_agent_mesh/cli/commands/init_cmd/__init__.py,sha256=6cMAKDXFD-Bll3_gfYhDauMtP38r9G12hHeSadCusjg,14097
|
|
141
144
|
solace_agent_mesh/cli/commands/init_cmd/broker_step.py,sha256=FzY7yqRDZqy_B7lXWQvb8OLoOULPlt8cI-VxuzaNSUU,7010
|
|
142
145
|
solace_agent_mesh/cli/commands/init_cmd/directory_step.py,sha256=3uPZybhDh84vtXqFfck4__6Dbi9LdqXqs0nRjP3VApY,862
|
|
143
|
-
solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=
|
|
146
|
+
solace_agent_mesh/cli/commands/init_cmd/env_step.py,sha256=z1Pkn6bnNRMZHQ8Vau-vR5VLIDmkW9V23MhONCsk5IA,6164
|
|
144
147
|
solace_agent_mesh/cli/commands/init_cmd/init_cmd_llm.txt,sha256=7atW7HTy_2XQ3UoPttgIlyIF4_Du2068rqZE2imaHP8,13226
|
|
145
|
-
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=
|
|
148
|
+
solace_agent_mesh/cli/commands/init_cmd/orchestrator_step.py,sha256=dd210sdq1ekohL7XSEqJuJcZPgInw_3LkEakwk1dsvc,16145
|
|
146
149
|
solace_agent_mesh/cli/commands/init_cmd/project_files_step.py,sha256=bOh7yYuaXIIs0q3-nd1nSVc6P6g6EHoDJjFDlKZVnf4,1352
|
|
147
150
|
solace_agent_mesh/cli/commands/init_cmd/web_init_step.py,sha256=2iJTmZfwQv2FRILfHmtZEngB1ePDhll7da_UcnGJMlE,3470
|
|
148
151
|
solace_agent_mesh/cli/commands/init_cmd/webui_gateway_step.py,sha256=l9rGIEHKEDro7pgTLUlFfPYt3sMrYQ8ly4FJvIJA9Ls,6969
|
|
149
152
|
solace_agent_mesh/cli/commands/plugin_cmd/__init__.py,sha256=10F21lMHH6qBvzHcprntMChBAI8cL4wLj6_vSKe8hV0,495
|
|
150
153
|
solace_agent_mesh/cli/commands/plugin_cmd/add_cmd.py,sha256=G-MJEGwX7saxIeEVMFMX01_h-OTttAUb-5RXDW8st1M,14435
|
|
151
154
|
solace_agent_mesh/cli/commands/plugin_cmd/build_cmd.py,sha256=OzEO2lsezlIZe29jWiR08ajQeDEP1cYqrWaMSd8i8o4,2988
|
|
152
|
-
solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py,sha256=
|
|
155
|
+
solace_agent_mesh/cli/commands/plugin_cmd/catalog_cmd.py,sha256=6Usg_UhXs2HgfA-LnrGnPMF-BmUqz0TimuMd5ElBiXo,4984
|
|
153
156
|
solace_agent_mesh/cli/commands/plugin_cmd/create_cmd.py,sha256=_J89BbmpamasxM7guD5WZn8ZmHKyT5gaCA9hOTS8a1c,11906
|
|
154
|
-
solace_agent_mesh/cli/commands/plugin_cmd/official_registry.py,sha256=
|
|
157
|
+
solace_agent_mesh/cli/commands/plugin_cmd/official_registry.py,sha256=rnzQq3LDvSzvCPoEhoSn6M3xQG4AVLd54PX9cA5GzPg,5218
|
|
155
158
|
solace_agent_mesh/cli/commands/plugin_cmd/plugin_cmd_llm.txt,sha256=-CS4uY1OrPSXDm8cxyrBAv6yLrP5P-GTzyeaZFqaHsM,10967
|
|
156
159
|
solace_agent_mesh/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
160
|
solace_agent_mesh/evaluation/config_loader.py,sha256=gmTqvLqcYnahwJODjCjUQBBAQ3L7iV7MVJAJf1A-5JI,23117
|
|
@@ -176,10 +179,11 @@ solace_agent_mesh/evaluation/report/templates/header.html,sha256=XP11gY77aoNWrI5
|
|
|
176
179
|
solace_agent_mesh/templates/agent_template.yaml,sha256=m3sWJQRgWz-srlFKQrmOQC82lFLXJ_vVNEz_e78FqLs,1620
|
|
177
180
|
solace_agent_mesh/templates/eval_backend_template.yaml,sha256=bWAgyXPc4mQot7IWlPa0_O5eGQcQ-Mg_DZzQW6fOrP4,1866
|
|
178
181
|
solace_agent_mesh/templates/gateway_app_template.py,sha256=ClzRjowVTdov9azuPy62AICLd5GuhBHIxlbayeW8oUU,3031
|
|
179
|
-
solace_agent_mesh/templates/gateway_component_template.py,sha256=
|
|
182
|
+
solace_agent_mesh/templates/gateway_component_template.py,sha256=trreZwOFujxkPU6qoKAOxoeg-vHldw9iE2AIw5keQiY,22096
|
|
180
183
|
solace_agent_mesh/templates/gateway_config_template.yaml,sha256=sSDJ5C1BO4lTVuRMnCUr6qQTq8BXLUIJrJZrGH7J_0A,1289
|
|
184
|
+
solace_agent_mesh/templates/logging_config_template.ini,sha256=FggFniB1XZ23CG2lF7Y_3VTey2-9nlXIssFvevXtcSw,1275
|
|
181
185
|
solace_agent_mesh/templates/main_orchestrator.yaml,sha256=Ig4DwYViFXN-1KFn1gR5CVIEeK0dbC8PxfNz5bFqFAE,1757
|
|
182
|
-
solace_agent_mesh/templates/plugin_agent_config_template.yaml,sha256=
|
|
186
|
+
solace_agent_mesh/templates/plugin_agent_config_template.yaml,sha256=uriYuGHwV6B283vbxkW9dYXuIueYlEzJ6h7khtn9Llg,4469
|
|
183
187
|
solace_agent_mesh/templates/plugin_custom_config_template.yaml,sha256=5LXQeNoTq6dz2XyRa6_pTZCPQsPO27MF2kHEK8_sv9U,1117
|
|
184
188
|
solace_agent_mesh/templates/plugin_custom_template.py,sha256=-c7JD_AGfgBqatPMvJBpSDaiwKp5LsbjrKn_sDSAy_4,360
|
|
185
189
|
solace_agent_mesh/templates/plugin_gateway_config_template.yaml,sha256=JmVLdW3Qoqa0qORNlU8WyVe5FMnQL6FSoZNt65C4IFI,2500
|
|
@@ -189,20 +193,20 @@ solace_agent_mesh/templates/plugin_tools_template.py,sha256=GUVw556CtBYE6sHbpXnF
|
|
|
189
193
|
solace_agent_mesh/templates/shared_config.yaml,sha256=Wn-w3wFDdHTke0kRQtxGqXuPyh1wX13irvtL-vzTJ0I,3153
|
|
190
194
|
solace_agent_mesh/templates/templates_llm.txt,sha256=T3h8CcIowTbyBedlfRk7FZww8_xGmnY5fEqGhhdI3JU,9234
|
|
191
195
|
solace_agent_mesh/templates/webui.yaml,sha256=WJV06elz6A31rLOnQK-0axXpVUY1BcH490A59DM4Og0,1976
|
|
192
|
-
solace_agent_mesh/assets/docs/404.html,sha256=
|
|
193
|
-
solace_agent_mesh/assets/docs/lunr-index-
|
|
194
|
-
solace_agent_mesh/assets/docs/lunr-index.json,sha256=
|
|
195
|
-
solace_agent_mesh/assets/docs/search-doc-
|
|
196
|
-
solace_agent_mesh/assets/docs/search-doc.json,sha256=
|
|
197
|
-
solace_agent_mesh/assets/docs/sitemap.xml,sha256=
|
|
196
|
+
solace_agent_mesh/assets/docs/404.html,sha256=VpnGuWybYcx6WgSj8IP_Y3oUQfwJg5k4BWSKwMrno3M,11749
|
|
197
|
+
solace_agent_mesh/assets/docs/lunr-index-1755120326601.json,sha256=MyBj_lzUw3et_mW96dpg8ZYDG0zj8skAAwSGssHHGNc,918117
|
|
198
|
+
solace_agent_mesh/assets/docs/lunr-index.json,sha256=MyBj_lzUw3et_mW96dpg8ZYDG0zj8skAAwSGssHHGNc,918117
|
|
199
|
+
solace_agent_mesh/assets/docs/search-doc-1755120326601.json,sha256=hGGO5o2Tozj7Uwv5rG_I4oxZOMoXFrSYUWYQgJCRcsg,316623
|
|
200
|
+
solace_agent_mesh/assets/docs/search-doc.json,sha256=hGGO5o2Tozj7Uwv5rG_I4oxZOMoXFrSYUWYQgJCRcsg,316623
|
|
201
|
+
solace_agent_mesh/assets/docs/sitemap.xml,sha256=3Mt_tEKQVSjkWWslf4fLRiLW33iZ7H-ZOF8SlE1l-eU,5884
|
|
198
202
|
solace_agent_mesh/assets/docs/assets/css/styles.906a1503.css,sha256=gQj16ydMLPiq6y-t8Ovto65hsvPbQX6coyIFOja-2eY,83293
|
|
199
203
|
solace_agent_mesh/assets/docs/assets/images/Solace_AI_Framework_With_Broker-85f0a306a9bcdd20b390b7a949f6d862.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
200
204
|
solace_agent_mesh/assets/docs/assets/images/sac-flows-80d5b603c6aafd33e87945680ce0abf3.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
201
205
|
solace_agent_mesh/assets/docs/assets/images/sac_parts_of_a_component-cb3d0424b1d0c17734c5435cca6b4082.png,sha256=Z7-TCXxDC2fd6iZ3Lkr-F3OHhqr6m_glnzVIcwUhv4k,12283
|
|
202
|
-
solace_agent_mesh/assets/docs/assets/js/04989206.
|
|
206
|
+
solace_agent_mesh/assets/docs/assets/js/04989206.da8246cd.js,sha256=QXCtpD87OaULCcHfFoZcpdvVn8Rg_Vi8gB2KZzWE71k,10855
|
|
203
207
|
solace_agent_mesh/assets/docs/assets/js/0e682baa.79f0ab22.js,sha256=vo_dqufQVVowYq2tZCytKkpk8i9yk6fWfifH61Wt7f0,12563
|
|
204
208
|
solace_agent_mesh/assets/docs/assets/js/1001.0182a8bd.js,sha256=wnldyGaqrut3ES6Q5UDpRGsaNwlX_JoL2FDB_f7_hBI,90563
|
|
205
|
-
solace_agent_mesh/assets/docs/assets/js/1023fc19.
|
|
209
|
+
solace_agent_mesh/assets/docs/assets/js/1023fc19.8e6d174c.js,sha256=58mb_BDq1CBDhkAq-KHu7id2jaqJRk4JNlBSEoz_hyI,14653
|
|
206
210
|
solace_agent_mesh/assets/docs/assets/js/1039.0bd46aa1.js,sha256=3gOxMCGWPNyBymsv8WkRfDuOlc7UZ1c9c794Q7gmNyQ,71713
|
|
207
211
|
solace_agent_mesh/assets/docs/assets/js/149.b797a808.js,sha256=BZRazTFuXMaIQkDiXM1Sq9J3QgYa2HJuuJCCs8gQz3w,438
|
|
208
212
|
solace_agent_mesh/assets/docs/assets/js/1523c6b4.91c7bc01.js,sha256=v1ogoUmCROoFUInhPWfBGgkXUGnoZp1eo6Et_Hw1Lcc,16598
|
|
@@ -211,7 +215,7 @@ solace_agent_mesh/assets/docs/assets/js/165.6a39807d.js.LICENSE.txt,sha256=QX5Nn
|
|
|
211
215
|
solace_agent_mesh/assets/docs/assets/js/166ab619.7d97ccaf.js,sha256=dFY8Ty4pwsdzI0ppJWh4B4Aht2VaQg55faxiSO8HO5A,17657
|
|
212
216
|
solace_agent_mesh/assets/docs/assets/js/17896441.a5e82f9b.js,sha256=tVREW18iBlO-P7JNPvgX1-RR8tnFAoLarHSSTNAYfTw,568073
|
|
213
217
|
solace_agent_mesh/assets/docs/assets/js/17896441.a5e82f9b.js.LICENSE.txt,sha256=WX8R_ZUDUISsiSypR5LNXXo_QEtn2JZPIpsBgCIh88Y,322
|
|
214
|
-
solace_agent_mesh/assets/docs/assets/js/1c6e87d2.
|
|
218
|
+
solace_agent_mesh/assets/docs/assets/js/1c6e87d2.a8c5ce5a.js,sha256=wW7iqWNvRJItcPvkT0Js2Y9BcAp1SglpvR3u2KvUNmU,11812
|
|
215
219
|
solace_agent_mesh/assets/docs/assets/js/2130.ab9fd314.js,sha256=t_AtyiW0eu0qFLk4hnlJEofpadh7m6lgEqDgP46V4D0,274059
|
|
216
220
|
solace_agent_mesh/assets/docs/assets/js/21ceee5f.614fa8dd.js,sha256=krQDNWm8PFrU7-d9KMjSRKu1LEAVTXPipC6y8byLulo,5547
|
|
217
221
|
solace_agent_mesh/assets/docs/assets/js/2237.5e477fc6.js,sha256=zW8HJtjPXRUHEgvhkLqqI6USE-FyQKRQlozKw4eDVec,1309
|
|
@@ -222,7 +226,7 @@ solace_agent_mesh/assets/docs/assets/js/332e10b5.7a103f42.js,sha256=5vrtNVDFX-_x
|
|
|
222
226
|
solace_agent_mesh/assets/docs/assets/js/3624.b524e433.js,sha256=cmS9btCBUGcxCToTFwQeBROmuScAVaIaaRXiMgvRvvg,14839
|
|
223
227
|
solace_agent_mesh/assets/docs/assets/js/375.708d48db.js,sha256=tnoRKYgl89ieY_0s8NeHjMy9gQvpDQPo5q6kfr5zNt0,4319
|
|
224
228
|
solace_agent_mesh/assets/docs/assets/js/3834.b6cd790e.js,sha256=LuFdgiur49yMqtwnhUN7ECJ2lPvBaWdDam3OANM5WcM,196
|
|
225
|
-
solace_agent_mesh/assets/docs/assets/js/3d406171.
|
|
229
|
+
solace_agent_mesh/assets/docs/assets/js/3d406171.9b081d5f.js,sha256=9e-UNk7VTAcGcgUpYLJ-J4ZuhO11fh3imQ0wWi5oWMY,37544
|
|
226
230
|
solace_agent_mesh/assets/docs/assets/js/4250.95455b28.js,sha256=y3OgeXf-tuJO5M6gJ70aW58HdFE7vZIPX7V4mduXL9c,197
|
|
227
231
|
solace_agent_mesh/assets/docs/assets/js/42b3f8d8.36090198.js,sha256=nl0lLjm5PISdNCAkYJ4s7TVcO_OYUpf0M0XGUPUzWdM,32810
|
|
228
232
|
solace_agent_mesh/assets/docs/assets/js/4356.d169ab5b.js,sha256=JJdBrbL2-8tn2jfAGsO1ezjcM37BAIZnZsNYgc4UoZs,195
|
|
@@ -248,6 +252,7 @@ solace_agent_mesh/assets/docs/assets/js/6978.ee0b945c.js,sha256=Fabb2n81BbNegY_9
|
|
|
248
252
|
solace_agent_mesh/assets/docs/assets/js/7040.cb436723.js,sha256=cmW7CCISvRnJNljTDg4jGJtG6rjSp0nWfZvchAKSdf4,36638
|
|
249
253
|
solace_agent_mesh/assets/docs/assets/js/7195.412f418a.js,sha256=8VHuob7jbA49epJL54bEU-mtOdSeUFXzqbgThE4walo,46219
|
|
250
254
|
solace_agent_mesh/assets/docs/assets/js/7280.3fb73bdb.js,sha256=XlDQpYplGuVoEqfXCt8Yzocd9uBTu64VUrNp4LQDyIY,659
|
|
255
|
+
solace_agent_mesh/assets/docs/assets/js/75384d09.c3991823.js,sha256=Pgru2XO5rAO_lO9lXEGwjyxOczOys_UjpiN1HgdNgR4,21666
|
|
251
256
|
solace_agent_mesh/assets/docs/assets/js/768e31b0.a12673db.js,sha256=Z_dMVEOREsGRvtrEqvembQdYR7KNLH25XVQN423zmh0,12958
|
|
252
257
|
solace_agent_mesh/assets/docs/assets/js/7845.e33e7c4c.js,sha256=sNEWPWBTnV-BmKI7vkcgRpTYeErGBXRbtH_X5YRnr-c,11143
|
|
253
258
|
solace_agent_mesh/assets/docs/assets/js/7900.69516146.js,sha256=MWXxfpYNV5CORkPa0r6EyyynbVJrNENknNv0Zb7TqS8,43021
|
|
@@ -266,94 +271,95 @@ solace_agent_mesh/assets/docs/assets/js/9278.a4fd875d.js,sha256=Nm7cJgq11XXaYA3W
|
|
|
266
271
|
solace_agent_mesh/assets/docs/assets/js/945fb41e.74d728aa.js,sha256=WNHaTRvHobe67Hof0nAk0axf7oruDNTCXl-6ZPxN7EE,15036
|
|
267
272
|
solace_agent_mesh/assets/docs/assets/js/9616.b75c2f6d.js,sha256=Ry0lLDd8HQzYAHmCKcXJ4iQ-9utISMjqcWk_iURtf1A,20576
|
|
268
273
|
solace_agent_mesh/assets/docs/assets/js/9793.c6d16376.js,sha256=-Xm7Yt1AJvEcfoYlQ04O5Douk4bsO4mgo_UJN8TVIUY,100459
|
|
269
|
-
solace_agent_mesh/assets/docs/assets/js/9eff14a2.
|
|
274
|
+
solace_agent_mesh/assets/docs/assets/js/9eff14a2.036c35ea.js,sha256=TliK20C2MwYnI-MBEzQYmrhnJmVwrBLVDfDLM5gS0cg,10567
|
|
270
275
|
solace_agent_mesh/assets/docs/assets/js/a3a92b25.26ca071f.js,sha256=fry6wFsGwT2tr3p7WAtzBcH2cTJQyDW3Hqr8VwuHDNE,5778
|
|
271
276
|
solace_agent_mesh/assets/docs/assets/js/a7bd4aaa.2204d2f7.js,sha256=v9wa2Q1Mt7cayLyMjyDTUT8J_kILQ2idmxDhgyBHlpE,756
|
|
272
277
|
solace_agent_mesh/assets/docs/assets/js/a94703ab.0438dbc2.js,sha256=drinuntIgk0lUv1Wc_WlHu5I8d5ZDszh329V_5WQrD4,11251
|
|
273
278
|
solace_agent_mesh/assets/docs/assets/js/aba21aa0.c42a534c.js,sha256=e8uMq6LJqDkt4o-uIbKH2CIw_7cQ4Kthlh4O9UqwWdw,211
|
|
274
|
-
solace_agent_mesh/assets/docs/assets/js/aba87c2f.
|
|
275
|
-
solace_agent_mesh/assets/docs/assets/js/ae4415af.
|
|
276
|
-
solace_agent_mesh/assets/docs/assets/js/b7006a3a.
|
|
279
|
+
solace_agent_mesh/assets/docs/assets/js/aba87c2f.a6b84da6.js,sha256=9li8NSwZnXj2OHgJaFLpko4UtEt8SGkxnhc5MschQqI,12903
|
|
280
|
+
solace_agent_mesh/assets/docs/assets/js/ae4415af.96189a93.js,sha256=foZB3o80ODdnliLPU20bcLPR9KD_nIfv_k9cKSB3nHc,29063
|
|
281
|
+
solace_agent_mesh/assets/docs/assets/js/b7006a3a.38c0cf3d.js,sha256=KyT_zYTZfV3mSbQbrRFqY7f-Vcjy8ncOVzD7EOugRV8,13013
|
|
277
282
|
solace_agent_mesh/assets/docs/assets/js/bac0be12.f50d9bac.js,sha256=quA_kaWdOjhBBpvq5jhKpSqEKaOqy8y4oITXTObG8Yk,17998
|
|
278
|
-
solace_agent_mesh/assets/docs/assets/js/bb2ef573.
|
|
283
|
+
solace_agent_mesh/assets/docs/assets/js/bb2ef573.56931473.js,sha256=A0zhy4tlM8KYhNvtPjIMieJjrwakFCVwQKbBaavD_6k,1937
|
|
279
284
|
solace_agent_mesh/assets/docs/assets/js/c2c06897.63b76e9e.js,sha256=8FaFZTUCUPq92ZQNNdJ8d0YVOCUlsnPki29AxOdxthQ,14956
|
|
280
|
-
solace_agent_mesh/assets/docs/assets/js/cc969b05.
|
|
285
|
+
solace_agent_mesh/assets/docs/assets/js/cc969b05.bd3e0d6c.js,sha256=9LqCerLmI1iU53gH096nOvASEvXnC3RvcNRKiS91LmE,23069
|
|
281
286
|
solace_agent_mesh/assets/docs/assets/js/cd3d4052.ca6eed8c.js,sha256=R2EZA9XN5vfFQN76wBKs3DP8xFXliLT-XiiVWzJ8Oiw,9751
|
|
282
287
|
solace_agent_mesh/assets/docs/assets/js/ced92a13.fb92e7ca.js,sha256=96enCMQqnD-_WrFda13oJ3gPLYxmy93LXDFxDuxA5JY,25255
|
|
283
288
|
solace_agent_mesh/assets/docs/assets/js/cee5d587.f5b73ca1.js,sha256=ciDSktNPCP_cmpHCR-ycCpuFEeVmbV_D8uHydRZ225w,9508
|
|
284
|
-
solace_agent_mesh/assets/docs/assets/js/f284c35a.
|
|
285
|
-
solace_agent_mesh/assets/docs/assets/js/f897a61a.
|
|
289
|
+
solace_agent_mesh/assets/docs/assets/js/f284c35a.5aff74ab.js,sha256=Zv9gv-tZFSJR718bElFXJMgnDQzM-AtfsbcD_Hd3RrY,18213
|
|
290
|
+
solace_agent_mesh/assets/docs/assets/js/f897a61a.862b0514.js,sha256=hD0AMhMENVR89kBP_tEqVcng2knd7klqNLV0pozLevs,13959
|
|
286
291
|
solace_agent_mesh/assets/docs/assets/js/fbfa3e75.aca209c9.js,sha256=vmq7isB22h2J_2cVIt1h6D2OhwU6wTBEnk1-CNZv9Wk,7314
|
|
287
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
288
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
289
|
-
solace_agent_mesh/assets/docs/assets/js/runtime~main.
|
|
290
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=
|
|
291
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=
|
|
292
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=
|
|
293
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=
|
|
294
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=
|
|
295
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=
|
|
296
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=
|
|
297
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=
|
|
298
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=
|
|
299
|
-
solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html,sha256=
|
|
300
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=
|
|
301
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=
|
|
302
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=
|
|
303
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=
|
|
304
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=
|
|
305
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=
|
|
306
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=
|
|
307
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=
|
|
308
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=
|
|
309
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
310
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
311
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/
|
|
312
|
-
solace_agent_mesh/assets/docs/docs/documentation/
|
|
313
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
314
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
315
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
316
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/
|
|
317
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
318
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-
|
|
319
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
320
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
321
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/
|
|
322
|
-
solace_agent_mesh/assets/docs/
|
|
292
|
+
solace_agent_mesh/assets/docs/assets/js/main.dc7db184.js,sha256=4haF3JMHLnt82F-cmy9tsnWCytzIsyUifRN03IrtMAw,479392
|
|
293
|
+
solace_agent_mesh/assets/docs/assets/js/main.dc7db184.js.LICENSE.txt,sha256=3Jia5o7yaxOtbxuy9khs-thK96m55yCiPaUA-IkWh0A,2069
|
|
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=0nVaWiZVyBFZsANq8UrhUzfh6L5qR8MLa06aydenZck,30787
|
|
296
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=LaCt6ipUFulTpTL6OKfE3A8RgBQSuj5doB-dzfn9nzQ,31979
|
|
297
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=7GxnZbWKRj6KTCx-oWEdyyKOXud4vtj_Cf3eOI6_LxA,49428
|
|
298
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=xlPbhIZGtMjVsg1Ve4DaJGJRbWTcEeJrdxMXAvkL1w0,29345
|
|
299
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=F5HOarSDbL9PgWmeuZf4wIzk1kejDXjCdH8zNdOjKD8,23051
|
|
300
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=0K3ecW2UyfZiD9IgyAjjRyZjwytwN6jXs3WhHCIUp6Y,33086
|
|
301
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=yODFdpEqQ1Fm2yk4LdwFAkiwnvjBPqA_bmKsbyyRfZg,44831
|
|
302
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=h1u1dC7_5r8B2VslwkJ8vlziDo8Vk9uRtaW8m330Dlk,41745
|
|
303
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=lVKgM7E9MmAgc7K4ojpoWV4OdbnUrDWjgrKkmVHgXJA,25285
|
|
304
|
+
solace_agent_mesh/assets/docs/docs/documentation/enterprise/index.html,sha256=GoyIJkti0JlA-3Td8Bf59SCYGcHKnnBZLSfc2njHuIo,17394
|
|
305
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=P3-jm-tig6vAURFk7XG74RWDri6OHZgg2T2NNBR-SvU,20919
|
|
306
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=TWUa-yKs023HcXuvwrvHKK3R7lekxRrq28XmGvsQZXA,31751
|
|
307
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=AgNvDW26CyejWlYp3cJ_nIySo6iO3yFft0N7PLGv9os,29667
|
|
308
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=8OyDqN1UomXvaf_l5fyq9W2Cm3ym0LgxwitkV0knd5o,36669
|
|
309
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=7OqzEnm8GBGNTON06JVQiSRXANd94wX0F3sp3UZxndo,74458
|
|
310
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=bq9mrMEPg0-d4OsTnWKhxF-a5CcAcF4n_WG7Mx0OXvE,323959
|
|
311
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=TiwxTaMO9qpG1Wt_S_8sc05vlOC8HYJoEqyM3VwOlTs,68464
|
|
312
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=SuEgBY2OTtDnTq462vzcCUsrPvaQX_tU2EEGM0HwdEU,64232
|
|
313
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=ruFYBbpZxVzrEV-VbhnO37Rnke5nH6Gwls_WvpjpkQY,86780
|
|
314
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=A_UGWbzy71zLOQH7ibtFlnvsvZ95zz_S6uCc3iSQ908,79440
|
|
315
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=dcfX0xv7rfJHEzuKfyoKWlOcL5V0SY7yui7rOFZKkJw,45907
|
|
316
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=S-WTIRvNqR5bnAO_xoJqaqeSqs8ZArNg58ACb0Pu-4Y,49178
|
|
317
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=58jxElBUWfSpQQHlxB7w9AqoKD0edc1A4TftoCfblNc,68485
|
|
318
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=Pkt94Fk-vWrfRLvXXpp6tqwuWcQont9SLRxhKwHyRyk,43835
|
|
319
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=Ni_o99tUcsy5F8IWeeZ6l4yLQBHJRFOVD1Z5Wk7Xlyk,33847
|
|
320
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=XF8FNOu-VBJCRFiWXaSBAj5ARvoQyjK1v74cIdTWMYA,57386
|
|
321
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=X5PNDmwkNJaoDP_i_H6T2_AuDVrzuDN7N6ZFxwN1TXo,36851
|
|
322
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=N1dX19-zYR8f2rP97f61T_AqrfbkhNZQR9qkK_UINw4,49659
|
|
323
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=4yTx-nT0ImABeM917tWOTHvdz62tcrxs4OyqoZaMb-Q,154378
|
|
324
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=4PnhVplfApts7U7O1F2FU7xtai0vvToWBHqh9JwadFQ,401884
|
|
325
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=-BDk7U8bnN7z4HENfNpcOZYJbq5Q9qb3xL1zbLiM0Rs,58643
|
|
326
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256=np2_aANBbsvYJq8KgU_JWhKngVufVzjmLnk_hqxMGC4,24794
|
|
327
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=mNtrii-lR8KmLfHs_ZpTOCwQeiH9jretHeUXiPdiKNI,28802
|
|
323
328
|
solace_agent_mesh/assets/docs/img/Solace_AI_Framework_With_Broker.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
324
329
|
solace_agent_mesh/assets/docs/img/logo.png,sha256=TdXZ2wnkSkaFrGO-5fy2WcmjGXaGzwE29dM83raxoTg,45439
|
|
325
330
|
solace_agent_mesh/assets/docs/img/sac-flows.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
326
331
|
solace_agent_mesh/assets/docs/img/sac_parts_of_a_component.png,sha256=Z7-TCXxDC2fd6iZ3Lkr-F3OHhqr6m_glnzVIcwUhv4k,12283
|
|
332
|
+
solace_agent_mesh/assets/docs/img/solace-logo-text.svg,sha256=-wslMOppjNAJqbWRfBNaLrEbRhUUwOPe6TJSl9bg8zg,5537
|
|
327
333
|
solace_agent_mesh/assets/docs/img/solace-logo.png,sha256=XY5zC_yIVxHdO14TMgW4eTsDWryPsgE_oTSJV4CQthw,17627
|
|
328
334
|
solace_agent_mesh/config_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
335
|
solace_agent_mesh/config_portal/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
-
solace_agent_mesh/config_portal/backend/common.py,sha256=
|
|
331
|
-
solace_agent_mesh/config_portal/backend/plugin_catalog_server.py,sha256=
|
|
332
|
-
solace_agent_mesh/config_portal/backend/server.py,sha256=
|
|
336
|
+
solace_agent_mesh/config_portal/backend/common.py,sha256=mT7BrPMYpUAvABX5kKCmLhd7ShCAtjCIS1QPAgA2X9A,3074
|
|
337
|
+
solace_agent_mesh/config_portal/backend/plugin_catalog_server.py,sha256=Qr5cFUMyDq0qHDTa9ZRbczTi8BUWPZTvxAv3jRxa3hw,7875
|
|
338
|
+
solace_agent_mesh/config_portal/backend/server.py,sha256=9KI_eY5vBuu8iREDuNQn8TmvIGbCXF_R6-ZA2-nnis4,23693
|
|
333
339
|
solace_agent_mesh/config_portal/backend/plugin_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
solace_agent_mesh/config_portal/backend/plugin_catalog/constants.py,sha256=
|
|
340
|
+
solace_agent_mesh/config_portal/backend/plugin_catalog/constants.py,sha256=Eqq6lO_glHs-0LghOOHXewg6RecwumhI3zjBKUFGMAQ,787
|
|
335
341
|
solace_agent_mesh/config_portal/backend/plugin_catalog/models.py,sha256=Fu6EDX3PD1RTX84ucIs2UbtRk0Y0H3Lm3248MlP0jpY,1199
|
|
336
|
-
solace_agent_mesh/config_portal/backend/plugin_catalog/registry_manager.py,sha256=
|
|
337
|
-
solace_agent_mesh/config_portal/backend/plugin_catalog/scraper.py,sha256=
|
|
342
|
+
solace_agent_mesh/config_portal/backend/plugin_catalog/registry_manager.py,sha256=OhETId1ixVJBIL4lYwu4lRELic6BLgX6SJTkWFXKzPw,6686
|
|
343
|
+
solace_agent_mesh/config_portal/backend/plugin_catalog/scraper.py,sha256=j7yJUEKjgsVs7TvSf8Uf_22bKotlYhocIYhfJhTpQPI,21238
|
|
338
344
|
solace_agent_mesh/config_portal/frontend/static/client/Solace_community_logo.png,sha256=ugNi5vBxTdFZMW2uWNZYcutyk4z8yw9e5KEL5XDcodU,5894
|
|
339
345
|
solace_agent_mesh/config_portal/frontend/static/client/favicon.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
340
|
-
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=
|
|
341
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-
|
|
346
|
+
solace_agent_mesh/config_portal/frontend/static/client/index.html,sha256=1BlIynhUsfmxjsnV93Z7J4LqPoPuutZcRo9C7xJOqt8,1419
|
|
347
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/_index-xSu2leR8.js,sha256=qppOxigvhdC1uUk1u1rEi0euUsN18uMd3joS1fmASII,277614
|
|
342
348
|
solace_agent_mesh/config_portal/frontend/static/client/assets/components-B7lKcHVY.js,sha256=0sRyqnbRRwww1gtmCrs2LKKkV3oof13oqEq2kmzBwMg,40041
|
|
343
349
|
solace_agent_mesh/config_portal/frontend/static/client/assets/entry.client-CEumGClk.js,sha256=beUIdKZx7yRdQKVug52NNgej7_kKA4Wb1yppvlqBqP8,3862
|
|
344
350
|
solace_agent_mesh/config_portal/frontend/static/client/assets/index-DSo1AH_7.js,sha256=llg7q5i7csyU2UQoobFGNFA_Szk1J8bUDBZMYZ0bckw,217933
|
|
345
|
-
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-
|
|
351
|
+
solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-950eb3be.js,sha256=FV3ropvTdFT6SePmxK-eh0RMsW7S9VhqJNSVjsHOJ8Q,781
|
|
346
352
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-C4XmHinv.js,sha256=eE0D7vH3RMWe6spPF7YqgTTO36szT_0mAYwHUjBGrDg,1799
|
|
347
353
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-DxRwaWiE.css,sha256=HaETPzdva-2CpjK-MmIBI6lipZMiGHmAqLRJiD8s2QE,33607
|
|
348
354
|
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256=LiPrEF-c40umgZXbxwYP6NCNaFVKNQXqqbIXzzgnkx4,493
|
|
349
|
-
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=
|
|
355
|
+
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=Qvi1I257sM2K-xaY7R-KqwHVIJvuOelbWTXfFhiEn_k,558
|
|
350
356
|
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-DvlO62me.js,sha256=ywTL4zkDWkJPt7XLgrlHXjMhcJ0YkY9GLbrigJajsjw,489
|
|
351
357
|
solace_agent_mesh/client/webui/frontend/static/assets/client-bp6u3qVZ.js,sha256=_AAv-71pSyphB132FsplpbvkEfI_akuyLvfB-njUKV8,187773
|
|
352
358
|
solace_agent_mesh/client/webui/frontend/static/assets/favicon-BLgzUch9.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
353
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
354
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
355
|
-
solace_agent_mesh-1.0.
|
|
356
|
-
solace_agent_mesh-1.0.
|
|
357
|
-
solace_agent_mesh-1.0.
|
|
358
|
-
solace_agent_mesh-1.0.
|
|
359
|
-
solace_agent_mesh-1.0.
|
|
359
|
+
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-DzKPMTRs.js,sha256=GeSNKvUWRNUCY3Q7YGyqWc3TYX32N7NIzwtpvhJiKUA,742284
|
|
361
|
+
solace_agent_mesh-1.0.3.dist-info/METADATA,sha256=8nV06e7fkzBcjNmwMJPterLVUFrYWM2Qwgr0fimV8Cg,24331
|
|
362
|
+
solace_agent_mesh-1.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
363
|
+
solace_agent_mesh-1.0.3.dist-info/entry_points.txt,sha256=5pLVH8d8bd4sxUwBh7VTni8gTTSzTqGfY14zgdQZm1I,106
|
|
364
|
+
solace_agent_mesh-1.0.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
365
|
+
solace_agent_mesh-1.0.3.dist-info/RECORD,,
|