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
@@ -1 +1 @@
1
- <?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/agents</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/artifact-management</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/audio-tools</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/data-analysis-tools</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/embeds</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/cli</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/gateways</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/orchestrator</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/plugins</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/debugging</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/deployment-options</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/observability</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/create-agents</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/create-gateways</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/creating-python-tools</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/creating-service-providers</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/structure</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/bedrock-agents</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/custom-agent</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/event-mesh-gateway</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/mcp-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/mongodb-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/rag-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/rest-gateway</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/slack-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/sql-database</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/installation</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/rbac-setup-guide</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/single-sign-on</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/architecture</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/introduction</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/try-agent-mesh</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/configurations</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/installation</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/large_language_models</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/run-project</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/migrations/a2a-upgrade/a2a-gateway-upgrade-to-0.3.0</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/migrations/a2a-upgrade/a2a-technical-migration-map</loc><changefreq>weekly</changefreq><priority>0.5</priority></url></urlset>
1
+ <?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/agents</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/artifact-management</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/audio-tools</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/data-analysis-tools</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/builtin-tools/embeds</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/cli</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/gateways</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/orchestrator</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/plugins</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/components/proxies</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/debugging</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/deployment-options</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/deploying/observability</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/create-agents</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/create-gateways</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/creating-python-tools</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/creating-service-providers</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/evaluations</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/structure</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/bedrock-agents</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/custom-agent</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/event-mesh-gateway</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/mcp-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/mongodb-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/rag-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/rest-gateway</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/slack-integration</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/developing/tutorials/sql-database</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/installation</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/rbac-setup-guide</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/enterprise/single-sign-on</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/architecture</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/introduction</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/getting-started/try-agent-mesh</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/configurations</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/installation</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/large_language_models</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/installing-and-configuring/run-project</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/migrations/a2a-upgrade/a2a-gateway-upgrade-to-0.3.0</loc><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://solacelabs.github.io/solace-agent-mesh/docs/documentation/migrations/a2a-upgrade/a2a-technical-migration-map</loc><changefreq>weekly</changefreq><priority>0.5</priority></url></urlset>
@@ -1 +1 @@
1
- __version__ = "1.5.1"
1
+ __version__ = "1.6.0"
@@ -66,7 +66,7 @@ def _write_agent_yaml_from_data(
66
66
 
67
67
  if type_val == "sql":
68
68
  database_url_placeholder = (
69
- f"${{{formatted_names['SNAKE_UPPER_CASE_NAME']}_DATABASE_URL}}"
69
+ f"${{{formatted_names['SNAKE_UPPER_CASE_NAME']}_DATABASE_URL, sqlite:///{file_name_snake}.db}}"
70
70
  )
71
71
  session_service_lines.append(
72
72
  f'database_url: "{database_url_placeholder}"'
@@ -383,74 +383,7 @@ def create_agent_config(
383
383
  skip_interactive,
384
384
  )
385
385
 
386
- collected_options["session_service_type"] = ask_if_not_provided(
387
- collected_options,
388
- "session_service_type",
389
- "Session service type",
390
- AGENT_DEFAULTS["session_service_type"],
391
- skip_interactive,
392
- choices=[USE_DEFAULT_SHARED_SESSION, "sql", "memory", "vertex_rag"],
393
- )
394
-
395
- if collected_options.get("session_service_type") == "sql":
396
- if DATABASE_URL_KEY not in collected_options:
397
- use_own_db = False
398
- if not skip_interactive:
399
- use_own_db = ask_yes_no_question(
400
- f"Do you want to use your own database for the '{agent_name_camel_case}' agent?\n"
401
- f" (If no, SQLite embedded database will be used)",
402
- default=False,
403
- )
404
-
405
- if use_own_db:
406
- database_url = ask_if_not_provided(
407
- collected_options,
408
- DATABASE_URL_KEY,
409
- f"Enter the full database URL for the {agent_name_camel_case} agent (e.g., postgresql://user:pass@host/db)",
410
- none_interactive=skip_interactive,
411
- )
412
- collected_options[DATABASE_URL_KEY] = database_url
413
- else:
414
- data_dir = project_root / "data"
415
- data_dir.mkdir(exist_ok=True)
416
- db_file = data_dir / f"{formatted_names['SNAKE_CASE_NAME']}.db"
417
- database_url = f"sqlite:///{db_file.resolve()}"
418
- click.echo(
419
- f" Using default SQLite database for {agent_name_camel_case} agent: {db_file}"
420
- )
421
- collected_options[DATABASE_URL_KEY] = database_url
422
-
423
- try:
424
- db_url = collected_options.get(DATABASE_URL_KEY)
425
- if not db_url:
426
- error_msg = "Database URL was not provided or determined despite SQL session service being selected."
427
- click.echo(
428
- click.style(f"Internal Error: {error_msg}", fg="red"), err=True
429
- )
430
- raise ValueError(error_msg)
431
-
432
- click.echo(f" Validating database: {db_url}")
433
- create_and_validate_database(
434
- db_url, f"{agent_name_camel_case} agent database"
435
- )
436
- except Exception as e:
437
- click.echo(
438
- click.style(
439
- f"Error validating database URL '{collected_options.get(DATABASE_URL_KEY)}': {e}",
440
- fg="red",
441
- ),
442
- err=True,
443
- )
444
- return False
445
-
446
- collected_options["session_service_behavior"] = ask_if_not_provided(
447
- collected_options,
448
- "session_service_behavior",
449
- "Session service behavior",
450
- AGENT_DEFAULTS["session_service_behavior"],
451
- skip_interactive,
452
- choices=["PERSISTENT", "RUN_BASED"],
453
- )
386
+ collected_options["session_service_type"] = "sql"
454
387
 
455
388
  collected_options["artifact_service_type"] = ask_if_not_provided(
456
389
  collected_options,
@@ -1,53 +1,10 @@
1
- import click
2
- from importlib import metadata
1
+ import os
3
2
  from pathlib import Path
4
3
 
5
- from evaluation.run import main as run_evaluation_main
6
- from cli.utils import error_exit, load_template
7
-
8
-
9
- def _ensure_sam_rest_gateway_installed():
10
- """Checks if the sam-rest-gateway package is installed."""
11
- try:
12
- metadata.distribution("sam-rest-gateway")
13
- except metadata.PackageNotFoundError:
14
- error_exit(
15
- "Error: 'sam-rest-gateway' is not installed. "
16
- "Please install it using: "
17
- 'pip install "sam-rest-gateway @ git+https://github.com/SolaceLabs/solace-agent-mesh-core-plugins#subdirectory=sam-rest-gateway"'
18
- )
19
-
20
-
21
- def _ensure_eval_backend_config_exists():
22
- """Checks for eval_backend.yaml and creates it from a template if missing."""
23
- project_root = Path.cwd()
24
- configs_dir = project_root / "configs"
25
- eval_backend_config_path = configs_dir / "eval_backend.yaml"
26
-
27
- if eval_backend_config_path.exists():
28
- return
29
-
30
- click.echo(
31
- f"'{eval_backend_config_path.relative_to(project_root)}' not found. Creating it..."
32
- )
33
-
34
- if not (configs_dir / "shared_config.yaml").exists():
35
- error_exit(
36
- "Error: 'configs/shared_config.yaml' not found. Please run 'sam init' first."
37
- )
4
+ import click
38
5
 
39
- try:
40
- template_content = load_template("eval_backend_template.yaml")
41
- with open(eval_backend_config_path, "w", encoding="utf-8") as f:
42
- f.write(template_content)
43
- click.echo(
44
- click.style(
45
- f"Successfully created '{eval_backend_config_path.relative_to(project_root)}'.",
46
- fg="green",
47
- )
48
- )
49
- except Exception as e:
50
- error_exit(f"Failed to create eval_backend.yaml: {e}")
6
+ from cli.utils import error_exit
7
+ from evaluation.run import main as run_evaluation_main
51
8
 
52
9
 
53
10
  @click.command(name="eval")
@@ -75,8 +32,13 @@ def eval_cmd(test_suite_config_path, verbose):
75
32
  fg="blue",
76
33
  )
77
34
  )
78
- _ensure_sam_rest_gateway_installed()
79
- _ensure_eval_backend_config_exists()
35
+
36
+ # Set logging config path for evaluation
37
+ project_root = Path.cwd()
38
+ logging_config_path = project_root / "configs" / "logging_config.ini"
39
+ if logging_config_path.exists():
40
+ os.environ["LOGGING_CONFIG_PATH"] = str(logging_config_path.resolve())
41
+
80
42
  try:
81
43
  run_evaluation_main(test_suite_config_path, verbose=verbose)
82
44
  click.echo(click.style("Evaluation completed successfully.", fg="green"))
@@ -4,7 +4,6 @@ import click
4
4
 
5
5
  from ...utils import ask_yes_no_question
6
6
  from .broker_step import broker_setup_step
7
- from .database_step import database_setup_step
8
7
  from .directory_step import create_project_directories
9
8
  from .env_step import ENV_DEFAULTS, create_env_file
10
9
  from .orchestrator_step import ORCHESTRATOR_DEFAULTS as O_DEFAULTS
@@ -165,10 +164,6 @@ def run_init_flow(skip_interactive: bool, use_web_based_init_flag: bool, **cli_o
165
164
  project_root, opts, skip, defs
166
165
  ),
167
166
  ),
168
- (
169
- "Database Setup",
170
- lambda opts, defs, skip: database_setup_step(project_root, opts, skip),
171
- ),
172
167
  (
173
168
  ".env File Creation",
174
169
  lambda opts, defs, skip: create_env_file(project_root, opts, skip),
@@ -18,15 +18,22 @@ ENV_DEFAULTS = {
18
18
  "FASTAPI_PORT": "8000",
19
19
  "FASTAPI_HTTPS_PORT": "8443",
20
20
  "ENABLE_EMBED_RESOLUTION": "true",
21
- "WEB_UI_GATEWAY_DATABASE_URL": "sqlite:///data/webui_gateway.db",
22
- "ORCHESTRATOR_DATABASE_URL": "sqlite:///data/orchestrator.db",
23
21
  "SSL_KEYFILE": "",
24
22
  "SSL_CERTFILE": "",
25
23
  "SSL_KEYFILE_PASSWORD": "",
26
24
  "LOGGING_CONFIG_PATH": "configs/logging_config.ini",
27
25
  "S3_BUCKET_NAME": "",
28
26
  "S3_ENDPOINT_URL": "",
29
- "S3_REGION": "us-east-1"
27
+ "S3_REGION": "us-east-1",
28
+ "LLM_SERVICE_OAUTH_TOKEN_URL": "YOUR_LLM_SERVICE_OAUTH_TOKEN_URL_HERE",
29
+ "LLM_SERVICE_OAUTH_CLIENT_ID": "YOUR_LLM_SERVICE_OAUTH_CLIENT_ID_HERE",
30
+ "LLM_SERVICE_OAUTH_CLIENT_SECRET": "YOUR_LLM_SERVICE_OAUTH_CLIENT_SECRET_HERE",
31
+ "LLM_SERVICE_OAUTH_SCOPE": "",
32
+ "LLM_SERVICE_OAUTH_CA_CERT_PATH": "",
33
+ "LLM_SERVICE_OAUTH_TOKEN_REFRESH_BUFFER_SECONDS": "300",
34
+ "LLM_SERVICE_OAUTH_PLANNING_MODEL_NAME": "YOUR_LLM_SERVICE_OAUTH_PLANNING_MODEL_NAME_HERE",
35
+ "LLM_SERVICE_OAUTH_GENERAL_MODEL_NAME": "YOUR_LLM_SERVICE_OAUTH_GENERAL_MODEL_NAME_HERE",
36
+ "LLM_SERVICE_OAUTH_ENDPOINT": "YOUR_LLM_SERVICE_OAUTH_ENDPOINT_HERE"
30
37
  }
31
38
 
32
39
 
@@ -209,15 +216,6 @@ def create_env_file(project_root: Path, options: dict, skip_interactive: bool) -
209
216
  )
210
217
  env_vars_to_write[env_name] = options.get(opt_key)
211
218
 
212
- if options.get("web_ui_gateway_database_url"):
213
- env_vars_to_write["WEB_UI_GATEWAY_DATABASE_URL"] = options[
214
- "web_ui_gateway_database_url"
215
- ]
216
- if options.get("orchestrator_database_url"):
217
- env_vars_to_write["ORCHESTRATOR_DATABASE_URL"] = options[
218
- "orchestrator_database_url"
219
- ]
220
-
221
219
  if (
222
220
  env_vars_to_write.get("NAMESPACE")
223
221
  and env_vars_to_write["NAMESPACE"] != ENV_DEFAULTS.get("NAMESPACE")
@@ -84,33 +84,7 @@ def create_orchestrator_config(
84
84
  is_bool=True,
85
85
  )
86
86
 
87
- session_type = ask_if_not_provided(
88
- options,
89
- "session_service_type",
90
- "Enter session service type",
91
- "sql",
92
- skip_interactive,
93
- choices=["sql", "memory", "vertex_rag"],
94
- )
95
-
96
- if session_type == "sql":
97
- options["use_orchestrator_db"] = ask_if_not_provided(
98
- options,
99
- "use_orchestrator_db",
100
- "Use default orchestrator database? (true/false)",
101
- ORCHESTRATOR_DEFAULTS["use_orchestrator_db"],
102
- skip_interactive,
103
- is_bool=True,
104
- )
105
-
106
- session_behavior = ask_if_not_provided(
107
- options,
108
- "session_service_behavior",
109
- "Enter session service behavior",
110
- "PERSISTENT",
111
- skip_interactive,
112
- choices=["PERSISTENT", "RUN_BASED"],
113
- )
87
+ options["use_orchestrator_db"] = ORCHESTRATOR_DEFAULTS["use_orchestrator_db"]
114
88
 
115
89
  artifact_type = ask_if_not_provided(
116
90
  options,
@@ -412,40 +386,14 @@ def create_orchestrator_config(
412
386
  - You must then review the list of artifacts and return the ones that are important for the user by using the `signal_artifact_for_return` tool.
413
387
  - Provide regular progress updates using `status_update` embed directives, especially before initiating any tool call."""
414
388
 
415
- if session_type == "sql":
416
- session_service_lines = [
417
- f'type: "{session_type}"',
418
- 'database_url: "${ORCHESTRATOR_DATABASE_URL}"',
419
- f'default_behavior: "{session_behavior}"',
420
- ]
421
- session_service_block = "\n" + "\n".join(
422
- [f" {line}" for line in session_service_lines]
423
- )
424
-
425
- data_dir = project_root / "data"
426
- data_dir.mkdir(exist_ok=True)
427
- orchestrator_db_file = data_dir / "orchestrator.db"
428
- orchestrator_database_url = f"sqlite:///{orchestrator_db_file.resolve()}"
429
-
430
- try:
431
- env_path = project_root / ".env"
432
- with open(env_path, "a", encoding="utf-8") as f:
433
- f.write(
434
- f'\nORCHESTRATOR_DATABASE_URL="{orchestrator_database_url}"\n'
435
- )
436
- click.echo(
437
- f" Added ORCHESTRATOR_DATABASE_URL to .env: {orchestrator_database_url}"
438
- )
439
- except Exception as e:
440
- click.echo(
441
- click.style(
442
- f"Warning: Could not add ORCHESTRATOR_DATABASE_URL to .env: {e}",
443
- fg="yellow",
444
- ),
445
- err=True,
446
- )
447
- else:
448
- session_service_block = "*default_session_service"
389
+ session_service_lines = [
390
+ f'type: "sql"',
391
+ 'database_url: "${ORCHESTRATOR_DATABASE_URL, sqlite:///orchestrator.db}"',
392
+ f'default_behavior: "PERSISTENT"',
393
+ ]
394
+ session_service_block = "\n" + "\n".join(
395
+ [f" {line}" for line in session_service_lines]
396
+ )
449
397
 
450
398
  orchestrator_replacements = {
451
399
  "__NAMESPACE__": "${NAMESPACE}",
@@ -31,10 +31,7 @@ def create_webui_gateway_config(
31
31
 
32
32
  add_gateway = options.get("add_webui_gateway")
33
33
  if not skip_interactive and add_gateway is None:
34
- add_gateway = ask_yes_no_question(
35
- "Do you want to add a default Web UI gateway?",
36
- default=default_values.get("add_webui_gateway", True),
37
- )
34
+ add_gateway = default_values.get("add_webui_gateway", True)
38
35
  elif add_gateway is None:
39
36
  add_gateway = default_values.get("add_webui_gateway", True)
40
37
 
@@ -145,57 +142,20 @@ def create_webui_gateway_config(
145
142
  is_bool=True,
146
143
  )
147
144
 
148
- session_type = ask_if_not_provided(
149
- options,
150
- "webui_session_service_type",
151
- "Enter WebUI session service type",
152
- "sql",
153
- skip_interactive,
154
- choices=["sql", "memory"],
155
- )
156
-
157
- session_behavior = ask_if_not_provided(
158
- options,
159
- "webui_session_service_behavior",
160
- "Enter WebUI session service behavior",
161
- "PERSISTENT",
162
- skip_interactive,
163
- choices=["PERSISTENT", "RUN_BASED"],
164
- )
165
-
166
145
  click.echo("Creating Web UI Gateway configuration file...")
167
146
  destination_path = project_root / "configs" / "gateways" / "webui.yaml"
168
147
 
169
148
  try:
170
149
  template_content = load_template("webui.yaml")
171
150
 
172
- if session_type == "sql":
173
- session_service_lines = [
174
- f'type: "{session_type}"',
175
- f'database_url: "${{WEB_UI_GATEWAY_DATABASE_URL}}"',
176
- f'default_behavior: "{session_behavior}"',
177
- ]
178
- session_service_block = "\n" + "\n".join(
179
- [f" {line}" for line in session_service_lines]
180
- )
181
-
182
- data_dir = project_root / "data"
183
- data_dir.mkdir(exist_ok=True)
184
- webui_db_file = data_dir / "webui_gateway.db"
185
- webui_database_url = f"sqlite:///{webui_db_file.resolve()}"
186
-
187
- try:
188
- env_path = project_root / ".env"
189
- with open(env_path, "a", encoding="utf-8") as f:
190
- f.write(f'\nWEB_UI_GATEWAY_DATABASE_URL="{webui_database_url}"\n')
191
- click.echo(f" Added WEB_UI_GATEWAY_DATABASE_URL to .env: {webui_database_url}")
192
- except Exception as e:
193
- click.echo(
194
- click.style(f"Warning: Could not add WEB_UI_GATEWAY_DATABASE_URL to .env: {e}", fg="yellow"),
195
- err=True,
196
- )
197
- else:
198
- session_service_block = "*default_session_service"
151
+ session_service_lines = [
152
+ f'type: "sql"',
153
+ 'database_url: "${WEB_UI_GATEWAY_DATABASE_URL, sqlite:///webui_gateway.db}"',
154
+ f'default_behavior: "PERSISTENT"',
155
+ ]
156
+ session_service_block = "\n" + "\n".join(
157
+ [f" {line}" for line in session_service_lines]
158
+ )
199
159
 
200
160
  replacements = {
201
161
  "__FRONTEND_WELCOME_MESSAGE__": str(
@@ -79,7 +79,6 @@ def add_plugin_component_cmd(
79
79
  return error_exit(
80
80
  f"Error: config.yaml not found in plugin '{module_name}' at expected path {plugin_config_path}"
81
81
  )
82
-
83
82
  try:
84
83
  plugin_config_content = plugin_config_path.read_text(encoding="utf-8")
85
84
  except Exception as e:
@@ -99,7 +98,7 @@ def add_plugin_component_cmd(
99
98
  "__COMPONENT_SPACED_NAME__": component_formats["SPACED_NAME"],
100
99
  "__COMPONENT_SPACED_CAPITALIZED_NAME__": component_formats[
101
100
  "SPACED_CAPITALIZED_NAME"
102
- ],
101
+ ]
103
102
  }
104
103
 
105
104
  processed_config_content = plugin_config_content
@@ -1 +1 @@
1
- import{c as n}from"./client-DarGQzyw.js";import{r as a,j as s}from"./vendor-BKIeiHj_.js";function c(){return a.useEffect(()=>{const r=window.location.hash.substring(1),e=new URLSearchParams(r),o=e.get("access_token"),t=e.get("refresh_token");o?(localStorage.setItem("access_token",o),t&&localStorage.setItem("refresh_token",t),window.location.href="/"):console.error("AuthCallback: No access token found in URL hash.")},[]),s.jsx("div",{children:"Loading..."})}n.createRoot(document.getElementById("root")).render(s.jsx(c,{}));
1
+ import{c as n}from"./client-CaY59VuC.js";import{r as a,j as s}from"./vendor-BEmvJSYz.js";function c(){return a.useEffect(()=>{const r=window.location.hash.substring(1),e=new URLSearchParams(r),o=e.get("access_token"),t=e.get("refresh_token");o?(localStorage.setItem("access_token",o),t&&localStorage.setItem("refresh_token",t),window.location.href="/"):console.error("AuthCallback: No access token found in URL hash.")},[]),s.jsx("div",{children:"Loading..."})}n.createRoot(document.getElementById("root")).render(s.jsx(c,{}));
@@ -1,4 +1,4 @@
1
- import{ao as dd,ap as sd}from"./vendor-BKIeiHj_.js";(function(){const Xl=document.createElement("link").relList;if(Xl&&Xl.supports&&Xl.supports("modulepreload"))return;for(const w of document.querySelectorAll('link[rel="modulepreload"]'))b(w);new MutationObserver(w=>{for(const tl of w)if(tl.type==="childList")for(const cu of tl.addedNodes)cu.tagName==="LINK"&&cu.rel==="modulepreload"&&b(cu)}).observe(document,{childList:!0,subtree:!0});function zl(w){const tl={};return w.integrity&&(tl.integrity=w.integrity),w.referrerPolicy&&(tl.referrerPolicy=w.referrerPolicy),w.crossOrigin==="use-credentials"?tl.credentials="include":w.crossOrigin==="anonymous"?tl.credentials="omit":tl.credentials="same-origin",tl}function b(w){if(w.ep)return;w.ep=!0;const tl=zl(w);fetch(w.href,tl)}})();var Jc={exports:{}},ne={},rc={exports:{}},wc={};/**
1
+ import{ao as dd,ap as sd}from"./vendor-BEmvJSYz.js";(function(){const Xl=document.createElement("link").relList;if(Xl&&Xl.supports&&Xl.supports("modulepreload"))return;for(const w of document.querySelectorAll('link[rel="modulepreload"]'))b(w);new MutationObserver(w=>{for(const tl of w)if(tl.type==="childList")for(const cu of tl.addedNodes)cu.tagName==="LINK"&&cu.rel==="modulepreload"&&b(cu)}).observe(document,{childList:!0,subtree:!0});function zl(w){const tl={};return w.integrity&&(tl.integrity=w.integrity),w.referrerPolicy&&(tl.referrerPolicy=w.referrerPolicy),w.crossOrigin==="use-credentials"?tl.credentials="include":w.crossOrigin==="anonymous"?tl.credentials="omit":tl.credentials="same-origin",tl}function b(w){if(w.ep)return;w.ep=!0;const tl=zl(w);fetch(w.href,tl)}})();var Jc={exports:{}},ne={},rc={exports:{}},wc={};/**
2
2
  * @license React
3
3
  * scheduler.production.js
4
4
  *