distributed-a2a 0.1.5rc0__tar.gz → 0.1.5rc2__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.5rc0/distributed_a2a.egg-info → distributed_a2a-0.1.5rc2}/PKG-INFO +1 -1
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/server.py +9 -9
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2/distributed_a2a.egg-info}/PKG-INFO +1 -1
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/pyproject.toml +1 -1
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/LICENSE +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/MANIFEST.in +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/README.md +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/__init__.py +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/agent.py +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/client.py +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/executors.py +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/model.py +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a/registry.py +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a.egg-info/SOURCES.txt +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a.egg-info/dependency_links.txt +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a.egg-info/requires.txt +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a.egg-info/top_level.txt +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/requirements.txt +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/setup.cfg +0 -0
- {distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/setup.py +0 -0
|
@@ -48,7 +48,7 @@ def load_app(agent_config: dict[str, Any]) -> FastAPI:
|
|
|
48
48
|
name=skill.name,
|
|
49
49
|
description=skill.description,
|
|
50
50
|
tags=skill.tags)
|
|
51
|
-
for skill in agent_config.skills]
|
|
51
|
+
for skill in agent_config.agent.card.skills]
|
|
52
52
|
skills.append(AgentSkill(
|
|
53
53
|
id='routing',
|
|
54
54
|
name='Agent routing',
|
|
@@ -57,14 +57,14 @@ def load_app(agent_config: dict[str, Any]) -> FastAPI:
|
|
|
57
57
|
))
|
|
58
58
|
|
|
59
59
|
agent_card = AgentCard(
|
|
60
|
-
name=agent_config.agent.name,
|
|
61
|
-
description=agent_config.agent.description,
|
|
62
|
-
url=agent_config.agent.url,
|
|
63
|
-
version=agent_config.agent.version,
|
|
64
|
-
default_input_modes=agent_config.agent.default_input_modes,
|
|
65
|
-
default_output_modes=agent_config.agent.default_output_modes,
|
|
60
|
+
name=agent_config.agent.card.name,
|
|
61
|
+
description=agent_config.agent.card.description,
|
|
62
|
+
url=agent_config.agent.card.url,
|
|
63
|
+
version=agent_config.agent.card.version,
|
|
64
|
+
default_input_modes=agent_config.agent.card.default_input_modes,
|
|
65
|
+
default_output_modes=agent_config.agent.card.default_output_modes,
|
|
66
66
|
skills=skills,
|
|
67
|
-
preferred_transport=agent_config.agent.preferred_transport_protocol,
|
|
67
|
+
preferred_transport=agent_config.agent.card.preferred_transport_protocol,
|
|
68
68
|
)
|
|
69
69
|
|
|
70
70
|
|
|
@@ -83,4 +83,4 @@ def load_app(agent_config: dict[str, Any]) -> FastAPI:
|
|
|
83
83
|
agent_executor=executor,
|
|
84
84
|
task_store=InMemoryTaskStore() #TODO replace with dynamodb store
|
|
85
85
|
)
|
|
86
|
-
).build(title=name, lifespan=lifespan)
|
|
86
|
+
).build(title=agent_card.name, lifespan=lifespan)
|
|
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.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{distributed_a2a-0.1.5rc0 → distributed_a2a-0.1.5rc2}/distributed_a2a.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|