solace-agent-mesh 1.3.1__py3-none-any.whl → 1.3.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/agent/protocol/event_handlers.py +91 -0
- solace_agent_mesh/agent/sac/app.py +2 -0
- solace_agent_mesh/assets/docs/404.html +3 -3
- solace_agent_mesh/assets/docs/assets/js/483cef9a.03d5dceb.js +1 -0
- solace_agent_mesh/assets/docs/assets/js/{main.1c79039d.js → main.4adc477a.js} +2 -2
- solace_agent_mesh/assets/docs/assets/js/{runtime~main.858117b7.js → runtime~main.cf0229ea.js} +1 -1
- solace_agent_mesh/assets/docs/docs/documentation/Enterprise/installation/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/Enterprise/single-sign-on/index.html +5 -5
- solace_agent_mesh/assets/docs/docs/documentation/Migrations/A2A Upgrade To 0.3.0/a2a-gateway-upgrade-to-0.3.0/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/Migrations/A2A Upgrade To 0.3.0/a2a-technical-migration-map/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-python-tools/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html +3 -3
- solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html +3 -3
- solace_agent_mesh/assets/docs/lunr-index-1757704179464.json +1 -0
- solace_agent_mesh/assets/docs/lunr-index.json +1 -1
- solace_agent_mesh/assets/docs/search-doc-1757704179464.json +1 -0
- solace_agent_mesh/assets/docs/search-doc.json +1 -1
- solace_agent_mesh/cli/__init__.py +1 -1
- solace_agent_mesh/client/webui/frontend/static/assets/{main-C1k9E0aC.js → main-DjoMeldu.js} +8 -8
- solace_agent_mesh/client/webui/frontend/static/index.html +1 -1
- solace_agent_mesh/common/a2a/__init__.py +4 -0
- solace_agent_mesh/common/a2a/protocol.py +20 -0
- solace_agent_mesh/common/sac/sam_component_base.py +29 -9
- solace_agent_mesh/common/sam_events/__init__.py +9 -0
- solace_agent_mesh/common/sam_events/event_service.py +207 -0
- solace_agent_mesh/gateway/http_sse/alembic/env.py +1 -1
- solace_agent_mesh/gateway/http_sse/component.py +45 -35
- solace_agent_mesh/gateway/http_sse/dependencies.py +123 -60
- solace_agent_mesh/gateway/http_sse/main.py +20 -33
- solace_agent_mesh/gateway/http_sse/repository/__init__.py +37 -0
- solace_agent_mesh/gateway/http_sse/repository/entities/__init__.py +9 -0
- solace_agent_mesh/gateway/http_sse/repository/entities/message.py +41 -0
- solace_agent_mesh/gateway/http_sse/repository/entities/session.py +45 -0
- solace_agent_mesh/gateway/http_sse/repository/entities/session_history.py +16 -0
- solace_agent_mesh/gateway/http_sse/repository/interfaces.py +64 -0
- solace_agent_mesh/gateway/http_sse/repository/message_repository.py +78 -0
- solace_agent_mesh/gateway/http_sse/repository/models/__init__.py +9 -0
- solace_agent_mesh/gateway/http_sse/repository/models/base.py +7 -0
- solace_agent_mesh/gateway/http_sse/repository/models/message_model.py +27 -0
- solace_agent_mesh/gateway/http_sse/repository/models/session_model.py +27 -0
- solace_agent_mesh/gateway/http_sse/repository/session_repository.py +139 -0
- solace_agent_mesh/gateway/http_sse/routers/config.py +1 -0
- solace_agent_mesh/gateway/http_sse/routers/dto/requests/__init__.py +20 -0
- solace_agent_mesh/gateway/http_sse/{api → routers}/dto/requests/session_requests.py +1 -8
- solace_agent_mesh/gateway/http_sse/routers/dto/responses/__init__.py +16 -0
- solace_agent_mesh/gateway/http_sse/{api → routers}/dto/responses/session_responses.py +3 -30
- solace_agent_mesh/gateway/http_sse/{api/controllers/session_controller.py → routers/sessions.py} +20 -77
- solace_agent_mesh/gateway/http_sse/routers/tasks.py +42 -49
- solace_agent_mesh/gateway/http_sse/{api/controllers/user_controller.py → routers/users.py} +1 -1
- solace_agent_mesh/gateway/http_sse/services/session_service.py +245 -0
- solace_agent_mesh/gateway/http_sse/session_manager.py +0 -3
- solace_agent_mesh/gateway/http_sse/shared/enums.py +0 -5
- {solace_agent_mesh-1.3.1.dist-info → solace_agent_mesh-1.3.2.dist-info}/METADATA +1 -1
- {solace_agent_mesh-1.3.1.dist-info → solace_agent_mesh-1.3.2.dist-info}/RECORD +90 -98
- solace_agent_mesh/assets/docs/assets/js/483cef9a.4e972867.js +0 -1
- solace_agent_mesh/assets/docs/lunr-index-1757531604543.json +0 -1
- solace_agent_mesh/assets/docs/search-doc-1757531604543.json +0 -1
- solace_agent_mesh/gateway/http_sse/ARCHITECTURE_GUIDE.md +0 -676
- solace_agent_mesh/gateway/http_sse/api/__init__.py +0 -11
- solace_agent_mesh/gateway/http_sse/api/controllers/__init__.py +0 -9
- solace_agent_mesh/gateway/http_sse/api/controllers/task_controller.py +0 -279
- solace_agent_mesh/gateway/http_sse/api/dto/requests/__init__.py +0 -37
- solace_agent_mesh/gateway/http_sse/api/dto/requests/task_requests.py +0 -66
- solace_agent_mesh/gateway/http_sse/api/dto/responses/__init__.py +0 -43
- solace_agent_mesh/gateway/http_sse/api/dto/responses/task_responses.py +0 -74
- solace_agent_mesh/gateway/http_sse/application/__init__.py +0 -3
- solace_agent_mesh/gateway/http_sse/application/services/__init__.py +0 -3
- solace_agent_mesh/gateway/http_sse/application/services/session_service.py +0 -135
- solace_agent_mesh/gateway/http_sse/domain/entities/__init__.py +0 -3
- solace_agent_mesh/gateway/http_sse/domain/entities/session.py +0 -90
- solace_agent_mesh/gateway/http_sse/domain/repositories/__init__.py +0 -3
- solace_agent_mesh/gateway/http_sse/domain/repositories/session_repository.py +0 -54
- solace_agent_mesh/gateway/http_sse/infrastructure/__init__.py +0 -4
- solace_agent_mesh/gateway/http_sse/infrastructure/dependency_injection/__init__.py +0 -3
- solace_agent_mesh/gateway/http_sse/infrastructure/dependency_injection/container.py +0 -123
- solace_agent_mesh/gateway/http_sse/infrastructure/persistence/__init__.py +0 -4
- solace_agent_mesh/gateway/http_sse/infrastructure/persistence/database_persistence_service.py +0 -16
- solace_agent_mesh/gateway/http_sse/infrastructure/persistence/database_service.py +0 -119
- solace_agent_mesh/gateway/http_sse/infrastructure/persistence/models.py +0 -31
- solace_agent_mesh/gateway/http_sse/infrastructure/persistence_service.py +0 -12
- solace_agent_mesh/gateway/http_sse/infrastructure/repositories/__init__.py +0 -3
- solace_agent_mesh/gateway/http_sse/infrastructure/repositories/session_repository.py +0 -174
- /solace_agent_mesh/assets/docs/assets/js/{main.1c79039d.js.LICENSE.txt → main.4adc477a.js.LICENSE.txt} +0 -0
- /solace_agent_mesh/gateway/http_sse/{api → routers}/dto/__init__.py +0 -0
- {solace_agent_mesh-1.3.1.dist-info → solace_agent_mesh-1.3.2.dist-info}/WHEEL +0 -0
- {solace_agent_mesh-1.3.1.dist-info → solace_agent_mesh-1.3.2.dist-info}/entry_points.txt +0 -0
- {solace_agent_mesh-1.3.1.dist-info → solace_agent_mesh-1.3.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
import uuid
|
|
2
|
+
from datetime import datetime, timezone
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from solace_ai_connector.common.log import log
|
|
6
|
+
|
|
7
|
+
from ..repository import (
|
|
8
|
+
IMessageRepository,
|
|
9
|
+
ISessionRepository,
|
|
10
|
+
Message,
|
|
11
|
+
Session,
|
|
12
|
+
SessionHistory,
|
|
13
|
+
)
|
|
14
|
+
from ..shared.enums import MessageType, SenderType
|
|
15
|
+
from ..shared.types import PaginationInfo, SessionId, UserId
|
|
16
|
+
|
|
17
|
+
if TYPE_CHECKING:
|
|
18
|
+
from ..component import WebUIBackendComponent
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class SessionService:
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
session_repository: ISessionRepository,
|
|
25
|
+
message_repository: IMessageRepository,
|
|
26
|
+
component: "WebUIBackendComponent" = None,
|
|
27
|
+
):
|
|
28
|
+
self.session_repository = session_repository
|
|
29
|
+
self.message_repository = message_repository
|
|
30
|
+
self.component = component
|
|
31
|
+
|
|
32
|
+
def get_user_sessions(
|
|
33
|
+
self, user_id: UserId, pagination: PaginationInfo | None = None
|
|
34
|
+
) -> list[Session]:
|
|
35
|
+
if not user_id or user_id.strip() == "":
|
|
36
|
+
raise ValueError("User ID cannot be empty")
|
|
37
|
+
|
|
38
|
+
return self.session_repository.find_by_user(user_id, pagination)
|
|
39
|
+
|
|
40
|
+
def get_session_details(
|
|
41
|
+
self, session_id: SessionId, user_id: UserId
|
|
42
|
+
) -> Session | None:
|
|
43
|
+
if not self._is_valid_session_id(session_id):
|
|
44
|
+
return None
|
|
45
|
+
|
|
46
|
+
return self.session_repository.find_user_session(session_id, user_id)
|
|
47
|
+
|
|
48
|
+
def get_session_history(
|
|
49
|
+
self,
|
|
50
|
+
session_id: SessionId,
|
|
51
|
+
user_id: UserId,
|
|
52
|
+
pagination: PaginationInfo | None = None,
|
|
53
|
+
) -> SessionHistory | None:
|
|
54
|
+
if not self._is_valid_session_id(session_id):
|
|
55
|
+
return None
|
|
56
|
+
|
|
57
|
+
result = self.session_repository.find_user_session_with_messages(
|
|
58
|
+
session_id, user_id, pagination
|
|
59
|
+
)
|
|
60
|
+
if not result:
|
|
61
|
+
return None
|
|
62
|
+
|
|
63
|
+
session, messages = result
|
|
64
|
+
return SessionHistory(
|
|
65
|
+
session=session,
|
|
66
|
+
messages=messages,
|
|
67
|
+
total_message_count=len(messages),
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
def create_session(
|
|
71
|
+
self,
|
|
72
|
+
user_id: UserId,
|
|
73
|
+
name: str | None = None,
|
|
74
|
+
agent_id: str | None = None,
|
|
75
|
+
session_id: str | None = None,
|
|
76
|
+
) -> Session:
|
|
77
|
+
if not user_id or user_id.strip() == "":
|
|
78
|
+
raise ValueError("User ID cannot be empty")
|
|
79
|
+
|
|
80
|
+
if not session_id:
|
|
81
|
+
session_id = str(uuid.uuid4())
|
|
82
|
+
|
|
83
|
+
# Leave name as None/empty - frontend will generate display name if needed
|
|
84
|
+
|
|
85
|
+
now = datetime.now(timezone.utc)
|
|
86
|
+
session = Session(
|
|
87
|
+
id=session_id,
|
|
88
|
+
user_id=user_id,
|
|
89
|
+
name=name,
|
|
90
|
+
agent_id=agent_id,
|
|
91
|
+
created_at=now,
|
|
92
|
+
updated_at=now,
|
|
93
|
+
last_activity=now,
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
created_session = self.session_repository.save(session)
|
|
97
|
+
log.info("Created new session %s for user %s", created_session.id, user_id)
|
|
98
|
+
|
|
99
|
+
return created_session
|
|
100
|
+
|
|
101
|
+
def update_session_name(
|
|
102
|
+
self, session_id: SessionId, user_id: UserId, name: str
|
|
103
|
+
) -> Session | None:
|
|
104
|
+
if not self._is_valid_session_id(session_id):
|
|
105
|
+
raise ValueError("Invalid session ID")
|
|
106
|
+
|
|
107
|
+
if not name or len(name.strip()) == 0:
|
|
108
|
+
raise ValueError("Session name cannot be empty")
|
|
109
|
+
|
|
110
|
+
if len(name.strip()) > 255:
|
|
111
|
+
raise ValueError("Session name cannot exceed 255 characters")
|
|
112
|
+
|
|
113
|
+
session = self.session_repository.find_user_session(session_id, user_id)
|
|
114
|
+
if not session:
|
|
115
|
+
return None
|
|
116
|
+
|
|
117
|
+
session.update_name(name)
|
|
118
|
+
updated_session = self.session_repository.save(session)
|
|
119
|
+
|
|
120
|
+
log.info("Updated session %s name to '%s'", session_id, name)
|
|
121
|
+
return updated_session
|
|
122
|
+
|
|
123
|
+
def delete_session_with_notifications(
|
|
124
|
+
self, session_id: SessionId, user_id: UserId
|
|
125
|
+
) -> bool:
|
|
126
|
+
if not self._is_valid_session_id(session_id):
|
|
127
|
+
raise ValueError("Invalid session ID")
|
|
128
|
+
|
|
129
|
+
session = self.session_repository.find_user_session(session_id, user_id)
|
|
130
|
+
if not session:
|
|
131
|
+
log.warning(
|
|
132
|
+
"Attempted to delete non-existent session %s by user %s",
|
|
133
|
+
session_id,
|
|
134
|
+
user_id,
|
|
135
|
+
)
|
|
136
|
+
return False
|
|
137
|
+
|
|
138
|
+
agent_id = session.agent_id
|
|
139
|
+
|
|
140
|
+
if not session.can_be_deleted_by_user(user_id):
|
|
141
|
+
log.warning(
|
|
142
|
+
"User %s not authorized to delete session %s", user_id, session_id
|
|
143
|
+
)
|
|
144
|
+
return False
|
|
145
|
+
|
|
146
|
+
deleted = self.session_repository.delete(session_id, user_id)
|
|
147
|
+
if not deleted:
|
|
148
|
+
return False
|
|
149
|
+
|
|
150
|
+
log.info("Session %s deleted successfully by user %s", session_id, user_id)
|
|
151
|
+
|
|
152
|
+
if agent_id and self.component:
|
|
153
|
+
self._notify_agent_of_session_deletion(session_id, user_id, agent_id)
|
|
154
|
+
|
|
155
|
+
return True
|
|
156
|
+
|
|
157
|
+
def add_message_to_session(
|
|
158
|
+
self,
|
|
159
|
+
session_id: SessionId,
|
|
160
|
+
user_id: UserId,
|
|
161
|
+
message: str,
|
|
162
|
+
sender_type: SenderType,
|
|
163
|
+
sender_name: str,
|
|
164
|
+
agent_id: str | None = None,
|
|
165
|
+
message_type: MessageType = MessageType.TEXT,
|
|
166
|
+
) -> Message:
|
|
167
|
+
if not self._is_valid_session_id(session_id):
|
|
168
|
+
raise ValueError("Invalid session ID")
|
|
169
|
+
|
|
170
|
+
if not message or message.strip() == "":
|
|
171
|
+
raise ValueError("Message cannot be empty")
|
|
172
|
+
|
|
173
|
+
session = self.session_repository.find_user_session(session_id, user_id)
|
|
174
|
+
if not session:
|
|
175
|
+
session = self.create_session(
|
|
176
|
+
user_id=user_id,
|
|
177
|
+
agent_id=agent_id,
|
|
178
|
+
session_id=session_id,
|
|
179
|
+
)
|
|
180
|
+
|
|
181
|
+
message_entity = Message(
|
|
182
|
+
id=str(uuid.uuid4()),
|
|
183
|
+
session_id=session_id,
|
|
184
|
+
message=message.strip(),
|
|
185
|
+
sender_type=sender_type,
|
|
186
|
+
sender_name=sender_name,
|
|
187
|
+
message_type=message_type,
|
|
188
|
+
created_at=datetime.now(timezone.utc),
|
|
189
|
+
)
|
|
190
|
+
|
|
191
|
+
saved_message = self.message_repository.save(message_entity)
|
|
192
|
+
|
|
193
|
+
session.mark_activity()
|
|
194
|
+
self.session_repository.save(session)
|
|
195
|
+
|
|
196
|
+
log.info("Added message to session %s from %s", session_id, sender_name)
|
|
197
|
+
return saved_message
|
|
198
|
+
|
|
199
|
+
def _is_valid_session_id(self, session_id: SessionId) -> bool:
|
|
200
|
+
return (
|
|
201
|
+
session_id is not None
|
|
202
|
+
and session_id.strip() != ""
|
|
203
|
+
and session_id not in ["null", "undefined"]
|
|
204
|
+
)
|
|
205
|
+
|
|
206
|
+
def _notify_agent_of_session_deletion(
|
|
207
|
+
self, session_id: SessionId, user_id: UserId, agent_id: str
|
|
208
|
+
) -> None:
|
|
209
|
+
try:
|
|
210
|
+
log.info(
|
|
211
|
+
"Publishing session deletion event for session %s (agent %s, user %s)",
|
|
212
|
+
session_id,
|
|
213
|
+
agent_id,
|
|
214
|
+
user_id,
|
|
215
|
+
)
|
|
216
|
+
|
|
217
|
+
if hasattr(self.component, "sam_events"):
|
|
218
|
+
success = self.component.sam_events.publish_session_deleted(
|
|
219
|
+
session_id=session_id,
|
|
220
|
+
user_id=user_id,
|
|
221
|
+
agent_id=agent_id,
|
|
222
|
+
gateway_id=self.component.gateway_id,
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
if success:
|
|
226
|
+
log.info(
|
|
227
|
+
"Successfully published session deletion event for session %s",
|
|
228
|
+
session_id,
|
|
229
|
+
)
|
|
230
|
+
else:
|
|
231
|
+
log.warning(
|
|
232
|
+
"Failed to publish session deletion event for session %s",
|
|
233
|
+
session_id,
|
|
234
|
+
)
|
|
235
|
+
else:
|
|
236
|
+
log.warning(
|
|
237
|
+
"SAM Events not available for session deletion notification"
|
|
238
|
+
)
|
|
239
|
+
|
|
240
|
+
except Exception as e:
|
|
241
|
+
log.warning(
|
|
242
|
+
"Failed to publish session deletion event to agent %s: %s",
|
|
243
|
+
agent_id,
|
|
244
|
+
e,
|
|
245
|
+
)
|
|
@@ -9,7 +9,6 @@ from typing import Any
|
|
|
9
9
|
from solace_ai_connector.common.log import log
|
|
10
10
|
from starlette.requests import Request
|
|
11
11
|
|
|
12
|
-
from .infrastructure.persistence_service import PersistenceService
|
|
13
12
|
|
|
14
13
|
SESSION_KEY_CLIENT_ID = "a2a_client_id"
|
|
15
14
|
SESSION_KEY_SESSION_ID = "a2a_session_id"
|
|
@@ -28,14 +27,12 @@ class SessionManager:
|
|
|
28
27
|
self,
|
|
29
28
|
secret_key: str,
|
|
30
29
|
app_config: dict[str, Any],
|
|
31
|
-
persistence_service: "PersistenceService",
|
|
32
30
|
):
|
|
33
31
|
if not secret_key:
|
|
34
32
|
raise ValueError("Session secret key cannot be empty.")
|
|
35
33
|
self.secret_key = secret_key
|
|
36
34
|
self.force_user_identity = app_config.get("force_user_identity")
|
|
37
35
|
self.use_authorization = app_config.get("frontend_use_authorization", False)
|
|
38
|
-
self.persistence_service = persistence_service
|
|
39
36
|
self._temp_code_cache = {}
|
|
40
37
|
log.info("[SessionManager] Initialized.")
|
|
41
38
|
if self.force_user_identity:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: solace-agent-mesh
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Solace Agent Mesh is an open-source framework for building event-driven, multi-agent AI systems where specialized agents collaborate on complex tasks.
|
|
5
5
|
Project-URL: Homepage, https://github.com/SolaceLabs/solace-agent-mesh
|
|
6
6
|
Project-URL: Repository, https://github.com/SolaceLabs/solace-agent-mesh
|
|
@@ -24,10 +24,10 @@ solace_agent_mesh/agent/adk/artifacts/s3_artifact_service.py,sha256=6CyKDOuQJ4b0
|
|
|
24
24
|
solace_agent_mesh/agent/adk/models/lite_llm.py,sha256=Enia0uFs2epagavdaCWNnvMFIL7VxRuo0A6mYBQZGWQ,30325
|
|
25
25
|
solace_agent_mesh/agent/adk/models/models_llm.txt,sha256=tpihTC3M1-WXduJgZerCGcJzNUfRSsbtol4VFhKyd6U,6119
|
|
26
26
|
solace_agent_mesh/agent/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=
|
|
27
|
+
solace_agent_mesh/agent/protocol/event_handlers.py,sha256=qLpQoGsB_8ZazrFmGdPmmCDOTjJk6W6Ow8BYK5Z7lYg,72973
|
|
28
28
|
solace_agent_mesh/agent/protocol/protocol_llm.txt,sha256=3-ojfRlRtmmr6RuiAx_r1ib3LzSaRWjJdDaUpM9mZ5E,3929
|
|
29
29
|
solace_agent_mesh/agent/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
solace_agent_mesh/agent/sac/app.py,sha256=
|
|
30
|
+
solace_agent_mesh/agent/sac/app.py,sha256=OlJqD48qdb8dB8EiZQe_0HqK80TVfqc9baQWWC01Phw,32907
|
|
31
31
|
solace_agent_mesh/agent/sac/component.py,sha256=tAc2UJkMSJzcVOGecwW5M2BMzZGEXqMlEAJouXMInEs,130085
|
|
32
32
|
solace_agent_mesh/agent/sac/patch_adk.py,sha256=LQhPvwpEVeeDVUgZD-p8CTxft-jRv_OadMR-gR1uTXk,4266
|
|
33
33
|
solace_agent_mesh/agent/sac/sac_llm.txt,sha256=KcnVBK8oBuyguMkrCzG773GOQyPqscGxK7VdK2RYYco,9101
|
|
@@ -59,12 +59,12 @@ solace_agent_mesh/common/common_llm.txt,sha256=3CPdoLFPf3Mmy93YkI7_bFZGjbdWDN3W1
|
|
|
59
59
|
solace_agent_mesh/common/constants.py,sha256=2lImuxA2sxiS38RNQ4-i1BAwPmekPRnKrhPG4hkJjdE,51
|
|
60
60
|
solace_agent_mesh/common/data_parts.py,sha256=Fc3kTG5PHvQWe_u-5GR8E4hgEUm2VqRTrqPSC3Yy4Og,3141
|
|
61
61
|
solace_agent_mesh/common/exceptions.py,sha256=or9OTXM587Ij5yXlF4fagwqXUcRPPDFNX852GPZk09Y,845
|
|
62
|
-
solace_agent_mesh/common/a2a/__init__.py,sha256=
|
|
62
|
+
solace_agent_mesh/common/a2a/__init__.py,sha256=QpyLSDeoN_KhKY189ZPoU7145btU7cB-lLyOpjYsY98,6363
|
|
63
63
|
solace_agent_mesh/common/a2a/a2a_llm.txt,sha256=xMdFM0DKJDIu9MZQdIPMqpqJxSN3eQyFnJLK5wl3cOg,13638
|
|
64
64
|
solace_agent_mesh/common/a2a/artifact.py,sha256=McPSqCT2ZQNJAdxzQ7elkTJR7rplPTNx1oay2La0fxI,10922
|
|
65
65
|
solace_agent_mesh/common/a2a/events.py,sha256=-rltDOLfD5dxI-4JpIi3nytEm8LrsszaoVmKk2Rm82s,4861
|
|
66
66
|
solace_agent_mesh/common/a2a/message.py,sha256=8SOPXhOBPPnbcndZppH79ktkupFayG7WyIEKbl0MtU0,8981
|
|
67
|
-
solace_agent_mesh/common/a2a/protocol.py,sha256=
|
|
67
|
+
solace_agent_mesh/common/a2a/protocol.py,sha256=F8nXKfLJrKNZiI6oCf-hsHsukv24on4ztmIAgZRriIc,17659
|
|
68
68
|
solace_agent_mesh/common/a2a/task.py,sha256=906ByBEw7mlZEabMmgUSkzlFEHUC3r1HYwSuP2OdLog,3153
|
|
69
69
|
solace_agent_mesh/common/a2a/translation.py,sha256=mYrkzRwQnVngrPDwHdGbFRPckriR-7R_IClHnckHOxo,24735
|
|
70
70
|
solace_agent_mesh/common/a2a/types.py,sha256=N0azqlzGXwzmNQ9MLLR1b7lfmY_GrZ4JDHZQMe8sB0g,1717
|
|
@@ -82,7 +82,9 @@ solace_agent_mesh/common/middleware/middleware_llm.txt,sha256=TSgh6Z5zXD7XoSrdD2
|
|
|
82
82
|
solace_agent_mesh/common/middleware/registry.py,sha256=5eQQW_E61_kBs4W8JZA115wv_tEggJwqmhxkmqAefHI,3931
|
|
83
83
|
solace_agent_mesh/common/sac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
84
|
solace_agent_mesh/common/sac/sac_llm.txt,sha256=kylXMKzkSl7JBSkIaPYeU4cS3r2bMwsWd60sTQNypqY,2841
|
|
85
|
-
solace_agent_mesh/common/sac/sam_component_base.py,sha256=
|
|
85
|
+
solace_agent_mesh/common/sac/sam_component_base.py,sha256=i6kLvKq4aE5mESJOdMsLuGqc-H1tzNJTUtcO49hRoGs,10583
|
|
86
|
+
solace_agent_mesh/common/sam_events/__init__.py,sha256=J83dwcSjizOxMp4er9kNXdpP-nwGe8I8hTRGyVRZeeQ,290
|
|
87
|
+
solace_agent_mesh/common/sam_events/event_service.py,sha256=9x4lrnl1-d3BnLduJC0m4qLzVDTJtK8wKh3t29Y-ioo,7599
|
|
86
88
|
solace_agent_mesh/common/services/__init__.py,sha256=4m4Vnp-DgXSsj-JFcE5ONAwjyWNm8IuaIxF2a0hV0SA,114
|
|
87
89
|
solace_agent_mesh/common/services/employee_service.py,sha256=sIxj0Nt7JRL52P8MzGv3XfCXlBoGRSPOGkq9moMvA4s,6269
|
|
88
90
|
solace_agent_mesh/common/services/identity_service.py,sha256=o6T-hnzfyTr-KAGcHhOEfS-y2jDfLGgESSuSpWFwxzA,4670
|
|
@@ -118,72 +120,62 @@ solace_agent_mesh/gateway/base/app.py,sha256=LWIdT9by6Dg3sWCUgmfF36TwMJ04tyYfZHQ
|
|
|
118
120
|
solace_agent_mesh/gateway/base/base_llm.txt,sha256=51U3VfwzCfptYxcFIjmNE8Wt07cgFfH3VlEp2kaXBZU,11291
|
|
119
121
|
solace_agent_mesh/gateway/base/component.py,sha256=chHk4h13XLhOOGjEBIu3b7Ksr_ALcoWw7TUBOj5kofE,55145
|
|
120
122
|
solace_agent_mesh/gateway/base/task_context.py,sha256=sFRRHyvBij-xms1f_VFc8om8-xIpRZawIctWtdmi6QY,2446
|
|
121
|
-
solace_agent_mesh/gateway/http_sse/ARCHITECTURE_GUIDE.md,sha256=oaCZAILbWxKWA00DjtEUT63gi6SFir3hjnx5xcpeh9U,20370
|
|
122
123
|
solace_agent_mesh/gateway/http_sse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
124
|
solace_agent_mesh/gateway/http_sse/alembic.ini,sha256=-LacLcmHWd11GCBfh5pfBcabzOuu712yph3LBENKtoo,4864
|
|
124
125
|
solace_agent_mesh/gateway/http_sse/app.py,sha256=5sYWVFgxA1tbjyKRSHw0E84mQ_TemDAWU2g7_IkWCmw,7696
|
|
125
|
-
solace_agent_mesh/gateway/http_sse/component.py,sha256=
|
|
126
|
-
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=
|
|
126
|
+
solace_agent_mesh/gateway/http_sse/component.py,sha256=34DundfCU1rtbSR72f0Ki6qGVqR8OvOmj26_d2_ZG14,72671
|
|
127
|
+
solace_agent_mesh/gateway/http_sse/dependencies.py,sha256=bVPIPKoy98sZcthVLHRmkGwcem5ZVeuGrBuLuaHPnkc,17797
|
|
127
128
|
solace_agent_mesh/gateway/http_sse/http_sse_llm.txt,sha256=Jx6IJWYFl48LmW-xDuCtjpubs0iPY54bt6bLWF_SNUw,14271
|
|
128
|
-
solace_agent_mesh/gateway/http_sse/main.py,sha256=
|
|
129
|
-
solace_agent_mesh/gateway/http_sse/session_manager.py,sha256=
|
|
129
|
+
solace_agent_mesh/gateway/http_sse/main.py,sha256=Tx1rEcpzuYCh9_a1_ppJSiLQSXXqgFNTGB-MixqZ53w,26972
|
|
130
|
+
solace_agent_mesh/gateway/http_sse/session_manager.py,sha256=4AReeS6-p-2MqE0AOlBrHSoU-ADC4W7dJ28aVtZbDp0,8538
|
|
130
131
|
solace_agent_mesh/gateway/http_sse/sse_manager.py,sha256=c51QIm80Q1G8aOzimk06ZaOH9wv2bl_WREP1GqevLZk,13507
|
|
131
|
-
solace_agent_mesh/gateway/http_sse/alembic/env.py,sha256=
|
|
132
|
+
solace_agent_mesh/gateway/http_sse/alembic/env.py,sha256=ZoZB47NxagV8iQ6BaiIQVXwD_qc9JW10NKO3UhC_bj4,2458
|
|
132
133
|
solace_agent_mesh/gateway/http_sse/alembic/script.py.mako,sha256=84_5EHZF90Ak58GV4R5YUwxvvzsaI6N9LxIHC8X7N1w,703
|
|
133
134
|
solace_agent_mesh/gateway/http_sse/alembic/versions/b1c2d3e4f5g6_add_database_indexes.py,sha256=HZbxw5PrpneWIwMFteu-LGsoef8GD1F43vLiFfvBTaw,2408
|
|
134
135
|
solace_agent_mesh/gateway/http_sse/alembic/versions/d5b3f8f2e9a0_create_initial_database.py,sha256=1n-kACCNTIjF9VagyZDf2Z7CXLB7yUuN4CnHpG0hdqk,1926
|
|
135
|
-
solace_agent_mesh/gateway/http_sse/api/__init__.py,sha256=70cF06AnEz72UUQPTaEEm2fw6BgZ3lx9GAA36Bcd-WE,262
|
|
136
|
-
solace_agent_mesh/gateway/http_sse/api/controllers/__init__.py,sha256=jcFhm0_URcZlP87hsc-VuGuSgjQKLBPNvJNeDikSCh8,271
|
|
137
|
-
solace_agent_mesh/gateway/http_sse/api/controllers/session_controller.py,sha256=PCir7OarV-lwrOdO4avj1_DRfbNKr-bElYBIGA9s9-8,11360
|
|
138
|
-
solace_agent_mesh/gateway/http_sse/api/controllers/task_controller.py,sha256=x0YIwCm1m1-C2BoixzZzBktza4Xgsnooydg-wEYKzfI,10217
|
|
139
|
-
solace_agent_mesh/gateway/http_sse/api/controllers/user_controller.py,sha256=YPcf-BHyvDSdf5NXzjY6hqdMlBDojiG6TpzyggppssI,883
|
|
140
|
-
solace_agent_mesh/gateway/http_sse/api/dto/__init__.py,sha256=DbFQNFsN7I0zCkYe2RKTYkcIXPSKgA6dbPITS3AhcX0,201
|
|
141
|
-
solace_agent_mesh/gateway/http_sse/api/dto/requests/__init__.py,sha256=F8xjjg6yHzqIf6uRBixUyUwz5Tf0N68pOoeqhtyt548,780
|
|
142
|
-
solace_agent_mesh/gateway/http_sse/api/dto/requests/session_requests.py,sha256=m1hLdQfMiozGzTcGfesdIkXS41NIkf9f3orMF5p9fyk,1406
|
|
143
|
-
solace_agent_mesh/gateway/http_sse/api/dto/requests/task_requests.py,sha256=XbrSIz60K_rwgwU90bDOId1B7ZCPCigBNtq5RPIlKIs,1987
|
|
144
|
-
solace_agent_mesh/gateway/http_sse/api/dto/responses/__init__.py,sha256=6gxVxOuY0YFPeGdhpwfO8VGBg9_Nw84gcZtYQT0roAw,926
|
|
145
|
-
solace_agent_mesh/gateway/http_sse/api/dto/responses/session_responses.py,sha256=txEDlgzp11aBz_dwNoetaN_zYkxSlRuPFPNSLFJc0vM,1877
|
|
146
|
-
solace_agent_mesh/gateway/http_sse/api/dto/responses/task_responses.py,sha256=H1jIyWyJJn02ViKvkKsQarwQXk8Dk5Qi6y2YTgrw58w,1965
|
|
147
|
-
solace_agent_mesh/gateway/http_sse/application/__init__.py,sha256=F_AcmC-hqExw6_4TwGeojxUMXBShlMTKcb3F4EqL5MA,83
|
|
148
|
-
solace_agent_mesh/gateway/http_sse/application/services/__init__.py,sha256=hm3LQQnjy19GqH8E4kH7mf-wEfwEzZ4RdOT8_xRPluA,74
|
|
149
|
-
solace_agent_mesh/gateway/http_sse/application/services/session_service.py,sha256=0A06MeCIt0JXtaoNSTZptszs8_Ga-xJsGTEt0BHo4x4,4421
|
|
150
136
|
solace_agent_mesh/gateway/http_sse/components/__init__.py,sha256=zSidQziYjSrjX5XXXbyBAJ7pgKr0Efy6RXiJiufdq0Q,186
|
|
151
137
|
solace_agent_mesh/gateway/http_sse/components/components_llm.txt,sha256=DF-kLoVXikA0-R_7-xA3gsf6vFq8av4CAvbgJUplSVg,3183
|
|
152
138
|
solace_agent_mesh/gateway/http_sse/components/visualization_forwarder_component.py,sha256=oHVnv4DK-nP9Mbp6i6CSJ63Ch6lx4epE3Cn0dn3BndQ,3941
|
|
153
|
-
solace_agent_mesh/gateway/http_sse/
|
|
154
|
-
solace_agent_mesh/gateway/http_sse/
|
|
155
|
-
solace_agent_mesh/gateway/http_sse/
|
|
156
|
-
solace_agent_mesh/gateway/http_sse/
|
|
157
|
-
solace_agent_mesh/gateway/http_sse/
|
|
158
|
-
solace_agent_mesh/gateway/http_sse/
|
|
159
|
-
solace_agent_mesh/gateway/http_sse/
|
|
160
|
-
solace_agent_mesh/gateway/http_sse/
|
|
161
|
-
solace_agent_mesh/gateway/http_sse/
|
|
162
|
-
solace_agent_mesh/gateway/http_sse/
|
|
163
|
-
solace_agent_mesh/gateway/http_sse/
|
|
164
|
-
solace_agent_mesh/gateway/http_sse/
|
|
165
|
-
solace_agent_mesh/gateway/http_sse/infrastructure/repositories/__init__.py,sha256=i2xRj3OPF0mbYWCrrN5-B3LV1FPfVp8jgtopfkC5YfI,122
|
|
166
|
-
solace_agent_mesh/gateway/http_sse/infrastructure/repositories/session_repository.py,sha256=JHIvehjWBz0nqs_IYy_L4DjUzuDiZ7TDlawbaFBm7_0,6432
|
|
139
|
+
solace_agent_mesh/gateway/http_sse/repository/__init__.py,sha256=1t6cXo3WzuodK-cEAHLeliadeVMPjBeAwUAzHJ7QiJ0,904
|
|
140
|
+
solace_agent_mesh/gateway/http_sse/repository/interfaces.py,sha256=jxP2wdKf3Ow_uSLsw0On3ULzNxOseZehM6G3RgwOunk,1812
|
|
141
|
+
solace_agent_mesh/gateway/http_sse/repository/message_repository.py,sha256=u4GH6-EPtnd85FYlslJ665FgIwicfWyo3VNDmq8AoGc,2693
|
|
142
|
+
solace_agent_mesh/gateway/http_sse/repository/session_repository.py,sha256=VHIYavq17Sh1kKa2LeseaU6zfNfRER3bigXH6M0vuG4,4715
|
|
143
|
+
solace_agent_mesh/gateway/http_sse/repository/entities/__init__.py,sha256=VLhwNk7X3ZsVqDQytNkqwA4xQON0W3P-kojV6ZCgw_c,204
|
|
144
|
+
solace_agent_mesh/gateway/http_sse/repository/entities/message.py,sha256=4mA-ObiUGopP18XYgZsBe6fUXFMCPF8F9ntPd9jxqaY,1223
|
|
145
|
+
solace_agent_mesh/gateway/http_sse/repository/entities/session.py,sha256=bkkq5eBQWph-sr54p2UaZXzcnsVmHpFfGhLozZb0mLI,1383
|
|
146
|
+
solace_agent_mesh/gateway/http_sse/repository/entities/session_history.py,sha256=uDSEt6Tp8vcYxaeODTn5SVAFnuF9lOsIabctI-I4_Dc,328
|
|
147
|
+
solace_agent_mesh/gateway/http_sse/repository/models/__init__.py,sha256=PiusowOAMYGcjUPiyre2yF964JqhXvjjNFukxS-5wjk,207
|
|
148
|
+
solace_agent_mesh/gateway/http_sse/repository/models/base.py,sha256=_LoXoFISq4X7eFK4Mnoa8yuUcQWfZnAhV1Nqa2tOw6c,130
|
|
149
|
+
solace_agent_mesh/gateway/http_sse/repository/models/message_model.py,sha256=eXktsibP10Rb-5NOOvs1VsREKMsMvo4M3DFp5GzBX14,739
|
|
150
|
+
solace_agent_mesh/gateway/http_sse/repository/models/session_model.py,sha256=qjw9ix14QnBZjgZPd1LZoN31joMRfMU4a0Dz1Irs0GY,740
|
|
167
151
|
solace_agent_mesh/gateway/http_sse/routers/__init__.py,sha256=WxRX__xU4YIYhvjN0DTY9XdNYAB9dP81pabwiB23YSo,133
|
|
168
152
|
solace_agent_mesh/gateway/http_sse/routers/agent_cards.py,sha256=zBckfOkUu9q9WC7fTOxXxSO6nMJpVPcjFbPrbU5W93M,1279
|
|
169
153
|
solace_agent_mesh/gateway/http_sse/routers/artifacts.py,sha256=OrYlA3UUTzCE0iVUuansLEPRpGXzBRcFvn69S85oRq4,34636
|
|
170
154
|
solace_agent_mesh/gateway/http_sse/routers/auth.py,sha256=LcgF45H7AGVPabFLdHcrEqSndadlpx6WbOdBY_l96X8,7201
|
|
171
|
-
solace_agent_mesh/gateway/http_sse/routers/config.py,sha256=
|
|
155
|
+
solace_agent_mesh/gateway/http_sse/routers/config.py,sha256=6lIW_mcX8pbZJNvAx4fX0Ex-8dBPYUAKA024i6SoZoI,2158
|
|
172
156
|
solace_agent_mesh/gateway/http_sse/routers/people.py,sha256=O2NvV6LD3g9vFXN31yUHKTgkzY1RVW5RDfQq_IP5Q14,2041
|
|
173
157
|
solace_agent_mesh/gateway/http_sse/routers/routers_llm.txt,sha256=B7W3Y_TlPJb1t5wdLYrWx1c4sOkjsPi5qCxD0gqPqR0,11715
|
|
158
|
+
solace_agent_mesh/gateway/http_sse/routers/sessions.py,sha256=tDbQ-VaISvsXzcZm8_LKVzvkyUCnTp5Tz6oAIuuIElY,9584
|
|
174
159
|
solace_agent_mesh/gateway/http_sse/routers/sse.py,sha256=AUk2p3_KBJLPyAlZ13fHApfd05SQPSJJkwZNq4mJ4PY,5371
|
|
175
|
-
solace_agent_mesh/gateway/http_sse/routers/tasks.py,sha256=
|
|
160
|
+
solace_agent_mesh/gateway/http_sse/routers/tasks.py,sha256=DuX05ZmrU7MUv7PryX8geJ9oePRr5DODQW8tXGg9G0c,12498
|
|
161
|
+
solace_agent_mesh/gateway/http_sse/routers/users.py,sha256=jxVgDXchaDCj2igdZ3T4CyQvw3lOGpUmOAuJCWrdxsY,882
|
|
176
162
|
solace_agent_mesh/gateway/http_sse/routers/visualization.py,sha256=tvLWL0HHyXmOdmrlEq2IPITvTG7OJIGLHvEGILMhD-0,44710
|
|
163
|
+
solace_agent_mesh/gateway/http_sse/routers/dto/__init__.py,sha256=DbFQNFsN7I0zCkYe2RKTYkcIXPSKgA6dbPITS3AhcX0,201
|
|
164
|
+
solace_agent_mesh/gateway/http_sse/routers/dto/requests/__init__.py,sha256=OdAP81u2Tk5EnI2x9QAwBS-ibyLLFf_8tbit4Z8ndwg,381
|
|
165
|
+
solace_agent_mesh/gateway/http_sse/routers/dto/requests/session_requests.py,sha256=dM0nAO7OnWNHhRkcuDiHtqTtK5On9mXjpnYQ28x91Q8,1136
|
|
166
|
+
solace_agent_mesh/gateway/http_sse/routers/dto/responses/__init__.py,sha256=MzauxZU28yY0B9Zh8J8-97yuv77yqqdblsFMjjs5D-4,255
|
|
167
|
+
solace_agent_mesh/gateway/http_sse/routers/dto/responses/session_responses.py,sha256=LwjNzXiPXVRblEfirYvMCk8moM7UNfIWbXfJoTiZthI,1074
|
|
177
168
|
solace_agent_mesh/gateway/http_sse/services/__init__.py,sha256=Fk2FIbrJdG1StPCoggbdT2C4Vl5d6qICT6R8yj4IZPQ,92
|
|
178
169
|
solace_agent_mesh/gateway/http_sse/services/agent_card_service.py,sha256=gBoXQgENmCeJRyA1BLYnoEvjrFUfwM4W_CVLkrl6r7o,2365
|
|
179
170
|
solace_agent_mesh/gateway/http_sse/services/people_service.py,sha256=PbR6vbImQ95JO7p5fSbraBGsHg84dGVjDz4yd-wbrwg,4596
|
|
180
171
|
solace_agent_mesh/gateway/http_sse/services/services_llm.txt,sha256=hjMyBLidqh8VGFl7gsA-8VTM1zTUqu4oyI-UJQRReKA,5703
|
|
172
|
+
solace_agent_mesh/gateway/http_sse/services/session_service.py,sha256=J4e89oqVrwVhlHtkOtLI6Tsfkz5EWjj8l_BEwx_W2pA,7749
|
|
181
173
|
solace_agent_mesh/gateway/http_sse/services/task_service.py,sha256=KWtUi34rFCUYDu8w5qw2AXfoAkkNfDipje57FUdXKsY,4348
|
|
182
174
|
solace_agent_mesh/gateway/http_sse/shared/__init__.py,sha256=qlCIQimjoNwbRGbhjNZ8ba0d9yJH8ZYXzqgi-25oRB0,188
|
|
183
175
|
solace_agent_mesh/gateway/http_sse/shared/auth_utils.py,sha256=F0kpTg5HYadRAEVNSNvnEFpdzkwVqbFMFVr27kywz_k,852
|
|
184
|
-
solace_agent_mesh/gateway/http_sse/shared/enums.py,sha256=
|
|
176
|
+
solace_agent_mesh/gateway/http_sse/shared/enums.py,sha256=gcU_hApRkWcBy0JykqGXSESGyglLXN3FzkimITmwnnE,802
|
|
185
177
|
solace_agent_mesh/gateway/http_sse/shared/types.py,sha256=zAojlvovTMvaB4o-U20cY3q2DxZs_xaCtcoYUhCLczg,1075
|
|
186
|
-
solace_agent_mesh/cli/__init__.py,sha256
|
|
178
|
+
solace_agent_mesh/cli/__init__.py,sha256=HgKA3RqZvC7slo8MgLyffCGwJbQ3cY6I7oUMFvGLWps,22
|
|
187
179
|
solace_agent_mesh/cli/main.py,sha256=yFbF4ijz7P6nxj26d-mTC8BnK6NKVnfqPh3y4pDBZqo,831
|
|
188
180
|
solace_agent_mesh/cli/utils.py,sha256=7zntmVuvWbaWEhViSF2uw484-79a5I1XTUt-0eGQWY4,8036
|
|
189
181
|
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -250,11 +242,11 @@ solace_agent_mesh/templates/plugin_tools_template.py,sha256=GUVw556CtBYE6sHbpXnF
|
|
|
250
242
|
solace_agent_mesh/templates/shared_config.yaml,sha256=_-ytR25HSAfwjN6drkdUQgGeV_om6RSeM4BUCMxQ3vQ,3310
|
|
251
243
|
solace_agent_mesh/templates/templates_llm.txt,sha256=T3h8CcIowTbyBedlfRk7FZww8_xGmnY5fEqGhhdI3JU,9234
|
|
252
244
|
solace_agent_mesh/templates/webui.yaml,sha256=Xb6nswsFpMtCnpUDY9sGuO4Q3IhR8x-lDDRtHaySUVo,1782
|
|
253
|
-
solace_agent_mesh/assets/docs/404.html,sha256=
|
|
254
|
-
solace_agent_mesh/assets/docs/lunr-index-
|
|
255
|
-
solace_agent_mesh/assets/docs/lunr-index.json,sha256=
|
|
256
|
-
solace_agent_mesh/assets/docs/search-doc-
|
|
257
|
-
solace_agent_mesh/assets/docs/search-doc.json,sha256=
|
|
245
|
+
solace_agent_mesh/assets/docs/404.html,sha256=2A3Hqv0UbjhlStHNGRgYnRcby248QbC9SsuZQrqVAfs,11749
|
|
246
|
+
solace_agent_mesh/assets/docs/lunr-index-1757704179464.json,sha256=DQk3I94EU5RqEeMQ_wsIOTnI9pTkotztKGmh88w6ivE,1093203
|
|
247
|
+
solace_agent_mesh/assets/docs/lunr-index.json,sha256=DQk3I94EU5RqEeMQ_wsIOTnI9pTkotztKGmh88w6ivE,1093203
|
|
248
|
+
solace_agent_mesh/assets/docs/search-doc-1757704179464.json,sha256=t8tlv7R9zmRvTsXthbY_qUvQxl8yr0k-epK0cqovVEo,385273
|
|
249
|
+
solace_agent_mesh/assets/docs/search-doc.json,sha256=t8tlv7R9zmRvTsXthbY_qUvQxl8yr0k-epK0cqovVEo,385273
|
|
258
250
|
solace_agent_mesh/assets/docs/sitemap.xml,sha256=MeU4E6b7O7RjK1CdC9W4zjle-yridFsVnyDf2HtnzyY,6830
|
|
259
251
|
solace_agent_mesh/assets/docs/assets/css/styles.906a1503.css,sha256=gQj16ydMLPiq6y-t8Ovto65hsvPbQX6coyIFOja-2eY,83293
|
|
260
252
|
solace_agent_mesh/assets/docs/assets/images/Solace_AI_Framework_With_Broker-85f0a306a9bcdd20b390b7a949f6d862.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
@@ -291,7 +283,7 @@ solace_agent_mesh/assets/docs/assets/js/442a8107.b3159bb2.js,sha256=Q-EkgCGSjulB
|
|
|
291
283
|
solace_agent_mesh/assets/docs/assets/js/4458.518e66fa.js,sha256=oUPDT1LqnbeRts2CudqNueI-OQHML5gg9dWEvP6PiE4,25886
|
|
292
284
|
solace_agent_mesh/assets/docs/assets/js/4488.c7cc3442.js,sha256=r1GHmJIWPPQ07T92TAs1H59eHcs-e87AFDqi_0VK48A,435
|
|
293
285
|
solace_agent_mesh/assets/docs/assets/js/4494.6ee23046.js,sha256=UrwgwbJNRAZiY6UtdzHrpggUpkNGlIh9vHiSXdv5DDI,61052
|
|
294
|
-
solace_agent_mesh/assets/docs/assets/js/483cef9a.
|
|
286
|
+
solace_agent_mesh/assets/docs/assets/js/483cef9a.03d5dceb.js,sha256=urfMWXGkavwHkYKtbA2a_kR15c-v_kFbVKNTbmqG3Uc,14126
|
|
295
287
|
solace_agent_mesh/assets/docs/assets/js/4855.fc4444b6.js,sha256=Rbhzs2AM-6i8Wyppb8a2Ws8kpNE8Pr5QMgx0sxAozxs,11494
|
|
296
288
|
solace_agent_mesh/assets/docs/assets/js/4866.22daefc0.js,sha256=bQRnSAwf0FIrdrYQLeyXv6f4utbEoi4nSU-kKchB4sw,3876
|
|
297
289
|
solace_agent_mesh/assets/docs/assets/js/4950.ca4caeda.js,sha256=Kq5gqn-p3ozVcUY7fWZnY4_35_sNcFN8z4bNY6Cqt-s,146409
|
|
@@ -351,47 +343,47 @@ solace_agent_mesh/assets/docs/assets/js/cee5d587.f5b73ca1.js,sha256=ciDSktNPCP_c
|
|
|
351
343
|
solace_agent_mesh/assets/docs/assets/js/f284c35a.7334119c.js,sha256=wJOKH1ngi5UuVvqdrOiakHaiqN7bD007krZV1eqE4Hs,21400
|
|
352
344
|
solace_agent_mesh/assets/docs/assets/js/f897a61a.0aa29dbb.js,sha256=Bv0Itx75hHCRAiGKy34-NjK7CSWZ9CT1l5uyni3GCOw,16949
|
|
353
345
|
solace_agent_mesh/assets/docs/assets/js/fbfa3e75.aca209c9.js,sha256=vmq7isB22h2J_2cVIt1h6D2OhwU6wTBEnk1-CNZv9Wk,7314
|
|
354
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
355
|
-
solace_agent_mesh/assets/docs/assets/js/main.
|
|
356
|
-
solace_agent_mesh/assets/docs/assets/js/runtime~main.
|
|
357
|
-
solace_agent_mesh/assets/docs/docs/documentation/Enterprise/installation/index.html,sha256=
|
|
358
|
-
solace_agent_mesh/assets/docs/docs/documentation/Enterprise/single-sign-on/index.html,sha256=
|
|
359
|
-
solace_agent_mesh/assets/docs/docs/documentation/Migrations/A2A Upgrade To 0.3.0/a2a-gateway-upgrade-to-0.3.0/index.html,sha256=
|
|
360
|
-
solace_agent_mesh/assets/docs/docs/documentation/Migrations/A2A Upgrade To 0.3.0/a2a-technical-migration-map/index.html,sha256=
|
|
361
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=
|
|
362
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=
|
|
363
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=
|
|
364
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256
|
|
365
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=
|
|
366
|
-
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=
|
|
367
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=
|
|
368
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=
|
|
369
|
-
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=
|
|
370
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=
|
|
371
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html,sha256=
|
|
372
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=
|
|
373
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=
|
|
374
|
-
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=
|
|
375
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=
|
|
376
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=
|
|
377
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=
|
|
378
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=
|
|
379
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=
|
|
380
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=
|
|
381
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=
|
|
382
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=
|
|
383
|
-
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=
|
|
384
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=
|
|
385
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=
|
|
386
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=
|
|
387
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=
|
|
388
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=
|
|
389
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=
|
|
390
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=
|
|
391
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-python-tools/index.html,sha256=
|
|
392
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=
|
|
393
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256
|
|
394
|
-
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=
|
|
346
|
+
solace_agent_mesh/assets/docs/assets/js/main.4adc477a.js,sha256=_FGosaNCI37ZnIyV1AtFCInfIggNbsHSD7u8w706qDA,482726
|
|
347
|
+
solace_agent_mesh/assets/docs/assets/js/main.4adc477a.js.LICENSE.txt,sha256=3Jia5o7yaxOtbxuy9khs-thK96m55yCiPaUA-IkWh0A,2069
|
|
348
|
+
solace_agent_mesh/assets/docs/assets/js/runtime~main.cf0229ea.js,sha256=4GNbUckOdQAR_kjZqhuRSafmo1jez-dwGzcjCWybewo,6233
|
|
349
|
+
solace_agent_mesh/assets/docs/docs/documentation/Enterprise/installation/index.html,sha256=4_JuJHRJs2n_rF2TtZ1ao0ThBxkJE4EuW0g61N4AjKU,27051
|
|
350
|
+
solace_agent_mesh/assets/docs/docs/documentation/Enterprise/single-sign-on/index.html,sha256=k2PYi7PYudk4Taujdw8GtyWAn_cPrnhV2J80TVdPXVo,69510
|
|
351
|
+
solace_agent_mesh/assets/docs/docs/documentation/Migrations/A2A Upgrade To 0.3.0/a2a-gateway-upgrade-to-0.3.0/index.html,sha256=kSPBR4VZ1djWx2mY7_bPjyhoiglATwlKTizEjtTnILA,84817
|
|
352
|
+
solace_agent_mesh/assets/docs/docs/documentation/Migrations/A2A Upgrade To 0.3.0/a2a-technical-migration-map/index.html,sha256=5t5EJpeYdDQOz2Hw32fBWKDMBvntOnESeiFDrJAmXwU,87750
|
|
353
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/agents/index.html,sha256=b-_5GZkWnctVVlc_uEsPphrRg_KXd15CKou6Jsify8A,39799
|
|
354
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/architecture/index.html,sha256=VJg_zKYCpxqYsdmUWMDG3oubWeGGRzTp_3p7MNTrB7Q,32769
|
|
355
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/cli/index.html,sha256=EAmEUMreil7oefQV4FL_ZULdKQj0ic5mHZJdeIvIB4g,50214
|
|
356
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/gateways/index.html,sha256=j29IbJl0RVvror33TchNdXiO6KxuIabwsFaf2otD11c,30147
|
|
357
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/orchestrator/index.html,sha256=Rr3130I0ZXD-y_6eMWZj36qLI0HY3YMRXoUxZmSPXRA,23853
|
|
358
|
+
solace_agent_mesh/assets/docs/docs/documentation/concepts/plugins/index.html,sha256=p6cVi8ERb9I3rvPz_WUG2cKDZ1G_Sd5e2ohd6QVpEJ8,39937
|
|
359
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/debugging/index.html,sha256=OyZdFzLTiq8mIcNbJmSyRHUob5pBl6WF08FM9jGOLQM,45637
|
|
360
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/deploy/index.html,sha256=n_M8lE-Liit74vEzqAgx_baEWfmjn2I6f2Ez-L-556M,42547
|
|
361
|
+
solace_agent_mesh/assets/docs/docs/documentation/deployment/observability/index.html,sha256=ay_OMMnKkjJc0VPNavjb9KIleT802f1M_CGfMOjL2kk,26091
|
|
362
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/component-overview/index.html,sha256=rAp_ffsFBqtgYYXQEb6EzdRS-Bq7jDHyP8jI3B9jy_A,21724
|
|
363
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/configurations/index.html,sha256=RL4dwJkb9KfWN91695AB14hvzK3qkYYUWCanfOS9n9g,56647
|
|
364
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/installation/index.html,sha256=QlBILHqFoAWlTxPq5RkWrT3jQSLrIbhIjyf7FpKu2s0,32553
|
|
365
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/introduction/index.html,sha256=jUWqx4zDA6-8P6k9T89OrfW6IeVuEhjBdVUcuJgeLQU,30461
|
|
366
|
+
solace_agent_mesh/assets/docs/docs/documentation/getting-started/quick-start/index.html,sha256=Wqfj3uuKOW-7NL_c6NyIHsMqkbsHKJ8vvw2uyf-CyLY,42540
|
|
367
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/bedrock-agents/index.html,sha256=T8PLv5JBZ8_4JTTvRCDxSx6FY6_dRACKBFMJ7fOQ4SQ,75264
|
|
368
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/custom-agent/index.html,sha256=0mSgDaxxP58_vvX804YMKPvaoj7B6QUVmlS3bxFTPhw,383367
|
|
369
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/event-mesh-gateway/index.html,sha256=Faxa_LhbQKZtPPlr7o-u8dEaNu3MSuNpdOhLaj-LNvA,69270
|
|
370
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mcp-integration/index.html,sha256=8fZY3TMJDrGONJZlpTxGRPsPeTyijC4I499IA5K7qMo,65034
|
|
371
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/mongodb-integration/index.html,sha256=gXmviWVwwSbTXOBQqD02njxIh31cF5BJ6syZdgEBbRM,87586
|
|
372
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rag-integration/index.html,sha256=ziR1MosoDiaoUKV4kQODs9D2KbjhIXv2na8L1RtAiK4,80327
|
|
373
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/rest-gateway/index.html,sha256=8lB0u6wrZgn7ILFYO0llRXIeYTwVPA21O-seWGHk3bM,46701
|
|
374
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/slack-integration/index.html,sha256=3EljpI6bPUUp4CjjggMFHJMUNXL9Dxpr96OzIwOKZ90,49984
|
|
375
|
+
solace_agent_mesh/assets/docs/docs/documentation/tutorials/sql-database/index.html,sha256=MlF9fL4zG_7AdnINodQW5XDeN_yepgWGzVRw5KatHQk,69291
|
|
376
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/index.html,sha256=R-lTGJZ_e5--zRRhGgy7-cnPDTCbIFKiD_2GnRuZt8o,44864
|
|
377
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/artifact-management/index.html,sha256=4llTe4W7iiE7TGUERm5EaNQRuyrgWtSl1_YkGW6c0fw,34816
|
|
378
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/audio-tools/index.html,sha256=amhTrFBUustpkeE6kFtt7_lN4WRYArDaKT6JG0JGZjE,58271
|
|
379
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/data-analysis-tools/index.html,sha256=luxhNY9SBWj-ZNUqiYrCZ_vQBAxo-_I8PU0jDQ4Hv1g,37820
|
|
380
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/builtin-tools/embeds/index.html,sha256=pag4lWopP2dNU8BgK5omN7StYQPW00NCNPELyL7cY0M,50700
|
|
381
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-agents/index.html,sha256=VV7Yp4EYHOduR-iWBcR5d-U4sTWvbdrqFPnsKN1PUBI,162692
|
|
382
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/create-gateways/index.html,sha256=IpG_2UOXFXexJJlji5pt4ODtWLBKEuK8BNKX3yv8e5w,402941
|
|
383
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-python-tools/index.html,sha256=OLnQShN6ji-c1WKD4lEFzQSS4zju6leJSQkqJubfPsM,84500
|
|
384
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/creating-service-providers/index.html,sha256=HCocombd_XztFKhKhCc4HX8TU1-glK6xbUIVdyMmucY,59672
|
|
385
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/solace-ai-connector/index.html,sha256=-djmNjAYG1vPb3gsQ75fYbwEfybHXF4a0GvkM5gCpJQ,25835
|
|
386
|
+
solace_agent_mesh/assets/docs/docs/documentation/user-guide/structure/index.html,sha256=xMCKwQObpQe4TkVHE-5DsWtsUyB1qME71qbR2BwP1z8,29843
|
|
395
387
|
solace_agent_mesh/assets/docs/img/Solace_AI_Framework_With_Broker.png,sha256=e6MbZpxlY1xJ8U01zQogm8vWgokQqDfhsyPyNxtuS00,447393
|
|
396
388
|
solace_agent_mesh/assets/docs/img/logo.png,sha256=TdXZ2wnkSkaFrGO-5fy2WcmjGXaGzwE29dM83raxoTg,45439
|
|
397
389
|
solace_agent_mesh/assets/docs/img/sac-flows.png,sha256=868GgNJGPxn2G6c1Md_0umhg3xuAo7t6HEx8hOKbUJY,21098
|
|
@@ -419,15 +411,15 @@ solace_agent_mesh/config_portal/frontend/static/client/assets/manifest-89db7c30.
|
|
|
419
411
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-BWvk5-gF.js,sha256=KoDaD7JSrkUDgUbDa0JqaB7mXNCc2fR-T5kKAcH5nho,1799
|
|
420
412
|
solace_agent_mesh/config_portal/frontend/static/client/assets/root-DxRwaWiE.css,sha256=HaETPzdva-2CpjK-MmIBI6lipZMiGHmAqLRJiD8s2QE,33607
|
|
421
413
|
solace_agent_mesh/client/webui/frontend/static/auth-callback.html,sha256=3ajyFcWxvD3xWbS3ws5DLqgq1dLSauPV6VBy98E_ySw,570
|
|
422
|
-
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=
|
|
414
|
+
solace_agent_mesh/client/webui/frontend/static/index.html,sha256=4vgV8Y5tPdqqybCLJyZqj18jrgoc2OdfMuyOoP7pQ1g,635
|
|
423
415
|
solace_agent_mesh/client/webui/frontend/static/assets/authCallback-CAX9u8a7.js,sha256=rfRQ7ntt_kKVD80r_Lov_PURuasCSLeBv5EX8pNrSvM,528
|
|
424
416
|
solace_agent_mesh/client/webui/frontend/static/assets/client-DXU9SPI5.js,sha256=dMeFMeQYg87OEejBqjM6xDhqQESFflCxyWTnXmbFr4I,174527
|
|
425
417
|
solace_agent_mesh/client/webui/frontend/static/assets/favicon-BLgzUch9.ico,sha256=9z1ZdOqroxsg2-FzV79kTJ69hVqWVkrDlIv2RgmIhR8,15086
|
|
426
418
|
solace_agent_mesh/client/webui/frontend/static/assets/main-C03yrETa.css,sha256=8i4G_OLqxxoF2D7-4uCwQVUEMnkH7QcNTmHLeBIeUNo,119785
|
|
427
|
-
solace_agent_mesh/client/webui/frontend/static/assets/main-
|
|
419
|
+
solace_agent_mesh/client/webui/frontend/static/assets/main-DjoMeldu.js,sha256=6g8rNuOSNnVGvdIpQKo5CNLCYkpHTz0TI7IenLRwZVE,420893
|
|
428
420
|
solace_agent_mesh/client/webui/frontend/static/assets/vendor-B0BEKoAR.js,sha256=e8CQistS6OBV4DeTlX098z7pxx7tBpuCTJrRyb7K0s4,340510
|
|
429
|
-
solace_agent_mesh-1.3.
|
|
430
|
-
solace_agent_mesh-1.3.
|
|
431
|
-
solace_agent_mesh-1.3.
|
|
432
|
-
solace_agent_mesh-1.3.
|
|
433
|
-
solace_agent_mesh-1.3.
|
|
421
|
+
solace_agent_mesh-1.3.2.dist-info/METADATA,sha256=Bc0DG65Ov5sHU-WX4Ijc1Blp6DYLueRNL3hbLOr3YYE,24785
|
|
422
|
+
solace_agent_mesh-1.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
423
|
+
solace_agent_mesh-1.3.2.dist-info/entry_points.txt,sha256=5pLVH8d8bd4sxUwBh7VTni8gTTSzTqGfY14zgdQZm1I,106
|
|
424
|
+
solace_agent_mesh-1.3.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
425
|
+
solace_agent_mesh-1.3.2.dist-info/RECORD,,
|