solace-agent-mesh 1.5.1__py3-none-any.whl → 1.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of solace-agent-mesh might be problematic. Click here for more details.

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