distributed-a2a 0.1.5rc6__tar.gz → 0.1.5rc8__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 (20) hide show
  1. {distributed_a2a-0.1.5rc6/distributed_a2a.egg-info → distributed_a2a-0.1.5rc8}/PKG-INFO +1 -1
  2. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/server.py +4 -6
  3. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8/distributed_a2a.egg-info}/PKG-INFO +1 -1
  4. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/pyproject.toml +1 -1
  5. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/LICENSE +0 -0
  6. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/MANIFEST.in +0 -0
  7. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/README.md +0 -0
  8. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/__init__.py +0 -0
  9. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/agent.py +0 -0
  10. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/client.py +0 -0
  11. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/executors.py +0 -0
  12. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/model.py +0 -0
  13. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a/registry.py +0 -0
  14. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a.egg-info/SOURCES.txt +0 -0
  15. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a.egg-info/dependency_links.txt +0 -0
  16. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a.egg-info/requires.txt +0 -0
  17. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/distributed_a2a.egg-info/top_level.txt +0 -0
  18. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/requirements.txt +0 -0
  19. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/setup.cfg +0 -0
  20. {distributed_a2a-0.1.5rc6 → distributed_a2a-0.1.5rc8}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.5rc6
3
+ Version: 0.1.5rc8
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,4 @@
1
1
  import asyncio
2
- import logging
3
2
  import time
4
3
  from contextlib import asynccontextmanager
5
4
  from typing import Any
@@ -41,9 +40,8 @@ async def heart_beat(name: str, agent_card_table: str, agent_card: AgentCard):
41
40
 
42
41
 
43
42
  def load_app(agent_config: dict[str, Any]) -> FastAPI:
44
- logging.info("Loading agent app")
45
- logging.info(f"config dictionary: {agent_config}")
46
- agent_config=AgentConfig.model_validate(agent_config)
43
+
44
+ agent_config= AgentConfig.model_validate(agent_config)
47
45
 
48
46
  skills = [AgentSkill(
49
47
  id=skill.id,
@@ -85,5 +83,5 @@ def load_app(agent_config: dict[str, Any]) -> FastAPI:
85
83
  http_handler=DefaultRequestHandler(
86
84
  agent_executor=executor,
87
85
  task_store=InMemoryTaskStore() #TODO replace with dynamodb store
88
- )
89
- ).build(title=agent_card.name, lifespan=lifespan)
86
+
87
+ )).build(title=agent_card.name, lifespan=lifespan, root_path=f"/{agent_config.agent.card.name) #TODO use extra parameter}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.5rc6
3
+ Version: 0.1.5rc8
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.5rc6"
7
+ version = "0.1.5rc8"
8
8
  description = "A library for building A2A agents with routing capabilities"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"