solace-agent-mesh 0.1.3__py3-none-any.whl → 0.2.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.
- solace_agent_mesh/agents/global/actions/plantuml_diagram.py +9 -2
- solace_agent_mesh/agents/global/actions/plotly_graph.py +38 -40
- solace_agent_mesh/agents/web_request/actions/do_web_request.py +34 -33
- solace_agent_mesh/cli/__init__.py +1 -1
- solace_agent_mesh/cli/commands/add/gateway.py +162 -9
- solace_agent_mesh/cli/commands/build.py +0 -1
- solace_agent_mesh/cli/commands/init/create_other_project_files_step.py +52 -1
- solace_agent_mesh/cli/commands/plugin/build.py +11 -2
- solace_agent_mesh/cli/config.py +4 -0
- solace_agent_mesh/cli/utils.py +7 -2
- solace_agent_mesh/common/constants.py +10 -0
- solace_agent_mesh/common/utils.py +16 -11
- solace_agent_mesh/configs/service_embedding.yaml +1 -1
- solace_agent_mesh/configs/service_llm.yaml +1 -1
- solace_agent_mesh/gateway/components/gateway_base.py +7 -1
- solace_agent_mesh/gateway/components/gateway_input.py +8 -5
- solace_agent_mesh/gateway/components/gateway_output.py +12 -3
- solace_agent_mesh/orchestrator/components/orchestrator_stimulus_processor_component.py +23 -5
- solace_agent_mesh/orchestrator/orchestrator_prompt.py +155 -35
- solace_agent_mesh/services/file_service/file_service.py +5 -0
- solace_agent_mesh/services/file_service/file_service_constants.py +1 -1
- solace_agent_mesh/services/file_service/file_transformations.py +11 -1
- solace_agent_mesh/services/file_service/file_utils.py +2 -0
- solace_agent_mesh/services/history_service/history_providers/base_history_provider.py +21 -46
- solace_agent_mesh/services/history_service/history_providers/file_history_provider.py +74 -0
- solace_agent_mesh/services/history_service/history_providers/index.py +40 -0
- solace_agent_mesh/services/history_service/history_providers/memory_history_provider.py +19 -156
- solace_agent_mesh/services/history_service/history_providers/mongodb_history_provider.py +66 -0
- solace_agent_mesh/services/history_service/history_providers/redis_history_provider.py +40 -140
- solace_agent_mesh/services/history_service/history_providers/sql_history_provider.py +93 -0
- solace_agent_mesh/services/history_service/history_service.py +315 -41
- solace_agent_mesh/services/history_service/long_term_memory/__init__.py +0 -0
- solace_agent_mesh/services/history_service/long_term_memory/long_term_memory.py +399 -0
- solace_agent_mesh/services/llm_service/components/llm_request_component.py +19 -0
- solace_agent_mesh/templates/gateway-config-template.yaml +2 -1
- solace_agent_mesh/templates/gateway-default-config.yaml +3 -3
- solace_agent_mesh/templates/plugin-gateway-default-config.yaml +29 -0
- solace_agent_mesh/templates/rest-api-default-config.yaml +2 -1
- solace_agent_mesh/templates/slack-default-config.yaml +1 -1
- solace_agent_mesh/templates/web-default-config.yaml +2 -1
- {solace_agent_mesh-0.1.3.dist-info → solace_agent_mesh-0.2.0.dist-info}/METADATA +4 -3
- {solace_agent_mesh-0.1.3.dist-info → solace_agent_mesh-0.2.0.dist-info}/RECORD +45 -38
- {solace_agent_mesh-0.1.3.dist-info → solace_agent_mesh-0.2.0.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-0.1.3.dist-info → solace_agent_mesh-0.2.0.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-0.1.3.dist-info → solace_agent_mesh-0.2.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,8 +9,8 @@ solace_agent_mesh/agents/global/actions/clear_history.py,sha256=XOCpmkr-Jv0SDP1E
|
|
|
9
9
|
solace_agent_mesh/agents/global/actions/convert_file_to_markdown.py,sha256=qVLDIS8KZoFP777Kb_B5UmrLAEksxrRzKrcO76lwwm8,6407
|
|
10
10
|
solace_agent_mesh/agents/global/actions/create_file.py,sha256=mf_CFKZc8iWJSb8l8z5EWrv6OQtpFw_jDHLuvji-p6g,2602
|
|
11
11
|
solace_agent_mesh/agents/global/actions/error_action.py,sha256=d0sNyC8pvZu3AeLLOIimG3cmjFmovxTGczp8Y8fTySo,1643
|
|
12
|
-
solace_agent_mesh/agents/global/actions/plantuml_diagram.py,sha256=
|
|
13
|
-
solace_agent_mesh/agents/global/actions/plotly_graph.py,sha256=
|
|
12
|
+
solace_agent_mesh/agents/global/actions/plantuml_diagram.py,sha256=ym_SV-Rfo_5tnHGDA6Dxtr_qGg1egWocRJAH3hLZ92E,4571
|
|
13
|
+
solace_agent_mesh/agents/global/actions/plotly_graph.py,sha256=qAsjhP4dueFfHSIKnF2rWVsIVv-zs_HYWS1oxgpoY2I,5547
|
|
14
14
|
solace_agent_mesh/agents/global/actions/retrieve_file.py,sha256=nBK8EGn6R6gCFV4zCc2Xo3Bzz112EtvPmaOBRBZr2do,2232
|
|
15
15
|
solace_agent_mesh/agents/image_processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
solace_agent_mesh/agents/image_processing/image_processing_agent_component.py,sha256=IjZnNk7e8znm7NzXHgvFUpVaxDgUokwB3BzmLjcGolg,632
|
|
@@ -27,25 +27,25 @@ solace_agent_mesh/agents/web_request/actions/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
|
27
27
|
solace_agent_mesh/agents/web_request/actions/do_image_search.py,sha256=oC6_1VQC3WedIn7rKs79kcOdBGOepZeT0f3UndURjRY,3098
|
|
28
28
|
solace_agent_mesh/agents/web_request/actions/do_news_search.py,sha256=MBKQ5nSQQ9S4E3x1KCJ2gnDFOxjEHYxoRQUW_WMbGek,1621
|
|
29
29
|
solace_agent_mesh/agents/web_request/actions/do_suggestion_search.py,sha256=iM9hh5CaUbYDHk1poj0CvrbB4R4kAEX7lzdaX_l17A8,1082
|
|
30
|
-
solace_agent_mesh/agents/web_request/actions/do_web_request.py,sha256=
|
|
30
|
+
solace_agent_mesh/agents/web_request/actions/do_web_request.py,sha256=ZUDlS_KJwCx_88z9hmYvXxvq0yY59KF9A7Mk7niS3pU,6224
|
|
31
31
|
solace_agent_mesh/agents/web_request/actions/download_file.py,sha256=nFIuuimL6ub5EeasmfPXH0y1CUIE6iq44FRW1xK60rs,2692
|
|
32
32
|
solace_agent_mesh/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
solace_agent_mesh/common/action.py,sha256=vlgojeQs3PjRPCdgGjpHHs5McT5sx72tsahiJ6ZZaxI,3053
|
|
34
34
|
solace_agent_mesh/common/action_list.py,sha256=sy1cwkJ3ISdvK1CqvCblQmONnZtAtLt-nv5eBOaq-r8,1109
|
|
35
35
|
solace_agent_mesh/common/action_response.py,sha256=TYh8OdvpQmRS0_SbRKjhKWOdSPCN4Ux-j59J7-SLtbE,10201
|
|
36
|
-
solace_agent_mesh/common/constants.py,sha256=
|
|
36
|
+
solace_agent_mesh/common/constants.py,sha256=uL736sNE7haXoA17EMQtNZ4iz4SSoMKZSP_tqH7V8fQ,329
|
|
37
37
|
solace_agent_mesh/common/mysql_database.py,sha256=I6heri35TqLU0spV_p7XBye5CmFe3dspZHs9eCjHYK4,1121
|
|
38
38
|
solace_agent_mesh/common/postgres_database.py,sha256=8JBPSN3ZtpNSlnYfWNlDbhl2cAKVLawJgC_t_dbbTAc,2607
|
|
39
39
|
solace_agent_mesh/common/prompt_templates.py,sha256=QhcxTVRvLyJYdUO8w8P3LzVCejSVKG90P6UE0qHG3fc,687
|
|
40
40
|
solace_agent_mesh/common/prompt_templates_unused_delete.py,sha256=Quyee4Xuf4vZj_29Nq0RIR9-eztKZGzzUY7cFbmmJno,7229
|
|
41
41
|
solace_agent_mesh/common/stimulus_utils.py,sha256=OIGrOVFlg3V0YAjO5GU0qZ-NO95cN_yQ707JTuQqa9E,5445
|
|
42
42
|
solace_agent_mesh/common/time.py,sha256=SH0Zfh1Hn6k8TcwZ8MpA_2-CV9-uA8Zc57-Zxm5C6c4,298
|
|
43
|
-
solace_agent_mesh/common/utils.py,sha256=
|
|
43
|
+
solace_agent_mesh/common/utils.py,sha256=mm7hYGd2aXVL9hzr0bUdtmXGhY-D8J30tGh475wInyg,23429
|
|
44
44
|
solace_agent_mesh/gateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
solace_agent_mesh/gateway/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
solace_agent_mesh/gateway/components/gateway_base.py,sha256=
|
|
47
|
-
solace_agent_mesh/gateway/components/gateway_input.py,sha256=
|
|
48
|
-
solace_agent_mesh/gateway/components/gateway_output.py,sha256=
|
|
46
|
+
solace_agent_mesh/gateway/components/gateway_base.py,sha256=P1qJBzbFPrp4neOlGHtW36QVOXNmnQJeOkGAok5OrOw,1850
|
|
47
|
+
solace_agent_mesh/gateway/components/gateway_input.py,sha256=qszt0qPihKug8DUkm9wM4I_PoO2oWAi3gQiQEVQ7CAE,10806
|
|
48
|
+
solace_agent_mesh/gateway/components/gateway_output.py,sha256=8mRTHgPfq-ezSYC45kFk2lZq8sOcfupNu8CTunISVeA,11525
|
|
49
49
|
solace_agent_mesh/gateway/identity/bamboohr_identity.py,sha256=875pguj7vDx5Tij7YCvfqJQIC0HD_pnU5AtqCUuv7Cs,621
|
|
50
50
|
solace_agent_mesh/gateway/identity/identity_base.py,sha256=2oaqSPYNwMj4kOyokPAvfHPYW2_uUH85nTh2RogzQD8,271
|
|
51
51
|
solace_agent_mesh/gateway/identity/identity_provider.py,sha256=gy2GUcd1ZI441wljPDLZLql2iEzffzWJZr7bpU1M0L8,2523
|
|
@@ -57,12 +57,12 @@ solace_agent_mesh/monitors/stim_and_errors/stim_and_error_monitor.py,sha256=jMM1
|
|
|
57
57
|
solace_agent_mesh/orchestrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
58
|
solace_agent_mesh/orchestrator/action_manager.py,sha256=NgSrm9XXEfsOzGIfmfMo8s_-Pv5vgod02ig6lj8g7Uc,9076
|
|
59
59
|
solace_agent_mesh/orchestrator/orchestrator_main.py,sha256=wHLCaIqwzDrnpWM97lnrUwrk_bS9nmjy4R_dDRn24iU,5983
|
|
60
|
-
solace_agent_mesh/orchestrator/orchestrator_prompt.py,sha256=
|
|
60
|
+
solace_agent_mesh/orchestrator/orchestrator_prompt.py,sha256=dPUD7TZK8c8aia-qeH9UdW9ARK-3y8yINhs-mn_aZnI,29001
|
|
61
61
|
solace_agent_mesh/orchestrator/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
solace_agent_mesh/orchestrator/components/orchestrator_action_manager_timeout_component.py,sha256=w-rZBLMJPz8sLkxgOCH4Mc5Yk8jI0wKG-TZ27cQP-sU,1976
|
|
63
63
|
solace_agent_mesh/orchestrator/components/orchestrator_action_response_component.py,sha256=Wo2Qd6CU4bcllc_jy6XXdza1jewcV1SGXh1osdWI4Zc,7140
|
|
64
64
|
solace_agent_mesh/orchestrator/components/orchestrator_register_component.py,sha256=rLoTSwQvYedBnTaeU9pM-viBvY2So7Gv3eYuXMbuhTs,4797
|
|
65
|
-
solace_agent_mesh/orchestrator/components/orchestrator_stimulus_processor_component.py,sha256=
|
|
65
|
+
solace_agent_mesh/orchestrator/components/orchestrator_stimulus_processor_component.py,sha256=_9goJF1Hv02TaF2-u4Zkem2M3-BJV3hk66CDAt_ayek,20146
|
|
66
66
|
solace_agent_mesh/orchestrator/components/orchestrator_streaming_output_component.py,sha256=IhFUMA4GUEcfa7j94QEEt-R6JCF4C58tp1sejHu5nPk,9463
|
|
67
67
|
solace_agent_mesh/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
solace_agent_mesh/services/authorization/providers/base_authorization_provider.py,sha256=4c31MQRzGQdI7ACDgorIqAcxnUjbJwSs0fS06l6NoaI,2105
|
|
@@ -72,10 +72,10 @@ solace_agent_mesh/services/common/__init__.py,sha256=JaiKR7QHNVYeryeyv_bvh_5RQeK
|
|
|
72
72
|
solace_agent_mesh/services/common/auto_expiry.py,sha256=RxohpFZ34tUgOBOSoiFYgJ4aWH703575HN_A5rF0TX4,1598
|
|
73
73
|
solace_agent_mesh/services/common/singleton.py,sha256=AEjOSlWkvAb0oAZsfuoDCOZHM0ZhOu8sTlwN1kw8Mc0,639
|
|
74
74
|
solace_agent_mesh/services/file_service/__init__.py,sha256=Eadj-D024ioIf96cjrwehj-WBZbrUC5CSqa1bKSBf1g,388
|
|
75
|
-
solace_agent_mesh/services/file_service/file_service.py,sha256=
|
|
76
|
-
solace_agent_mesh/services/file_service/file_service_constants.py,sha256=
|
|
77
|
-
solace_agent_mesh/services/file_service/file_transformations.py,sha256=
|
|
78
|
-
solace_agent_mesh/services/file_service/file_utils.py,sha256=
|
|
75
|
+
solace_agent_mesh/services/file_service/file_service.py,sha256=JRQmzz9352fQBoMdpXtAv0ZqeE41hSEiIX-6jW8wSFg,16264
|
|
76
|
+
solace_agent_mesh/services/file_service/file_service_constants.py,sha256=ktWwAPXPBaJbKrtaATOBJnBd2yaLK-Yltz1tgif_o0I,1246
|
|
77
|
+
solace_agent_mesh/services/file_service/file_transformations.py,sha256=ppKIuxsSHjg7jWXDJoasqNxJRvNgfcMuz6jEt2kg0kQ,4672
|
|
78
|
+
solace_agent_mesh/services/file_service/file_utils.py,sha256=qSzZZR3-6g2MQ4YfP-EChra1OKTA5IYixoz_p412GnE,9254
|
|
79
79
|
solace_agent_mesh/services/file_service/file_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
80
|
solace_agent_mesh/services/file_service/file_manager/bucket_file_manager.py,sha256=312ScT5xyfV4Ho7xBvHmM9Q0UqjQ7w4gW3BIWIuG4g4,5783
|
|
81
81
|
solace_agent_mesh/services/file_service/file_manager/file_manager_base.py,sha256=gYrlBlqGRkGESB0xHCFz1Vg29IF9dEvz8c1DNZqRaVo,4915
|
|
@@ -83,12 +83,18 @@ solace_agent_mesh/services/file_service/file_manager/memory_file_manager.py,sha2
|
|
|
83
83
|
solace_agent_mesh/services/file_service/file_manager/volume_file_manager.py,sha256=alOIyG0jWZvchEP9tHhOdnkmXMPDs4W0VQK1bZtCXUc,4041
|
|
84
84
|
solace_agent_mesh/services/file_service/transformers/__init__.py,sha256=srgqGcX0ROzSeiQqbfcQpIq1p1FGBxU_Gu03t8pZ7q8,52
|
|
85
85
|
solace_agent_mesh/services/history_service/__init__.py,sha256=AjMNxbn-i0Zz9e32x-nyKpUVO0PSBYQrguCqOcEPXq0,73
|
|
86
|
-
solace_agent_mesh/services/history_service/history_service.py,sha256=
|
|
86
|
+
solace_agent_mesh/services/history_service/history_service.py,sha256=vQmxwWoeLvlsTh_4MVb042qRV0wTau2zUqtj4ZYpGz8,17476
|
|
87
87
|
solace_agent_mesh/services/history_service/history_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
-
solace_agent_mesh/services/history_service/history_providers/base_history_provider.py,sha256=
|
|
89
|
-
solace_agent_mesh/services/history_service/history_providers/
|
|
90
|
-
solace_agent_mesh/services/history_service/history_providers/
|
|
91
|
-
solace_agent_mesh/services/
|
|
88
|
+
solace_agent_mesh/services/history_service/history_providers/base_history_provider.py,sha256=_YTeW-zccRv8lTANjwJkCKCB3QvBHSufg1WXz2GFRgs,1539
|
|
89
|
+
solace_agent_mesh/services/history_service/history_providers/file_history_provider.py,sha256=f2gtALLpZnUvY6PPOuFzj9WEftmKGilBb_WiEDXKxH8,2290
|
|
90
|
+
solace_agent_mesh/services/history_service/history_providers/index.py,sha256=XSJ8W7F3dfFxhh-aYCOo72agZKEd3-VzGdRqJbMlbqQ,1484
|
|
91
|
+
solace_agent_mesh/services/history_service/history_providers/memory_history_provider.py,sha256=66s1YsE3Tak9CunKk3Jy_p3KP7Ec6dudPwiZNcYfmbU,849
|
|
92
|
+
solace_agent_mesh/services/history_service/history_providers/mongodb_history_provider.py,sha256=TC1I5PADRE-EjydDRS5gav0h8xUC8ryGKfxdUumGPyo,2306
|
|
93
|
+
solace_agent_mesh/services/history_service/history_providers/redis_history_provider.py,sha256=LvkI4m_2FqujJ4G4MiRw15mjTJ8tK1wm6HgIU_2kTOc,2121
|
|
94
|
+
solace_agent_mesh/services/history_service/history_providers/sql_history_provider.py,sha256=UKF0QS2KBXtlqgEgct7VXrVtOleJuJCvRYKIDHukmHc,3171
|
|
95
|
+
solace_agent_mesh/services/history_service/long_term_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
solace_agent_mesh/services/history_service/long_term_memory/long_term_memory.py,sha256=i0FkVVE7xkhE6VK1eu6UTDKqPnbJiMChu5fnjV1qvh0,19295
|
|
97
|
+
solace_agent_mesh/services/llm_service/components/llm_request_component.py,sha256=_LKOC5a0iKoPQRFUEFmXSs5HgT-TeX9iUtl7XbnNR3c,11525
|
|
92
98
|
solace_agent_mesh/services/llm_service/components/llm_service_component_base.py,sha256=vbtHMVRk4dCHDbo-gZfYfLPJYt4WFSq9A51UqVTLz18,5769
|
|
93
99
|
solace_agent_mesh/services/middleware_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
100
|
solace_agent_mesh/services/middleware_service/middleware_service.py,sha256=IoCnWr9XujVmfac6Z5FoLMeogszSwgPGkXXpWdYqKkU,899
|
|
@@ -97,12 +103,12 @@ solace_agent_mesh/tools/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
97
103
|
solace_agent_mesh/tools/components/conversation_formatter.py,sha256=_C60LepjhxPzQYCwjIAp8nQD3XdVpvZdxNO4cLBXXrY,4202
|
|
98
104
|
solace_agent_mesh/tools/components/file_resolver_component.py,sha256=MOKFuIBpxsQuSQF7ogdhtm2E1w8LDMs_giaNKfkx2pY,1965
|
|
99
105
|
solace_agent_mesh/tools/config/runtime_config.py,sha256=9-sCi2W5RSyN8WUHdSv6YVzKWORzK1akM-C19tDSCUo,860
|
|
100
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
101
|
-
solace_agent_mesh/cli/config.py,sha256=
|
|
106
|
+
solace_agent_mesh/cli/__init__.py,sha256=Zn1KFblwuFHiDRdRAiRnDBRkbPttWh44jKa5zG2ov0E,22
|
|
107
|
+
solace_agent_mesh/cli/config.py,sha256=CINCq-K0wFdFSXzgq0vF_zWpjCIZL7hk0XkH9U3a5Nk,2924
|
|
102
108
|
solace_agent_mesh/cli/main.py,sha256=faei8XGbAaexbIfmZBnuo7eqyo5pBm7Rh1pn-Ybjv6M,7127
|
|
103
|
-
solace_agent_mesh/cli/utils.py,sha256=
|
|
109
|
+
solace_agent_mesh/cli/utils.py,sha256=tTVqp73r5fEveSVQdtN21CMcmzJMjcf8_9akQT7hM9k,7798
|
|
104
110
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
solace_agent_mesh/cli/commands/build.py,sha256=
|
|
111
|
+
solace_agent_mesh/cli/commands/build.py,sha256=K_Yo8HibEd-HDK6TYmr-GCkZE2Misy1qwM76X8rSR3Y,25409
|
|
106
112
|
solace_agent_mesh/cli/commands/config.py,sha256=_9Sw3TbTUgAVsEUrbTn72e4lABIchjpKS_JhSIF2EZ0,772
|
|
107
113
|
solace_agent_mesh/cli/commands/run.py,sha256=sx82i75mQgHduJBcMvSCbdQsAZdTVD0NWGNqtCUQEnE,2066
|
|
108
114
|
solace_agent_mesh/cli/commands/visualizer.py,sha256=FhqEMQRQGrNnkkSihuEKE9rFBATQKjTXLwOUJZIsAH0,4646
|
|
@@ -110,7 +116,7 @@ solace_agent_mesh/cli/commands/add/__init__.py,sha256=pT-KD7dTvZdBdrZKBaqtlwwKwj
|
|
|
110
116
|
solace_agent_mesh/cli/commands/add/add.py,sha256=ojA9sjBBaLMLk4ccsFJwyr8hvZgfHTrf0en21TvzenA,3072
|
|
111
117
|
solace_agent_mesh/cli/commands/add/agent.py,sha256=Ekd7AJeub4TF8TYSwJtwBGhU36-rXLo1wGB8j2I3Cuo,3946
|
|
112
118
|
solace_agent_mesh/cli/commands/add/copy_from_plugin.py,sha256=tO9cSF86PT0qC1_2s9A6Z-U8y_3_QTkKW9quPJzu8hk,3444
|
|
113
|
-
solace_agent_mesh/cli/commands/add/gateway.py,sha256=
|
|
119
|
+
solace_agent_mesh/cli/commands/add/gateway.py,sha256=fIXpKHvTV53PPXmgvueHDpPbtAHD1eIPYXRhsaf6qPI,16881
|
|
114
120
|
solace_agent_mesh/cli/commands/chat/__init__.py,sha256=nW7pZhP4UlWBGVtn0EyA4-rrOBofQ1zAxNTh9Ymmh3w,59
|
|
115
121
|
solace_agent_mesh/cli/commands/chat/chat.py,sha256=1zeE972Ao2B7ln2WoEwCAjLK6e8fHmoTZtcK8xgFvHU,12394
|
|
116
122
|
solace_agent_mesh/cli/commands/init/__init__.py,sha256=Z7a4KC9a2Y98CRKbU8_YCWrOjSN3_tuxrAe0SV_bJWM,59
|
|
@@ -119,13 +125,13 @@ solace_agent_mesh/cli/commands/init/broker_step.py,sha256=wsXO0H7i198amS2x_sZ-Zy
|
|
|
119
125
|
solace_agent_mesh/cli/commands/init/builtin_agent_step.py,sha256=uIh_j19U9VRevzOMvqw0IxXjAMNY2dXumA9aUxNi1TM,3075
|
|
120
126
|
solace_agent_mesh/cli/commands/init/check_if_already_done.py,sha256=M8dT7Bs2p2BU8LxBt2DiqRM7WehptWRyp5eyG7Ad4FQ,432
|
|
121
127
|
solace_agent_mesh/cli/commands/init/create_config_file_step.py,sha256=LWGs-HwZ0YSdMBnfn1aM4gjIFavuMrkU5qCKS7klKTE,2167
|
|
122
|
-
solace_agent_mesh/cli/commands/init/create_other_project_files_step.py,sha256=
|
|
128
|
+
solace_agent_mesh/cli/commands/init/create_other_project_files_step.py,sha256=w258q2urQ3Y-1lCrHu1bKlQGNyLWWplLSV42oiBrpjU,5572
|
|
123
129
|
solace_agent_mesh/cli/commands/init/file_service_step.py,sha256=FrmA4Yb082lEFFe4cxLXr_8xT6hC8Zee-5ygR6XO4-E,2256
|
|
124
130
|
solace_agent_mesh/cli/commands/init/init.py,sha256=pkP7mUSSoB14Z6vZVLqPY1x4_U9Nhzjk31J5ofIdpdk,3479
|
|
125
131
|
solace_agent_mesh/cli/commands/init/project_structure_step.py,sha256=pXIeYFmdY0oy0FVnOG0iqeGuK_nwDdICjqyj6b7mEss,518
|
|
126
132
|
solace_agent_mesh/cli/commands/plugin/__init__.py,sha256=zFmLT32wXFLISlIqpfR1Ru5pur2boWwfD-Et5R8PWbs,65
|
|
127
133
|
solace_agent_mesh/cli/commands/plugin/add.py,sha256=T1rD-jvjbX7qi5uH1Q85y_RzBqi1kDUQjymdgibIkdc,3782
|
|
128
|
-
solace_agent_mesh/cli/commands/plugin/build.py,sha256=
|
|
134
|
+
solace_agent_mesh/cli/commands/plugin/build.py,sha256=obo4f-pNblp5YwnKRKQA3P9vJD4A4_O3sLtc6PWPsWE,10164
|
|
129
135
|
solace_agent_mesh/cli/commands/plugin/create.py,sha256=6XwcvIVAmmkbjK_e-JT4D54xk_dxTOwjl9dTDwsjyF4,3748
|
|
130
136
|
solace_agent_mesh/cli/commands/plugin/plugin.py,sha256=ziyj5VOhsdKAMdcGwJ3z3NGC1CcfUKHOihLcxCre2yk,3853
|
|
131
137
|
solace_agent_mesh/cli/commands/plugin/remove.py,sha256=7SHOL2Jy5nMiD1ASavl3DC1jdav52hxDZo2JDs8Mq4o,2629
|
|
@@ -139,34 +145,35 @@ solace_agent_mesh/configs/monitor.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
139
145
|
solace_agent_mesh/configs/monitor_stim_and_errors_to_slack.yaml,sha256=zSOSUvcy8x91xHFdPqIndc8cK8g8Hjxj_1VWxrXYST0,4122
|
|
140
146
|
solace_agent_mesh/configs/monitor_user_feedback.yaml,sha256=iBZWKIA4XIdqKBCVwo39m-9uOXaCe0m5V59GUiSxiqM,1742
|
|
141
147
|
solace_agent_mesh/configs/orchestrator.yaml,sha256=6XtSMVWj87eU9egzNHXynHa2n5Bja1LBn_LZfwwO2aU,9617
|
|
142
|
-
solace_agent_mesh/configs/service_embedding.yaml,sha256=
|
|
143
|
-
solace_agent_mesh/configs/service_llm.yaml,sha256=
|
|
148
|
+
solace_agent_mesh/configs/service_embedding.yaml,sha256=9_uyjX87bqzG0uSX5AVwXEoOrk_LGkybYeoZgL39wbs,3132
|
|
149
|
+
solace_agent_mesh/configs/service_llm.yaml,sha256=GhK7Jk427dcqCtJRI_fidna-xakoWKc8zoGKNkrM2tg,10300
|
|
144
150
|
solace_agent_mesh/configs/visualize_websocket.yaml,sha256=5RlUyqjI2-nOKYUbwoFqfOSDFXLx5LuxraC_hXazdMY,1906
|
|
145
151
|
solace_agent_mesh/templates/action.py,sha256=9U2lfncOa4CPRcgbXbz_BpCGak1ZZVR4UVNELNV-uiI,1401
|
|
146
152
|
solace_agent_mesh/templates/agent.py,sha256=eZb4ZhVkhDdLLUubbHd8obaIyGd610A4bNvoYzkjKqs,771
|
|
147
153
|
solace_agent_mesh/templates/agent.yaml,sha256=wBpBMY-8c_YdwF8RGGVzgizCHxPGhJrKCb4poMnOK1g,2865
|
|
148
|
-
solace_agent_mesh/templates/gateway-config-template.yaml,sha256=
|
|
149
|
-
solace_agent_mesh/templates/gateway-default-config.yaml,sha256=
|
|
154
|
+
solace_agent_mesh/templates/gateway-config-template.yaml,sha256=EKQI9SYlbcRj-xFBjBV8B_XCzGMu3ju-hV_GaU-Jjfw,330
|
|
155
|
+
solace_agent_mesh/templates/gateway-default-config.yaml,sha256=J8KTFpFwf_0o3dUa0dWxEt2RuFjvk_Q9QZz9gGE8RUQ,1144
|
|
150
156
|
solace_agent_mesh/templates/gateway-flows.yaml,sha256=6KufsvEkMitBSZVeu4lPEoqILSN_I5Hh3_LvBusCQRM,3046
|
|
151
157
|
solace_agent_mesh/templates/gateway-header.yaml,sha256=PjwSOjYrYt8lLo8PYo1AQdZkN5M7HxMNJer2CTpP6mc,472
|
|
152
158
|
solace_agent_mesh/templates/gateway_base.py,sha256=vgiNrcIzJYTli2UMPJyFwDCx1IOGW_oOFpZtTcBdHaE,457
|
|
153
159
|
solace_agent_mesh/templates/gateway_input.py,sha256=gkjTYjgpOxMWU_k0EnB0BU_6q3vOAh9IN-fmxu_jW6k,3097
|
|
154
160
|
solace_agent_mesh/templates/gateway_output.py,sha256=fGM2HnYf9RXkOsLcuDD3HR4ozcxHX9UppxBPCUmtSKk,2191
|
|
161
|
+
solace_agent_mesh/templates/plugin-gateway-default-config.yaml,sha256=15ksBXhpCv_8m2kkmyUIlsZb6BZ9Us_Eeq_GQ40SEQI,789
|
|
155
162
|
solace_agent_mesh/templates/plugin-pyproject.toml,sha256=pD146TDV9DYbt6O8pE9O5KdX_CNqGGuy9BYf8TqmGJI,676
|
|
156
|
-
solace_agent_mesh/templates/rest-api-default-config.yaml,sha256=
|
|
163
|
+
solace_agent_mesh/templates/rest-api-default-config.yaml,sha256=9uFIc7IUTN4Es21zDOjrFBITXtmWWahaN2sjC0Y158Q,1300
|
|
157
164
|
solace_agent_mesh/templates/rest-api-flows.yaml,sha256=OVU9QPKlZMzla-G1HnqtKCFaYxgXF7pP1aFUR8LwWDQ,3150
|
|
158
|
-
solace_agent_mesh/templates/slack-default-config.yaml,sha256
|
|
165
|
+
solace_agent_mesh/templates/slack-default-config.yaml,sha256=TTtFSEh2-Y5HUyIIX1NpBtQlQ3R6Fm6aa_AhuIQZIDg,797
|
|
159
166
|
solace_agent_mesh/templates/slack-flows.yaml,sha256=nzLS67tT4Xh_NFynB4XJlr6pomgG5EkatsLBnGS3fBo,3201
|
|
160
167
|
solace_agent_mesh/templates/solace-agent-mesh-default.yaml,sha256=R1xm_uPJqWSrjWRhLlVc2VY-YaFzM92L0sPoAfA45iI,3042
|
|
161
168
|
solace_agent_mesh/templates/solace-agent-mesh-plugin-default.yaml,sha256=T0GgQGHJc8uMNH8mlCqxAH3Zm4Yc-rCPiW1UVY6KcdA,331
|
|
162
|
-
solace_agent_mesh/templates/web-default-config.yaml,sha256=
|
|
169
|
+
solace_agent_mesh/templates/web-default-config.yaml,sha256=v8pR-LKxH80DXnyj6aZ4OkLDknYOEScXm83xuWUzkdc,375
|
|
163
170
|
solace_agent_mesh/templates/web-flows.yaml,sha256=dzy7BvQDNEsvzVb_O38LvdYbKn2XJmtIU2ExhPIRI2k,3028
|
|
164
171
|
solace_agent_mesh/assets/web-visualizer/index.html,sha256=Bn-hrNXJvapfRG-L_hs5K5ezKf53gw_H4x93rIdeAQw,484
|
|
165
172
|
solace_agent_mesh/assets/web-visualizer/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
|
|
166
173
|
solace_agent_mesh/assets/web-visualizer/assets/index-C5awueeJ.js,sha256=tlhSEqOgFpMuwd7X73mdRAxUCxQ8H7TiCfk4oHh6qXY,752048
|
|
167
174
|
solace_agent_mesh/assets/web-visualizer/assets/index-D0qORgkg.css,sha256=sR-djfZhg7oOrDkv7deFLKVioHOSGFA0ZCDPvK8jzYI,12678
|
|
168
|
-
solace_agent_mesh-0.
|
|
169
|
-
solace_agent_mesh-0.
|
|
170
|
-
solace_agent_mesh-0.
|
|
171
|
-
solace_agent_mesh-0.
|
|
172
|
-
solace_agent_mesh-0.
|
|
175
|
+
solace_agent_mesh-0.2.0.dist-info/METADATA,sha256=YIihX8cvY6-tJUYFIylNFsUxfh3TncLt10PB7oLPNDo,10971
|
|
176
|
+
solace_agent_mesh-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
177
|
+
solace_agent_mesh-0.2.0.dist-info/entry_points.txt,sha256=VDI4Kkhc1jy9ajf8Qd08v3lpV4n7zoWBAo6fopQrXL8,108
|
|
178
|
+
solace_agent_mesh-0.2.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
179
|
+
solace_agent_mesh-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|