smarta2a 0.4.15__py3-none-any.whl → 0.4.17__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.
- smarta2a/agent/a2a_human.py +1 -1
- smarta2a/client/a2a_client.py +4 -1
- smarta2a/server/request_handler.py +3 -0
- smarta2a/server/server.py +3 -0
- smarta2a/server/webhook_request_processor.py +3 -0
- {smarta2a-0.4.15.dist-info → smarta2a-0.4.17.dist-info}/METADATA +1 -1
- {smarta2a-0.4.15.dist-info → smarta2a-0.4.17.dist-info}/RECORD +9 -9
- {smarta2a-0.4.15.dist-info → smarta2a-0.4.17.dist-info}/WHEEL +0 -0
- {smarta2a-0.4.15.dist-info → smarta2a-0.4.17.dist-info}/licenses/LICENSE +0 -0
smarta2a/agent/a2a_human.py
CHANGED
smarta2a/client/a2a_client.py
CHANGED
@@ -93,7 +93,7 @@ class A2AClient:
|
|
93
93
|
metadata: dict[str, Any] | None = None,
|
94
94
|
):
|
95
95
|
"""Send to another Agent and receive a stream of responses."""
|
96
|
-
|
96
|
+
|
97
97
|
# Auto-create PushNotificationConfig if not provided and we have a URL
|
98
98
|
if push_notification is None and self.url:
|
99
99
|
push_notification = PushNotificationConfig(
|
@@ -207,6 +207,9 @@ class A2AClient:
|
|
207
207
|
webhook_url, json=request.model_dump(), timeout=30
|
208
208
|
)
|
209
209
|
response.raise_for_status()
|
210
|
+
print("--- response from webhook ---")
|
211
|
+
print(response.json())
|
212
|
+
print("--- end of response from webhook ---")
|
210
213
|
return response.json()
|
211
214
|
except httpx.HTTPStatusError as e:
|
212
215
|
raise A2AClientHTTPError(e.response.status_code, str(e)) from e
|
@@ -158,6 +158,9 @@ class RequestHandler:
|
|
158
158
|
if push_notification_config and forward_to_webhook:
|
159
159
|
try:
|
160
160
|
print("call to send_to_webhook")
|
161
|
+
print(push_notification_config.url)
|
162
|
+
print(task.model_dump())
|
163
|
+
print("--- end ---")
|
161
164
|
self.a2a_aclient.send_to_webhook(webhook_url=push_notification_config.url,id=task_id,task=task.model_dump())
|
162
165
|
except Exception as e:
|
163
166
|
print(f"Error sending task to webhook: {e}")
|
smarta2a/server/server.py
CHANGED
@@ -126,6 +126,9 @@ class SmartA2A:
|
|
126
126
|
async def handle_webhook(request: Request):
|
127
127
|
try:
|
128
128
|
data = await request.json()
|
129
|
+
print("--- In handle_webhook in server.py ---")
|
130
|
+
print(data)
|
131
|
+
print("--- end of handle_webhook in server.py ---")
|
129
132
|
req = WebhookRequest.model_validate(data)
|
130
133
|
except Exception as e:
|
131
134
|
return WebhookResponse(accepted=False, error=str(e)).model_dump()
|
@@ -15,6 +15,9 @@ class WebhookRequestProcessor:
|
|
15
15
|
async def process_request(self, request: WebhookRequest) -> WebhookResponse:
|
16
16
|
if self.state_manager:
|
17
17
|
state_data = self.state_manager.get_and_update_state_from_webhook(request.id, request.result)
|
18
|
+
print("--- state_data in webhook_request_processor.py ---")
|
19
|
+
print(state_data)
|
20
|
+
print("--- end of state_data in webhook_request_processor.py ---")
|
18
21
|
return await self._handle_webhook(request, state_data)
|
19
22
|
else:
|
20
23
|
return await self._handle_webhook(request)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: smarta2a
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.17
|
4
4
|
Summary: a Python framework that helps you build servers and AI agents that communicate using the A2A protocol
|
5
5
|
Project-URL: Homepage, https://github.com/siddharthsma/smarta2a
|
6
6
|
Project-URL: Bug Tracker, https://github.com/siddharthsma/smarta2a/issues
|
@@ -1,12 +1,12 @@
|
|
1
1
|
smarta2a/__init__.py,sha256=T_EECYqWrxshix0FbgUv22zlKRX22HFU-HKXcYTOb3w,175
|
2
2
|
smarta2a/agent/a2a_agent.py,sha256=EurcxpV14e3OPWCMutYL0EXMHb5ZKQqAHEGZZF6pNgg,1892
|
3
|
-
smarta2a/agent/a2a_human.py,sha256=
|
3
|
+
smarta2a/agent/a2a_human.py,sha256=yAW9naxyqStQhWwDamXRZIlw-mT_7RW2wcHyhy3rR6Y,1671
|
4
4
|
smarta2a/agent/a2a_mcp_server.py,sha256=X_mxkgYgCA_dSNtCvs0rSlOoWYc-8d3Qyxv0e-a7NKY,1015
|
5
5
|
smarta2a/archive/smart_mcp_client.py,sha256=0s2OWFKWSv-_UF7rb9fOrsh1OIYsYOsGukkXXp_E1cU,4158
|
6
6
|
smarta2a/archive/subscription_service.py,sha256=vftmZD94HbdjPFa_1UBvsBm-WkW-s3ZCVq60fF7OCgA,4109
|
7
7
|
smarta2a/archive/task_service.py,sha256=ptf-oMHy98Rw4XSxyK1-lpqc1JtkCkEEHTmwAaunet4,8199
|
8
8
|
smarta2a/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
smarta2a/client/a2a_client.py,sha256=
|
9
|
+
smarta2a/client/a2a_client.py,sha256=yxxsIcInVwU-DMCcWGsrLzaBeEicbpIPUOoKAEo6PqQ,12874
|
10
10
|
smarta2a/client/mcp_client.py,sha256=JeXhBqxM9TYAArpExLRtEr3lZeQZMcnTmGFl6XKsdu8,3797
|
11
11
|
smarta2a/file_stores/base_file_store.py,sha256=fcwFIOoFjLQiIKb8lIRVujnV6udyuI9Dq8cEc2ldmIQ,591
|
12
12
|
smarta2a/file_stores/local_file_store.py,sha256=4GLDrsKxSoLWn2Oha4OD-P2r5vBpfV-8ePvZ5bhP1e8,2616
|
@@ -21,11 +21,11 @@ smarta2a/server/__init__.py,sha256=f2X454Ll4vJc02V4JLJHTN-h8u0TBm4d_FkiO4t686U,5
|
|
21
21
|
smarta2a/server/handler_registry.py,sha256=OVRG5dTvxB7qUNXgsqWxVNxIyRljUShSYxb1gtbi5XM,820
|
22
22
|
smarta2a/server/json_rpc_request_processor.py,sha256=qRB3sfj_n9ImkIOCdaUKMsDmKcO7CiMhaZ4VdQS7Mb4,6993
|
23
23
|
smarta2a/server/nats_client.py,sha256=akyNg1hLd9XYoLSH_qQVs8uoiTQerztgvqu_3TifSgE,1617
|
24
|
-
smarta2a/server/request_handler.py,sha256=
|
24
|
+
smarta2a/server/request_handler.py,sha256=QPVWWEKAzMAf4TiwXSEuPBiKGn8_f4ahTRs0mo3qjEE,26569
|
25
25
|
smarta2a/server/send_task_handler.py,sha256=fiBeCCHCu9c2H4EJOUc0t3EZgpHVFJy4B_6qZOC140s,6336
|
26
|
-
smarta2a/server/server.py,sha256=
|
26
|
+
smarta2a/server/server.py,sha256=Xdj3WN-Zgxf9RQDoN8_qGMXJgkADb8Dzk3QwgjDDKb4,6882
|
27
27
|
smarta2a/server/state_manager.py,sha256=mFh0r002sUAzgASkQKEv3ffAAiMtI8kxHxtfGWwVxwA,7666
|
28
|
-
smarta2a/server/webhook_request_processor.py,sha256=
|
28
|
+
smarta2a/server/webhook_request_processor.py,sha256=LAVA4FiICci-6R2htxRf4bSnKFYoNoaQ3zKI83380ZE,5634
|
29
29
|
smarta2a/state_stores/__init__.py,sha256=vafxAqpwvag_cYFH2XKGk3DPmJIWJr4Ioey30yLFkVQ,220
|
30
30
|
smarta2a/state_stores/base_state_store.py,sha256=_3LInM-qepKwwdypJTDNs9-DozBNrKVycwPwUm7bYdU,512
|
31
31
|
smarta2a/state_stores/inmemory_state_store.py,sha256=nEBBUiiqhEluP2MYJjFUImcjIwLJEvL8BWwMbLCb8Fw,1268
|
@@ -36,7 +36,7 @@ smarta2a/utils/task_builder.py,sha256=wqSyfVHNTaXuGESu09dhlaDi7D007gcN3-8tH-nPQ4
|
|
36
36
|
smarta2a/utils/task_request_builder.py,sha256=6cOGOqj2Rg43xWM03GRJQzlIZHBptsMCJRp7oD-TDAQ,3362
|
37
37
|
smarta2a/utils/tools_manager.py,sha256=igKYeSi0SaYzd36jUqOMPvnYd5kK55EPQ0X_pdTo5e4,4857
|
38
38
|
smarta2a/utils/types.py,sha256=kzA6Vv5xXfu1sJuxhEXrglI9e9S6eZVIljMnsrQVyN0,13650
|
39
|
-
smarta2a-0.4.
|
40
|
-
smarta2a-0.4.
|
41
|
-
smarta2a-0.4.
|
42
|
-
smarta2a-0.4.
|
39
|
+
smarta2a-0.4.17.dist-info/METADATA,sha256=eUfquvHQDEf_zqNn-Yw7vQqCUtoDWrs50P7mwHYscGA,13051
|
40
|
+
smarta2a-0.4.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
41
|
+
smarta2a-0.4.17.dist-info/licenses/LICENSE,sha256=lDbqrxVnzDMY5KJ8JS1WhvkWE8TJaw-O-CHDy-ecsJA,2095
|
42
|
+
smarta2a-0.4.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|