distributed-a2a 0.1.6rc8__tar.gz → 0.1.8__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.
- {distributed_a2a-0.1.6rc8/distributed_a2a.egg-info → distributed_a2a-0.1.8}/PKG-INFO +12 -11
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/agent.py +1 -1
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8/distributed_a2a.egg-info}/PKG-INFO +12 -11
- distributed_a2a-0.1.8/distributed_a2a.egg-info/requires.txt +11 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/pyproject.toml +1 -1
- distributed_a2a-0.1.8/requirements.txt +11 -0
- distributed_a2a-0.1.6rc8/distributed_a2a.egg-info/requires.txt +0 -10
- distributed_a2a-0.1.6rc8/requirements.txt +0 -10
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/LICENSE +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/MANIFEST.in +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/README.md +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/__init__.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/client.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/executors.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/model.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/registry.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/router.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a/server.py +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a.egg-info/SOURCES.txt +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a.egg-info/dependency_links.txt +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a.egg-info/top_level.txt +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/setup.cfg +0 -0
- {distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: distributed_a2a
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.8
|
|
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
|
|
@@ -19,16 +19,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: langchain
|
|
23
|
-
Requires-Dist: langchain-core
|
|
24
|
-
Requires-Dist: langchain-openai
|
|
25
|
-
Requires-Dist: langgraph
|
|
26
|
-
Requires-Dist: langgraph-dynamodb-checkpoint
|
|
27
|
-
Requires-Dist: pydantic
|
|
28
|
-
Requires-Dist: boto3
|
|
29
|
-
Requires-Dist: a2a
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
22
|
+
Requires-Dist: langchain==1.2.3
|
|
23
|
+
Requires-Dist: langchain-core==1.2.7
|
|
24
|
+
Requires-Dist: langchain-openai==1.1.7
|
|
25
|
+
Requires-Dist: langgraph==1.0.5
|
|
26
|
+
Requires-Dist: langgraph-dynamodb-checkpoint==0.2.6.4
|
|
27
|
+
Requires-Dist: pydantic==2.12.5
|
|
28
|
+
Requires-Dist: boto3==1.42.25
|
|
29
|
+
Requires-Dist: a2a-sdk==0.3.22
|
|
30
|
+
Requires-Dist: a2a-types==0.1.0
|
|
31
|
+
Requires-Dist: build==1.4.0
|
|
32
|
+
Requires-Dist: twine==6.2.0
|
|
32
33
|
Dynamic: author
|
|
33
34
|
Dynamic: home-page
|
|
34
35
|
Dynamic: license-file
|
|
@@ -11,7 +11,7 @@ from .model import get_model, LLMConfig
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class AgentResponse(BaseModel):
|
|
14
|
-
status: Literal[TaskState.rejected, TaskState.completed, TaskState.
|
|
14
|
+
status: Literal[TaskState.rejected, TaskState.completed, TaskState.failed] = Field(
|
|
15
15
|
description=(
|
|
16
16
|
f'You should select status as {TaskState.rejected} for requests that fall outside your area of expertise.'
|
|
17
17
|
f'You should select status as {TaskState.completed} if the request is fully addressed and no further input is needed. '
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: distributed_a2a
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.8
|
|
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
|
|
@@ -19,16 +19,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: langchain
|
|
23
|
-
Requires-Dist: langchain-core
|
|
24
|
-
Requires-Dist: langchain-openai
|
|
25
|
-
Requires-Dist: langgraph
|
|
26
|
-
Requires-Dist: langgraph-dynamodb-checkpoint
|
|
27
|
-
Requires-Dist: pydantic
|
|
28
|
-
Requires-Dist: boto3
|
|
29
|
-
Requires-Dist: a2a
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
22
|
+
Requires-Dist: langchain==1.2.3
|
|
23
|
+
Requires-Dist: langchain-core==1.2.7
|
|
24
|
+
Requires-Dist: langchain-openai==1.1.7
|
|
25
|
+
Requires-Dist: langgraph==1.0.5
|
|
26
|
+
Requires-Dist: langgraph-dynamodb-checkpoint==0.2.6.4
|
|
27
|
+
Requires-Dist: pydantic==2.12.5
|
|
28
|
+
Requires-Dist: boto3==1.42.25
|
|
29
|
+
Requires-Dist: a2a-sdk==0.3.22
|
|
30
|
+
Requires-Dist: a2a-types==0.1.0
|
|
31
|
+
Requires-Dist: build==1.4.0
|
|
32
|
+
Requires-Dist: twine==6.2.0
|
|
32
33
|
Dynamic: author
|
|
33
34
|
Dynamic: home-page
|
|
34
35
|
Dynamic: license-file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{distributed_a2a-0.1.6rc8 → distributed_a2a-0.1.8}/distributed_a2a.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|