aixtools 0.2.6__py3-none-any.whl → 0.2.7__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 aixtools might be problematic. Click here for more details.

aixtools/_version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.2.6'
32
- __version_tuple__ = version_tuple = (0, 2, 6)
31
+ __version__ = version = '0.2.7'
32
+ __version_tuple__ = version_tuple = (0, 2, 7)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,3 +1,5 @@
1
+ """Utilities for handling A2A SDK agent cards and connections."""
2
+
1
3
  import asyncio
2
4
 
3
5
  import httpx
@@ -8,13 +10,34 @@ from a2a.utils import AGENT_CARD_WELL_KNOWN_PATH, PREV_AGENT_CARD_WELL_KNOWN_PAT
8
10
 
9
11
  from aixtools.a2a.google_sdk.remote_agent_connection import RemoteAgentConnection
10
12
  from aixtools.context import DEFAULT_SESSION_ID, DEFAULT_USER_ID, SessionIdTuple
13
+ from aixtools.logging.logging_config import get_logger
14
+
15
+ logger = get_logger(__name__)
16
+
17
+ DEFAULT_A2A_TIMEOUT = 60.0
11
18
 
12
19
 
13
20
  class AgentCardLoadFailedError(Exception):
14
21
  pass
15
22
 
16
23
 
24
+ async def get_agent_card(client: httpx.AsyncClient, address: str) -> AgentCard:
25
+ """Retrieve the agent card from the given agent address."""
26
+ for card_path in [AGENT_CARD_WELL_KNOWN_PATH, PREV_AGENT_CARD_WELL_KNOWN_PATH]:
27
+ try:
28
+ card_resolver = A2ACardResolver(client, address, card_path)
29
+ card = await card_resolver.get_agent_card()
30
+ card.url = address
31
+ return card
32
+ except Exception as e:
33
+ logger.warning(f"Error retrieving agent card from {address} at path {card_path}: {e}")
34
+
35
+ raise AgentCardLoadFailedError(f"Failed to load agent card from {address}")
36
+
37
+
17
38
  class _AgentCardResolver:
39
+ """Helper class to resolve and manage agent cards and their connections."""
40
+
18
41
  def __init__(self, client: httpx.AsyncClient):
19
42
  self._httpx_client = client
20
43
  self._a2a_client_factory = ClientFactory(ClientConfig(httpx_client=self._httpx_client))
@@ -25,17 +48,13 @@ class _AgentCardResolver:
25
48
  self.clients[card.name] = remote_connection
26
49
 
27
50
  async def retrieve_card(self, address: str):
28
- for card_path in [AGENT_CARD_WELL_KNOWN_PATH, PREV_AGENT_CARD_WELL_KNOWN_PATH]:
29
- try:
30
- card_resolver = A2ACardResolver(self._httpx_client, address, card_path)
31
- card = await card_resolver.get_agent_card()
32
- card.url = address
33
- self.register_agent_card(card)
34
- return
35
- except Exception as e:
36
- print(f"Error retrieving agent card from {address} at path {card_path}: {e}")
37
-
38
- raise AgentCardLoadFailedError(f"Failed to load agent card from {address}")
51
+ try:
52
+ card = await get_agent_card(self._httpx_client, address)
53
+ self.register_agent_card(card)
54
+ return
55
+ except Exception as e:
56
+ logger.error(f"Error retrieving agent card from {address}: {e}")
57
+ return
39
58
 
40
59
  async def get_a2a_clients(self, agent_hosts: list[str]) -> dict[str, RemoteAgentConnection]:
41
60
  async with asyncio.TaskGroup() as task_group:
@@ -45,15 +64,19 @@ class _AgentCardResolver:
45
64
  return self.clients
46
65
 
47
66
 
48
- async def get_a2a_clients(ctx: SessionIdTuple, agent_hosts: list[str]) -> dict[str, RemoteAgentConnection]:
67
+ async def get_a2a_clients(
68
+ ctx: SessionIdTuple, agent_hosts: list[str], *, timeout: float = DEFAULT_A2A_TIMEOUT
69
+ ) -> dict[str, RemoteAgentConnection]:
70
+ """Get A2A clients for all agents defined in the configuration."""
49
71
  headers = {
50
72
  "user-id": ctx[0],
51
73
  "session-id": ctx[1],
52
74
  }
53
- httpx_client = httpx.AsyncClient(headers=headers, timeout=60.0)
75
+ httpx_client = httpx.AsyncClient(headers=headers, timeout=timeout, follow_redirects=True)
54
76
  return await _AgentCardResolver(httpx_client).get_a2a_clients(agent_hosts)
55
77
 
56
78
 
57
79
  def get_session_id_tuple(context: RequestContext) -> SessionIdTuple:
80
+ """Get the user_id, session_id tuple from the request context."""
58
81
  headers = context.call_context.state.get("headers", {})
59
82
  return headers.get("user-id", DEFAULT_USER_ID), headers.get("session-id", DEFAULT_SESSION_ID)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aixtools
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: Tools for AI exploration and debugging
5
5
  Requires-Python: >=3.11.2
6
6
  Description-Content-Type: text/markdown
@@ -1,5 +1,5 @@
1
1
  aixtools/__init__.py,sha256=9NGHm7LjsQmsvjTZvw6QFJexSvAU4bCoN_KBk9SCa00,260
2
- aixtools/_version.py,sha256=2Q6v117QPuRsVsIEaHT3nJJVx7xxa47FYOkmuhVbGAI,704
2
+ aixtools/_version.py,sha256=yXzK2akXKIKUAfJk0WCQothqygqvndys6GBuXxo-wk0,704
3
3
  aixtools/app.py,sha256=JzQ0nrv_bjDQokllIlGHOV0HEb-V8N6k_nGQH-TEsVU,5227
4
4
  aixtools/chainlit.md,sha256=yC37Ly57vjKyiIvK4oUvf4DYxZCwH7iocTlx7bLeGLU,761
5
5
  aixtools/context.py,sha256=I_MD40ZnvRm5WPKAKqBUAdXIf8YaurkYUUHSVVy-QvU,598
@@ -22,7 +22,7 @@ aixtools/a2a/utils.py,sha256=EHr3IyyBJn23ni-JcfAf6i3VpQmPs0g1TSnAZazvY_8,4039
22
22
  aixtools/a2a/google_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  aixtools/a2a/google_sdk/card.py,sha256=P0L3bKbm28HaRkcIxIvjuSGUKOOc0ymyRAFHKm3a5GQ,996
24
24
  aixtools/a2a/google_sdk/remote_agent_connection.py,sha256=oDCRSN3gfONY1Ibp8BrtysIVqfQQ-lWe5N7lr1ymHxY,2819
25
- aixtools/a2a/google_sdk/utils.py,sha256=hjrNRZywJEUxHHaOttJFQU0FLzteg0Ggtm3qAeXMSVw,2430
25
+ aixtools/a2a/google_sdk/utils.py,sha256=kag7KWNRatpw9bf9ThqBdDlyn0QuBx8-Pja1id1Gk30,3242
26
26
  aixtools/a2a/google_sdk/pydantic_ai_adapter/agent_executor.py,sha256=MMbhbEnUL6NwSYnisJrDdHW8zJoSyJ3Pzzkt8jqwNdI,7066
27
27
  aixtools/a2a/google_sdk/pydantic_ai_adapter/storage.py,sha256=nGoVL7MPoZJW7iVR71laqpUYP308yFKZIifJtvUgpiU,878
28
28
  aixtools/agents/__init__.py,sha256=MAW196S2_G7uGqv-VNjvlOETRfuV44WlU1leO7SiR0A,282
@@ -89,8 +89,8 @@ aixtools/utils/chainlit/cl_agent_show.py,sha256=vaRuowp4BRvhxEr5hw0zHEJ7iaSF_5bo
89
89
  aixtools/utils/chainlit/cl_utils.py,sha256=fxaxdkcZg6uHdM8uztxdPowg3a2f7VR7B26VPY4t-3c,5738
90
90
  aixtools/vault/__init__.py,sha256=fsr_NuX3GZ9WZ7dGfe0gp_5-z3URxAfwVRXw7Xyc0dU,141
91
91
  aixtools/vault/vault.py,sha256=9dZLWdZQk9qN_Q9Djkofw9LUKnJqnrX5H0fGusVLBhA,6037
92
- aixtools-0.2.6.dist-info/METADATA,sha256=ks0BVYWEcWW3I7hKY4Gm-s669muCpKJX6QLuwSborj4,27229
93
- aixtools-0.2.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
94
- aixtools-0.2.6.dist-info/entry_points.txt,sha256=q8412TG4T0S8K0SKeWp2vkVPIDYQs0jNoHqcQ7qxOiA,155
95
- aixtools-0.2.6.dist-info/top_level.txt,sha256=wBn-rw9bCtxrR4AYEYgjilNCUVmKY0LWby9Zan2PRJM,9
96
- aixtools-0.2.6.dist-info/RECORD,,
92
+ aixtools-0.2.7.dist-info/METADATA,sha256=V3-mduY2Z8lURHq7Vhe4KVyieG1snJAHeSMmvVL2k5k,27229
93
+ aixtools-0.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
94
+ aixtools-0.2.7.dist-info/entry_points.txt,sha256=q8412TG4T0S8K0SKeWp2vkVPIDYQs0jNoHqcQ7qxOiA,155
95
+ aixtools-0.2.7.dist-info/top_level.txt,sha256=wBn-rw9bCtxrR4AYEYgjilNCUVmKY0LWby9Zan2PRJM,9
96
+ aixtools-0.2.7.dist-info/RECORD,,