distributed-a2a 0.1.5rc15__tar.gz → 0.1.5rc17__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.5rc15/distributed_a2a.egg-info → distributed_a2a-0.1.5rc17}/PKG-INFO +1 -1
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/executors.py +1 -1
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/model.py +7 -8
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17/distributed_a2a.egg-info}/PKG-INFO +1 -1
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/pyproject.toml +1 -1
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/LICENSE +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/MANIFEST.in +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/README.md +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/__init__.py +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/agent.py +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/client.py +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/registry.py +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a/server.py +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/SOURCES.txt +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/dependency_links.txt +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/requires.txt +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/top_level.txt +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/requirements.txt +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/setup.cfg +0 -0
- {distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/setup.py +0 -0
|
@@ -27,7 +27,7 @@ class RoutingAgentExecutor(AgentExecutor):
|
|
|
27
27
|
api_key = os.environ.get(agent_config.agent.llm.api_key_env)
|
|
28
28
|
self.agent = StatusAgent[StringResponse](
|
|
29
29
|
llm_config=agent_config.agent.llm,
|
|
30
|
-
system_prompt=agent_config.agent.
|
|
30
|
+
system_prompt=agent_config.agent.system_prompt,
|
|
31
31
|
name=agent_config.agent.card.name,
|
|
32
32
|
api_key=api_key,
|
|
33
33
|
is_routing=False,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
|
-
from typing import List
|
|
2
|
+
from typing import List, Any
|
|
3
3
|
|
|
4
|
-
from anyio.functools import lru_cache
|
|
5
4
|
from langchain_core.language_models import BaseChatModel
|
|
6
5
|
from langchain_openai import ChatOpenAI
|
|
7
6
|
from pydantic import BaseModel, Field
|
|
@@ -37,13 +36,13 @@ class AgentItem(BaseModel):
|
|
|
37
36
|
llm: LLMConfig = Field(description="The LLM configuration node")
|
|
38
37
|
system_prompt: str = Field(description="The system prompt to use for the LLM or a path to a file containing the system prompt")
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
if os.path.exists(
|
|
43
|
-
with open(
|
|
44
|
-
|
|
39
|
+
def __init__(self, /, **data: Any) -> None:
|
|
40
|
+
prompt_or_path= data['system_prompt']
|
|
41
|
+
if os.path.exists(prompt_or_path):
|
|
42
|
+
with open(prompt_or_path, "r", encoding="utf-8") as f:
|
|
43
|
+
data['system_prompt'] = f.read()
|
|
45
44
|
|
|
46
|
-
|
|
45
|
+
super().__init__(**data)
|
|
47
46
|
|
|
48
47
|
|
|
49
48
|
class AgentConfig(BaseModel):
|
|
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.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/requires.txt
RENAMED
|
File without changes
|
{distributed_a2a-0.1.5rc15 → distributed_a2a-0.1.5rc17}/distributed_a2a.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|