distributed-a2a 0.1.5rc18__tar.gz → 0.1.5rc19__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.5rc18/distributed_a2a.egg-info → distributed_a2a-0.1.5rc19}/PKG-INFO +1 -1
  2. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/agent.py +1 -1
  3. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/server.py +1 -0
  4. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19/distributed_a2a.egg-info}/PKG-INFO +1 -1
  5. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/pyproject.toml +1 -1
  6. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/LICENSE +0 -0
  7. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/MANIFEST.in +0 -0
  8. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/README.md +0 -0
  9. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/__init__.py +0 -0
  10. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/client.py +0 -0
  11. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/executors.py +0 -0
  12. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/model.py +0 -0
  13. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/registry.py +0 -0
  14. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a/tool_registry_test.py +0 -0
  15. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a.egg-info/SOURCES.txt +0 -0
  16. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a.egg-info/dependency_links.txt +0 -0
  17. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a.egg-info/requires.txt +0 -0
  18. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/distributed_a2a.egg-info/top_level.txt +0 -0
  19. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/requirements.txt +0 -0
  20. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/setup.cfg +0 -0
  21. {distributed_a2a-0.1.5rc18 → distributed_a2a-0.1.5rc19}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.5rc18
3
+ Version: 0.1.5rc19
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
@@ -42,7 +42,7 @@ class StatusAgent[ResponseT: AgentResponse]:
42
42
 
43
43
 
44
44
  saver = DynamoDBSaver(
45
- table_name="your-dynamodb-table-name",
45
+ table_name=f"checkpoint_saver_{name}",
46
46
  max_read_request_units=20, ## TODO find correct value for app
47
47
  max_write_request_units=20, ## TODO find correct value for app
48
48
  ttl_seconds=86400
@@ -77,6 +77,7 @@ def load_app(agent_config: dict[str, Any]) -> FastAPI:
77
77
  asyncio.create_task(heart_beat(name=agent_card.name, agent_card_table=AGENT_CARD_TABLE, agent_card=agent_card))
78
78
  yield
79
79
 
80
+
80
81
  return A2ARESTFastAPIApplication(
81
82
  agent_card=agent_card,
82
83
  http_handler=DefaultRequestHandler(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.5rc18
3
+ Version: 0.1.5rc19
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.5rc18"
7
+ version = "0.1.5rc19"
8
8
  description = "A library for building A2A agents with routing capabilities"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"