distributed-a2a 0.1.9rc12__tar.gz → 0.1.9rc13__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.9rc12/distributed_a2a.egg-info → distributed_a2a-0.1.9rc13}/PKG-INFO +1 -1
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/executors.py +2 -2
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/router.py +0 -1
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13/distributed_a2a.egg-info}/PKG-INFO +1 -1
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/pyproject.toml +1 -1
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/LICENSE +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/MANIFEST.in +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/README.md +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/__init__.py +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/agent.py +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/client.py +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/model.py +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/registry.py +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a/server.py +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/SOURCES.txt +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/dependency_links.txt +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/requires.txt +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/top_level.txt +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/requirements.txt +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/setup.cfg +0 -0
- {distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/setup.py +0 -0
|
@@ -126,7 +126,7 @@ class RoutingAgentExecutor(AgentExecutor):
|
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
class RoutingExecutor(AgentExecutor):
|
|
129
|
-
def __init__(self, router_config: RouterConfig
|
|
129
|
+
def __init__(self, router_config: RouterConfig) -> None:
|
|
130
130
|
super().__init__()
|
|
131
131
|
api_key = os.environ.get(router_config.router.llm.api_key_env)
|
|
132
132
|
if api_key is None:
|
|
@@ -138,7 +138,7 @@ class RoutingExecutor(AgentExecutor):
|
|
|
138
138
|
name=router_config.router.card.name,
|
|
139
139
|
api_key=api_key,
|
|
140
140
|
is_routing=True,
|
|
141
|
-
tools=[
|
|
141
|
+
tools=[]
|
|
142
142
|
)
|
|
143
143
|
|
|
144
144
|
async def cancel(self, context: RequestContext, event_queue: EventQueue) -> None:
|
|
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.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/requires.txt
RENAMED
|
File without changes
|
{distributed_a2a-0.1.9rc12 → distributed_a2a-0.1.9rc13}/distributed_a2a.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|