distributed-a2a 0.1.9rc0__tar.gz → 0.1.9rc1__tar.gz

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.
Files changed (21) hide show
  1. {distributed_a2a-0.1.9rc0/distributed_a2a.egg-info → distributed_a2a-0.1.9rc1}/PKG-INFO +1 -1
  2. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/model.py +12 -1
  3. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/router.py +2 -3
  4. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/server.py +9 -11
  5. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1/distributed_a2a.egg-info}/PKG-INFO +1 -1
  6. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/pyproject.toml +1 -1
  7. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/LICENSE +0 -0
  8. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/MANIFEST.in +0 -0
  9. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/README.md +0 -0
  10. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/__init__.py +0 -0
  11. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/agent.py +0 -0
  12. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/client.py +0 -0
  13. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/executors.py +0 -0
  14. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a/registry.py +0 -0
  15. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a.egg-info/SOURCES.txt +0 -0
  16. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a.egg-info/dependency_links.txt +0 -0
  17. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a.egg-info/requires.txt +0 -0
  18. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/distributed_a2a.egg-info/top_level.txt +0 -0
  19. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/requirements.txt +0 -0
  20. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/setup.cfg +0 -0
  21. {distributed_a2a-0.1.9rc0 → distributed_a2a-0.1.9rc1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.9rc0
3
+ Version: 0.1.9rc1
4
4
  Summary: A library for building A2A agents with routing capabilities
5
5
  Home-page: https://github.com/Barra-Technologies/distributed-a2a
6
6
  Author: Fabian Bell
@@ -1,5 +1,5 @@
1
1
  import os
2
- from typing import List, Any
2
+ from typing import List, Any, Optional
3
3
 
4
4
  from langchain_core.language_models import BaseChatModel
5
5
  from langchain_openai import ChatOpenAI
@@ -13,6 +13,15 @@ class SkillConfig(BaseModel):
13
13
  tags: List[str] = Field(description="The tags associated with the skill")
14
14
 
15
15
 
16
+ class RegistryItemConfig(BaseModel):
17
+ url: str = Field(description="The url of the registry")
18
+
19
+
20
+ class RegistryConfig(BaseModel):
21
+ agent: RegistryItemConfig = Field(description="The agent registry configuration")
22
+ mcp: RegistryItemConfig = Field(description="The mcp registry configuration")
23
+
24
+
16
25
  class LLMConfig(BaseModel):
17
26
  base_url: str = Field(description="The base url of the LLM provider")
18
27
  model: str = Field(description="The model to use for the LLM e.g. gpt-3.5-turbo")
@@ -32,6 +41,7 @@ class CardConfig(BaseModel):
32
41
 
33
42
 
34
43
  class AgentItem(BaseModel):
44
+ registry: Optional[RegistryConfig] = Field(description="The registry configuration node", default=None)
35
45
  card: CardConfig = Field(description="The agent card configuration node")
36
46
  llm: LLMConfig = Field(description="The LLM configuration node")
37
47
  system_prompt: str = Field(description="The system prompt to use for the LLM or a path to a file containing the system prompt")
@@ -50,6 +60,7 @@ class AgentConfig(BaseModel):
50
60
 
51
61
 
52
62
  class RouterItem(BaseModel):
63
+ registry: Optional[RegistryConfig] = Field(description="The registry configuration node", default=None)
53
64
  card: CardConfig = Field(description="The router card configuration node")
54
65
  llm: LLMConfig = Field(description="The LLM configuration node")
55
66
 
@@ -8,7 +8,7 @@ from fastapi import FastAPI
8
8
 
9
9
  from .executors import RoutingExecutor
10
10
  from .model import RouterConfig
11
- from .registry import DynamoDbRegistryLookup
11
+ from .registry import DynamoDbRegistryLookup, AgentRegistryLookup
12
12
  from .server import CAPABILITIES, AGENT_CARD_TABLE
13
13
 
14
14
 
@@ -33,8 +33,7 @@ def load_router(router_dic: dict[str, Any]) -> FastAPI:
33
33
 
34
34
  executor = RoutingExecutor(
35
35
  router_config=router_config,
36
- routing_tool=DynamoDbRegistryLookup(agent_card_tabel=AGENT_CARD_TABLE).as_tool()
37
-
36
+ routing_tool=AgentRegistryLookup(router_config.router.registry.agent.url).as_tool()
38
37
  )
39
38
 
40
39
  return A2ARESTFastAPIApplication(
@@ -1,3 +1,4 @@
1
+ import os
1
2
  import asyncio
2
3
  import time
3
4
  from contextlib import asynccontextmanager
@@ -13,7 +14,7 @@ from fastapi import FastAPI
13
14
 
14
15
  from .executors import RoutingAgentExecutor
15
16
  from .model import AgentConfig
16
- from .registry import DynamoDbRegistryLookup, registry_heart_beat
17
+ from .registry import DynamoDbRegistryLookup, registry_heart_beat, AgentRegistryLookup
17
18
 
18
19
  CAPABILITIES = AgentCapabilities(streaming=False, push_notifications=False)
19
20
 
@@ -21,6 +22,7 @@ HEART_BEAT_INTERVAL_SEC = 5
21
22
  MAX_HEART_BEAT_MISSES = 3
22
23
 
23
24
  AGENT_CARD_TABLE = "agent-cards"
25
+ AGENT_REGISTRY_URL = ""
24
26
 
25
27
  def get_expire_at() -> int:
26
28
  return int(time.time() + MAX_HEART_BEAT_MISSES * HEART_BEAT_INTERVAL_SEC)
@@ -69,20 +71,16 @@ def load_app(agent_config: Any) -> FastAPI:
69
71
  preferred_transport=agent_config.agent.card.preferred_transport_protocol,
70
72
  capabilities=CAPABILITIES
71
73
  )
72
-
73
-
74
+ agent_registry = AgentRegistryLookup(agent_config.agent.registry.agent.url)
74
75
  executor = RoutingAgentExecutor(agent_config=agent_config,
75
- routing_tool=DynamoDbRegistryLookup(agent_card_tabel=AGENT_CARD_TABLE).as_tool())
76
+ routing_tool=agent_registry.as_tool())
76
77
 
77
78
  @asynccontextmanager
78
79
  async def lifespan(_: FastAPI) -> AsyncGenerator[None, Any]:
79
- asyncio.create_task(heart_beat(name=agent_card.name, agent_card_table=AGENT_CARD_TABLE, agent_card=agent_card))
80
- import os
81
- registry_url = os.getenv("REGISTRY_URL")
82
- if registry_url:
83
- asyncio.create_task(registry_heart_beat(name=agent_card.name, registry_url=registry_url,
84
- agent_card=agent_card, interval_sec=HEART_BEAT_INTERVAL_SEC,
85
- get_expire_at=get_expire_at))
80
+ asyncio.create_task(registry_heart_beat(name=agent_card.name, registry_url=agent_config.agent.registry.agent.url,
81
+ agent_card=agent_card, interval_sec=HEART_BEAT_INTERVAL_SEC,
82
+ get_expire_at=get_expire_at))
83
+
86
84
  yield
87
85
 
88
86
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.9rc0
3
+ Version: 0.1.9rc1
4
4
  Summary: A library for building A2A agents with routing capabilities
5
5
  Home-page: https://github.com/Barra-Technologies/distributed-a2a
6
6
  Author: Fabian Bell
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "distributed_a2a"
7
- version = "0.1.9rc0"
7
+ version = "0.1.9rc1"
8
8
  description = "A library for building A2A agents with routing capabilities"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.14"