solace-agent-mesh 0.1.1__py3-none-any.whl → 0.1.2__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/cli/__init__.py +1 -1
- solace_agent_mesh/cli/commands/build.py +27 -2
- solace_agent_mesh/gateway/components/gateway_input.py +11 -1
- solace_agent_mesh/orchestrator/orchestrator_prompt.py +5 -0
- solace_agent_mesh/templates/gateway-config-template.yaml +1 -2
- solace_agent_mesh/templates/gateway-default-config.yaml +2 -2
- solace_agent_mesh/templates/gateway-flows.yaml +1 -4
- solace_agent_mesh/templates/rest-api-default-config.yaml +4 -0
- solace_agent_mesh/templates/rest-api-flows.yaml +1 -0
- solace_agent_mesh/templates/slack-default-config.yaml +7 -0
- solace_agent_mesh/templates/slack-flows.yaml +1 -10
- solace_agent_mesh/templates/web-default-config.yaml +2 -0
- solace_agent_mesh/templates/web-flows.yaml +2 -12
- {solace_agent_mesh-0.1.1.dist-info → solace_agent_mesh-0.1.2.dist-info}/METADATA +1 -1
- {solace_agent_mesh-0.1.1.dist-info → solace_agent_mesh-0.1.2.dist-info}/RECORD +18 -18
- {solace_agent_mesh-0.1.1.dist-info → solace_agent_mesh-0.1.2.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-0.1.1.dist-info → solace_agent_mesh-0.1.2.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-0.1.1.dist-info → solace_agent_mesh-0.1.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.1.
|
|
1
|
+
__version__ = "0.1.2"
|
|
@@ -187,6 +187,17 @@ def build_specific_gateway(
|
|
|
187
187
|
gateway_config_file = os.path.join(subdir_path, "gateway.yaml")
|
|
188
188
|
with open(gateway_config_file, "r", encoding="utf-8") as g:
|
|
189
189
|
gateway_config_content = g.read()
|
|
190
|
+
|
|
191
|
+
# Define config aliases to check for so that if they are missing we can add defaults
|
|
192
|
+
config_aliases = {
|
|
193
|
+
"response_format_prompt": "- response_format_prompt: &response_format_prompt \"\""
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
# Check which aliases are already in the gateway config
|
|
197
|
+
gateway_found_aliases = set()
|
|
198
|
+
for alias in config_aliases:
|
|
199
|
+
if f"&{alias}" in gateway_config_content:
|
|
200
|
+
gateway_found_aliases.add(alias)
|
|
190
201
|
|
|
191
202
|
click.echo("Getting interface types.")
|
|
192
203
|
known_interfaces = ["slack", "web", "rest-api"]
|
|
@@ -225,8 +236,22 @@ def build_specific_gateway(
|
|
|
225
236
|
interface_config_file = os.path.join(subdir_path, interface_file)
|
|
226
237
|
with open(interface_config_file, "r", encoding="utf-8") as g:
|
|
227
238
|
file_content = g.read()
|
|
228
|
-
|
|
229
|
-
|
|
239
|
+
|
|
240
|
+
# Check which aliases are in the interface config
|
|
241
|
+
interface_found_aliases = set()
|
|
242
|
+
for alias in config_aliases:
|
|
243
|
+
if f"&{alias}" in file_content:
|
|
244
|
+
interface_found_aliases.add(alias)
|
|
245
|
+
|
|
246
|
+
reindented_file_content = normalize_and_reindent_yaml(complete_interface_gateway, file_content)
|
|
247
|
+
complete_interface_gateway += reindented_file_content
|
|
248
|
+
|
|
249
|
+
# Add any missing config aliases
|
|
250
|
+
missing_aliases = set(config_aliases.keys()) - gateway_found_aliases - interface_found_aliases
|
|
251
|
+
if missing_aliases:
|
|
252
|
+
complete_interface_gateway += "\n# Default configurations\nshared_config_defaults:\n"
|
|
253
|
+
for alias in missing_aliases:
|
|
254
|
+
complete_interface_gateway += f"{config_aliases[alias]}\n"
|
|
230
255
|
|
|
231
256
|
# Write interface specific flows
|
|
232
257
|
complete_interface_gateway += "\nflows:\n"
|
|
@@ -38,6 +38,12 @@ info = {
|
|
|
38
38
|
},
|
|
39
39
|
"description": "Gateway configuration including originators and their configurations.",
|
|
40
40
|
},
|
|
41
|
+
{
|
|
42
|
+
"name": "response_format_prompt",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "Format instructions for the response that will be passed to the model",
|
|
45
|
+
"default": ""
|
|
46
|
+
}
|
|
41
47
|
],
|
|
42
48
|
"input_schema": {
|
|
43
49
|
"type": "object",
|
|
@@ -129,6 +135,7 @@ class GatewayInput(GatewayBase):
|
|
|
129
135
|
"interaction_type", DEFAULT_INTERACTION_TYPE
|
|
130
136
|
)
|
|
131
137
|
self.identity_component = self._initialize_identity_component()
|
|
138
|
+
self.response_format_prompt = self.get_config("response_format_prompt", "")
|
|
132
139
|
|
|
133
140
|
def _authenticate_user(self, _user_properties: Dict[str, Any]) -> bool:
|
|
134
141
|
# Implement actual authentication logic here
|
|
@@ -164,7 +171,6 @@ class GatewayInput(GatewayBase):
|
|
|
164
171
|
top_level_user_properties = {
|
|
165
172
|
"input_type",
|
|
166
173
|
"session_id",
|
|
167
|
-
"response_format_prompt",
|
|
168
174
|
}
|
|
169
175
|
self.demote_interface_properties(user_properties, top_level_user_properties)
|
|
170
176
|
|
|
@@ -222,6 +228,10 @@ class GatewayInput(GatewayBase):
|
|
|
222
228
|
|
|
223
229
|
stimulus_uuid = self.gateway_id + str(uuid4())
|
|
224
230
|
|
|
231
|
+
# Add response format prompt from config if available
|
|
232
|
+
if self.response_format_prompt:
|
|
233
|
+
user_properties["response_format_prompt"] = self.response_format_prompt
|
|
234
|
+
|
|
225
235
|
user_properties.update(
|
|
226
236
|
{
|
|
227
237
|
"gateway_id": self.gateway_id,
|
|
@@ -214,6 +214,11 @@ The assistant's behavior aligns with the system purpose specified below:
|
|
|
214
214
|
3. After opening agents, the assistant will be reinvoked with an updated list of open agents and their actions.
|
|
215
215
|
4. When opening an agent, provide only a brief status update without detailed explanations.
|
|
216
216
|
5. Do not perform any other actions besides opening the required agents in this step.
|
|
217
|
+
- Report generation:
|
|
218
|
+
1. If a report is requested and no format is specified, create the report in an HTML file.
|
|
219
|
+
2. Generate each section of the report independently and store it in the file service with create_file action. When finishing the report, combine the sections using amfs urls with the resolve=true query parameter to insert the sections into the main document. When generating HTML, create the header first with all the necessary CSS and JS links so that it is clear what css the rest of the document will use.
|
|
220
|
+
3. Images are always very useful in reports, so the assistant will add them when appropriate. If images are embedded in html, they must be resolved and converted to datauri format or they won't render in the final document. This can be done by using the encoding=datauri&resolve=true in the amfs link. For example, <img src="amfs://xxxxxx.png?encoding=datauri&resolve=true". The assistant will take care of the rest. Images can be created in parallel
|
|
221
|
+
4. During report generation in interactive sessions, the assistant will send lots of status messages to indicate what is happening.
|
|
217
222
|
- Handling stimuli with open agents:
|
|
218
223
|
1. Use agents' actions to break down the stimulus into smaller, manageable tasks.
|
|
219
224
|
2. Prioritize using available actions to fulfill the stimulus whenever possible.
|
|
@@ -2,5 +2,4 @@
|
|
|
2
2
|
key: "value" # Add your configuration here
|
|
3
3
|
|
|
4
4
|
- response_format_prompt: &response_format_prompt >
|
|
5
|
-
|
|
6
|
-
**bold**, _italic_, and `code` where necessary.
|
|
5
|
+
Return all responses in markdown format and if the response contains a file or image, return it with the <file> tags and not as a link.
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
- gateway_config: &gateway_config
|
|
17
17
|
gateway_id: {{GATEWAY_ID}}
|
|
18
18
|
system_purpose: >
|
|
19
|
-
The system is an AI Chatbot
|
|
20
|
-
|
|
19
|
+
The system is an AI Chatbot with agentic capabilities. It will use the agents available to provide information, reasoning and general assistance for the users in this system.
|
|
20
|
+
|
|
21
21
|
interaction_type: "interactive"
|
|
22
22
|
|
|
23
23
|
identity:
|
|
@@ -13,12 +13,9 @@
|
|
|
13
13
|
component_config:
|
|
14
14
|
identity_key_field: identity
|
|
15
15
|
<<: *gateway_config
|
|
16
|
+
response_format_prompt: *response_format_prompt
|
|
16
17
|
component_input:
|
|
17
18
|
source_expression: previous
|
|
18
|
-
input_transforms:
|
|
19
|
-
- type: copy
|
|
20
|
-
source_value: *response_format_prompt
|
|
21
|
-
dest_expression: input.user_properties:response_format_prompt
|
|
22
19
|
- component_name: broker_output
|
|
23
20
|
component_module: broker_output
|
|
24
21
|
component_config:
|
|
@@ -22,3 +22,7 @@
|
|
|
22
22
|
frontend_collect_feedback: ${WEBUI_FRONTEND_COLLECT_FEEDBACK}
|
|
23
23
|
frontend_url: ${WEBUI_FRONTEND_URL}
|
|
24
24
|
local_dev : ${WEBUI_LOCAL_DEV}
|
|
25
|
+
|
|
26
|
+
- response_format_prompt: &response_format_prompt >
|
|
27
|
+
Return all responses in markdown format and if the response contains a file or image, return it with the <file> tags and not as a link.
|
|
28
|
+
|
|
@@ -7,3 +7,10 @@
|
|
|
7
7
|
acknowledgement_message: "Chatbot is thinking... :hourglass_flowing_sand:"
|
|
8
8
|
max_total_file_size: 2000 # 2GB
|
|
9
9
|
max_file_size: 500 # 500MB
|
|
10
|
+
|
|
11
|
+
- response_format_prompt: &response_format_prompt >
|
|
12
|
+
- Format the response as a Slack message, using appropriate
|
|
13
|
+
formatting such as *bold*, _italic_, and `code` where necessary.
|
|
14
|
+
- Use bullet points or numbered lists for multiple items.
|
|
15
|
+
- If the response contains a file or image, return it with the <file> tags and not as a link.
|
|
16
|
+
- If including hyperlinks, use the format <url|text>.
|
|
@@ -13,21 +13,13 @@
|
|
|
13
13
|
component_config:
|
|
14
14
|
identity_key_field: user_email
|
|
15
15
|
<<: *gateway_config
|
|
16
|
+
response_format_prompt: *response_format_prompt
|
|
16
17
|
component_input:
|
|
17
18
|
source_expression: previous
|
|
18
19
|
input_transforms:
|
|
19
20
|
- type: copy
|
|
20
21
|
source_expression: input.payload:thread_id
|
|
21
22
|
dest_expression: input.user_properties:session_id
|
|
22
|
-
- type: copy
|
|
23
|
-
source_value: >
|
|
24
|
-
- Format the response as a Slack message, using appropriate
|
|
25
|
-
formatting such as *bold*, _italic_, and `code` where necessary.
|
|
26
|
-
|
|
27
|
-
- Use bullet points or numbered lists for multiple items.
|
|
28
|
-
|
|
29
|
-
- If including links, use the format <url|text>.
|
|
30
|
-
dest_expression: input.user_properties:response_format_prompt
|
|
31
23
|
- component_name: broker_output
|
|
32
24
|
component_module: broker_output
|
|
33
25
|
component_config:
|
|
@@ -87,4 +79,3 @@
|
|
|
87
79
|
dest_expression: user_data.component_input:content
|
|
88
80
|
component_input:
|
|
89
81
|
source_expression: user_data.component_input
|
|
90
|
-
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
- name: start_web_app
|
|
3
|
-
trace_level: ERROR
|
|
4
|
-
components:
|
|
5
|
-
- component_name: start_web_app
|
|
6
|
-
component_package: solace_ai_connector_web
|
|
7
|
-
component_module: solace_ai_connector_web.components.start_web_app
|
|
1
|
+
|
|
8
2
|
# Web to Gateway to Solace
|
|
9
3
|
- name: web_gateway_input_flow
|
|
10
4
|
trace_level: ERROR
|
|
@@ -20,13 +14,9 @@
|
|
|
20
14
|
component_config:
|
|
21
15
|
identity_key_field: user_email
|
|
22
16
|
<<: *gateway_config
|
|
17
|
+
response_format_prompt: *response_format_prompt
|
|
23
18
|
component_input:
|
|
24
19
|
source_expression: previous
|
|
25
|
-
input_transforms:
|
|
26
|
-
- type: copy
|
|
27
|
-
source_value: >
|
|
28
|
-
- Format the response as markdown.
|
|
29
|
-
dest_expression: input.user_properties:response_format_prompt
|
|
30
20
|
- component_name: broker_output
|
|
31
21
|
component_module: broker_output
|
|
32
22
|
component_config:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: solace-agent-mesh
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Solace Agent Mesh is an EDA AI-first platform powered by Solace
|
|
5
5
|
Project-URL: homepage, https://github.com/SolaceLabs/solace-agent-mesh
|
|
6
6
|
Project-URL: repository, https://github.com/SolaceLabs/solace-agent-mesh
|
|
@@ -44,7 +44,7 @@ solace_agent_mesh/common/utils.py,sha256=X7SzLj8Zr-uxZmkLgSIBiePpfJaLsX6zZjY0dgf
|
|
|
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
46
|
solace_agent_mesh/gateway/components/gateway_base.py,sha256=6A1UNHxPnCk4ZLjllTsiE0nIHDUWODsJviIUdKfrQow,1574
|
|
47
|
-
solace_agent_mesh/gateway/components/gateway_input.py,sha256=
|
|
47
|
+
solace_agent_mesh/gateway/components/gateway_input.py,sha256=YqXZmmTikhzNjWklinlyRbGOvBL92ram03lYO8ELE1U,10591
|
|
48
48
|
solace_agent_mesh/gateway/components/gateway_output.py,sha256=pjoNWoSSy1Y4ticVXA70Jry0XmTDTxx9RfhF2LFCyuw,11044
|
|
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
|
|
@@ -57,7 +57,7 @@ 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=2Fmy8AUY1YihI90ba1sJv_1TcOPFzX0w0x3EXi25EaI,8551
|
|
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=lCSrSy_Kn5GkEihvN_sKxWewv8W7ABxh0Sbl_qt3qPY,24238
|
|
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
|
|
@@ -97,12 +97,12 @@ solace_agent_mesh/tools/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
97
97
|
solace_agent_mesh/tools/components/conversation_formatter.py,sha256=_C60LepjhxPzQYCwjIAp8nQD3XdVpvZdxNO4cLBXXrY,4202
|
|
98
98
|
solace_agent_mesh/tools/components/file_resolver_component.py,sha256=MOKFuIBpxsQuSQF7ogdhtm2E1w8LDMs_giaNKfkx2pY,1965
|
|
99
99
|
solace_agent_mesh/tools/config/runtime_config.py,sha256=9-sCi2W5RSyN8WUHdSv6YVzKWORzK1akM-C19tDSCUo,860
|
|
100
|
-
solace_agent_mesh/cli/__init__.py,sha256=
|
|
100
|
+
solace_agent_mesh/cli/__init__.py,sha256=YvuYzWnKtqBb-IqG8HAu-nhIYAsgj9Vmc_b9o7vO-js,22
|
|
101
101
|
solace_agent_mesh/cli/config.py,sha256=sGcJE9zNNGme3n6Q4wOM5Vn2TQSTWHRXPZUBnNEwV40,2841
|
|
102
102
|
solace_agent_mesh/cli/main.py,sha256=faei8XGbAaexbIfmZBnuo7eqyo5pBm7Rh1pn-Ybjv6M,7127
|
|
103
103
|
solace_agent_mesh/cli/utils.py,sha256=TYNDr8IweOtGT11X-ZNPVC6WPgMrcVyAeAa9NvVV5Oo,7632
|
|
104
104
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
solace_agent_mesh/cli/commands/build.py,sha256=
|
|
105
|
+
solace_agent_mesh/cli/commands/build.py,sha256=8jO7BK21lYaIh6UNiE41bYEZbahYoAlorQfZV5pZ3jw,25441
|
|
106
106
|
solace_agent_mesh/cli/commands/config.py,sha256=_9Sw3TbTUgAVsEUrbTn72e4lABIchjpKS_JhSIF2EZ0,772
|
|
107
107
|
solace_agent_mesh/cli/commands/run.py,sha256=sx82i75mQgHduJBcMvSCbdQsAZdTVD0NWGNqtCUQEnE,2066
|
|
108
108
|
solace_agent_mesh/cli/commands/visualizer.py,sha256=FhqEMQRQGrNnkkSihuEKE9rFBATQKjTXLwOUJZIsAH0,4646
|
|
@@ -147,28 +147,28 @@ solace_agent_mesh/configs/visualize_websocket.yaml,sha256=5RlUyqjI2-nOKYUbwoFqfO
|
|
|
147
147
|
solace_agent_mesh/templates/action.py,sha256=9U2lfncOa4CPRcgbXbz_BpCGak1ZZVR4UVNELNV-uiI,1401
|
|
148
148
|
solace_agent_mesh/templates/agent.py,sha256=eZb4ZhVkhDdLLUubbHd8obaIyGd610A4bNvoYzkjKqs,771
|
|
149
149
|
solace_agent_mesh/templates/agent.yaml,sha256=wBpBMY-8c_YdwF8RGGVzgizCHxPGhJrKCb4poMnOK1g,2865
|
|
150
|
-
solace_agent_mesh/templates/gateway-config-template.yaml,sha256=
|
|
151
|
-
solace_agent_mesh/templates/gateway-default-config.yaml,sha256=
|
|
152
|
-
solace_agent_mesh/templates/gateway-flows.yaml,sha256=
|
|
150
|
+
solace_agent_mesh/templates/gateway-config-template.yaml,sha256=TxJEzqud6bMsJjbi8VlYXQoiBl8SB8Z3HF9b1Kf6uok,296
|
|
151
|
+
solace_agent_mesh/templates/gateway-default-config.yaml,sha256=qzuMsrZzg5uPUCLeB5Kcv8vp8BZfQFu95SbkaRY4Lvk,1121
|
|
152
|
+
solace_agent_mesh/templates/gateway-flows.yaml,sha256=6KufsvEkMitBSZVeu4lPEoqILSN_I5Hh3_LvBusCQRM,3046
|
|
153
153
|
solace_agent_mesh/templates/gateway-header.yaml,sha256=PjwSOjYrYt8lLo8PYo1AQdZkN5M7HxMNJer2CTpP6mc,472
|
|
154
154
|
solace_agent_mesh/templates/gateway_base.py,sha256=vgiNrcIzJYTli2UMPJyFwDCx1IOGW_oOFpZtTcBdHaE,457
|
|
155
155
|
solace_agent_mesh/templates/gateway_input.py,sha256=gkjTYjgpOxMWU_k0EnB0BU_6q3vOAh9IN-fmxu_jW6k,3097
|
|
156
156
|
solace_agent_mesh/templates/gateway_output.py,sha256=fGM2HnYf9RXkOsLcuDD3HR4ozcxHX9UppxBPCUmtSKk,2191
|
|
157
157
|
solace_agent_mesh/templates/plugin-pyproject.toml,sha256=pD146TDV9DYbt6O8pE9O5KdX_CNqGGuy9BYf8TqmGJI,676
|
|
158
|
-
solace_agent_mesh/templates/rest-api-default-config.yaml,sha256=
|
|
159
|
-
solace_agent_mesh/templates/rest-api-flows.yaml,sha256=
|
|
160
|
-
solace_agent_mesh/templates/slack-default-config.yaml,sha256
|
|
161
|
-
solace_agent_mesh/templates/slack-flows.yaml,sha256=
|
|
158
|
+
solace_agent_mesh/templates/rest-api-default-config.yaml,sha256=DmUIZMmuzyptrnYgM4wVHqdUX9y0seGgU4UcPTWaTu4,1266
|
|
159
|
+
solace_agent_mesh/templates/rest-api-flows.yaml,sha256=OVU9QPKlZMzla-G1HnqtKCFaYxgXF7pP1aFUR8LwWDQ,3150
|
|
160
|
+
solace_agent_mesh/templates/slack-default-config.yaml,sha256=-C5r61O4UZ7JGA0l_wxQIc5DbfqnZFm20-OU6nBIf-s,754
|
|
161
|
+
solace_agent_mesh/templates/slack-flows.yaml,sha256=nzLS67tT4Xh_NFynB4XJlr6pomgG5EkatsLBnGS3fBo,3201
|
|
162
162
|
solace_agent_mesh/templates/solace-agent-mesh-default.yaml,sha256=R1xm_uPJqWSrjWRhLlVc2VY-YaFzM92L0sPoAfA45iI,3042
|
|
163
163
|
solace_agent_mesh/templates/solace-agent-mesh-plugin-default.yaml,sha256=T0GgQGHJc8uMNH8mlCqxAH3Zm4Yc-rCPiW1UVY6KcdA,331
|
|
164
|
-
solace_agent_mesh/templates/web-default-config.yaml,sha256=
|
|
165
|
-
solace_agent_mesh/templates/web-flows.yaml,sha256=
|
|
164
|
+
solace_agent_mesh/templates/web-default-config.yaml,sha256=8gsiV2ar1ZPEL6w-ofWTGb3gzC0IRlETGk_fBVWxcwo,341
|
|
165
|
+
solace_agent_mesh/templates/web-flows.yaml,sha256=dzy7BvQDNEsvzVb_O38LvdYbKn2XJmtIU2ExhPIRI2k,3028
|
|
166
166
|
solace_agent_mesh/assets/web-visualizer/index.html,sha256=Bn-hrNXJvapfRG-L_hs5K5ezKf53gw_H4x93rIdeAQw,484
|
|
167
167
|
solace_agent_mesh/assets/web-visualizer/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
|
|
168
168
|
solace_agent_mesh/assets/web-visualizer/assets/index-C5awueeJ.js,sha256=tlhSEqOgFpMuwd7X73mdRAxUCxQ8H7TiCfk4oHh6qXY,752048
|
|
169
169
|
solace_agent_mesh/assets/web-visualizer/assets/index-D0qORgkg.css,sha256=sR-djfZhg7oOrDkv7deFLKVioHOSGFA0ZCDPvK8jzYI,12678
|
|
170
|
-
solace_agent_mesh-0.1.
|
|
171
|
-
solace_agent_mesh-0.1.
|
|
172
|
-
solace_agent_mesh-0.1.
|
|
173
|
-
solace_agent_mesh-0.1.
|
|
174
|
-
solace_agent_mesh-0.1.
|
|
170
|
+
solace_agent_mesh-0.1.2.dist-info/METADATA,sha256=jESq2kEL6MR8C2i2VrAnamf5QqOKsy9PXiVGdpVV2D8,9996
|
|
171
|
+
solace_agent_mesh-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
172
|
+
solace_agent_mesh-0.1.2.dist-info/entry_points.txt,sha256=VDI4Kkhc1jy9ajf8Qd08v3lpV4n7zoWBAo6fopQrXL8,108
|
|
173
|
+
solace_agent_mesh-0.1.2.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
174
|
+
solace_agent_mesh-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|