smarta2a 0.4.14__py3-none-any.whl → 0.4.16__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.
@@ -157,6 +157,7 @@ class RequestHandler:
157
157
  # If push_notification_config is set send the task to the push notification url
158
158
  if push_notification_config and forward_to_webhook:
159
159
  try:
160
+ print("call to send_to_webhook")
160
161
  self.a2a_aclient.send_to_webhook(webhook_url=push_notification_config.url,id=task_id,task=task.model_dump())
161
162
  except Exception as e:
162
163
  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()
@@ -152,6 +152,9 @@ class StateManager:
152
152
 
153
153
  # Publish update through NATS client
154
154
  payload = self._prepare_update_payload(state_data)
155
+ print("--- NATS payload ---")
156
+ print(payload)
157
+ print("--- NATS payload end ---")
155
158
  await self.nats_client.publish("state.updates", payload)
156
159
 
157
160
  def get_store(self) -> Optional[BaseStateStore]:
@@ -172,9 +175,6 @@ class StateManager:
172
175
 
173
176
  def _prepare_update_payload(self, state: StateData) -> Dict[str, Any]:
174
177
  """Prepare NATS message payload from state data"""
175
- print("--- state.task ---")
176
- print(state.task)
177
- print("--- end of state.task ---")
178
178
  return {
179
179
  "taskId": state.task_id,
180
180
  "taskName": state.task.metadata.get("taskName", ""),
@@ -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)
@@ -55,6 +58,7 @@ class WebhookRequestProcessor:
55
58
  )
56
59
 
57
60
  # Persist state
61
+ print("call to update state - before webhook function")
58
62
  await self.state_manager.update_state(state_data)
59
63
 
60
64
  # --- Step 2: Call Webhook Function ---
@@ -81,6 +85,7 @@ class WebhookRequestProcessor:
81
85
  new_messages=updated_messages
82
86
  )
83
87
 
88
+ print("call to update state - after webhook function")
84
89
  await self.state_manager.update_state(state_data)
85
90
 
86
91
  # --- Step 4: Push Notification ---
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: smarta2a
3
- Version: 0.4.14
3
+ Version: 0.4.16
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
@@ -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=5KMtfpHQX6bOgk1DJbhs1fUCQ5tSvMYXWzheT3IW2Bo,26374
24
+ smarta2a/server/request_handler.py,sha256=lptvOvptJR7zDNNUFsGmYYGyDIvrjAWCBbikqsRsL7U,26427
25
25
  smarta2a/server/send_task_handler.py,sha256=fiBeCCHCu9c2H4EJOUc0t3EZgpHVFJy4B_6qZOC140s,6336
26
- smarta2a/server/server.py,sha256=RKkQM8jpSndt_nOuUB0kswOqLdm7JfvjZA1O424sYdY,6722
27
- smarta2a/server/state_manager.py,sha256=JhF6jma8t2YtBzb3sADGvxtmUMOlDafqxllPzLb3DU0,7668
28
- smarta2a/server/webhook_request_processor.py,sha256=_0XoUDmueSl9CvFQE-1zgKRSts-EW8QxbmolPTfFER8,5306
26
+ smarta2a/server/server.py,sha256=Xdj3WN-Zgxf9RQDoN8_qGMXJgkADb8Dzk3QwgjDDKb4,6882
27
+ smarta2a/server/state_manager.py,sha256=mFh0r002sUAzgASkQKEv3ffAAiMtI8kxHxtfGWwVxwA,7666
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.14.dist-info/METADATA,sha256=mAw1NgZUGTLmaRddgqX3CBdKgFNSjuc4mmfO8TCQdOE,13051
40
- smarta2a-0.4.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
41
- smarta2a-0.4.14.dist-info/licenses/LICENSE,sha256=lDbqrxVnzDMY5KJ8JS1WhvkWE8TJaw-O-CHDy-ecsJA,2095
42
- smarta2a-0.4.14.dist-info/RECORD,,
39
+ smarta2a-0.4.16.dist-info/METADATA,sha256=hQF-hc0ggOlNkO2J-eQOBwu43gmg8GXRhKj3RO2Dbvs,13051
40
+ smarta2a-0.4.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
41
+ smarta2a-0.4.16.dist-info/licenses/LICENSE,sha256=lDbqrxVnzDMY5KJ8JS1WhvkWE8TJaw-O-CHDy-ecsJA,2095
42
+ smarta2a-0.4.16.dist-info/RECORD,,