distributed-a2a 0.1.5rc13__tar.gz → 0.1.5rc15__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 (20) hide show
  1. {distributed_a2a-0.1.5rc13/distributed_a2a.egg-info → distributed_a2a-0.1.5rc15}/PKG-INFO +1 -1
  2. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/model.py +3 -4
  3. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15/distributed_a2a.egg-info}/PKG-INFO +1 -1
  4. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/pyproject.toml +1 -1
  5. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/LICENSE +0 -0
  6. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/MANIFEST.in +0 -0
  7. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/README.md +0 -0
  8. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/__init__.py +0 -0
  9. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/agent.py +0 -0
  10. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/client.py +0 -0
  11. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/executors.py +0 -0
  12. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/registry.py +0 -0
  13. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a/server.py +0 -0
  14. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a.egg-info/SOURCES.txt +0 -0
  15. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a.egg-info/dependency_links.txt +0 -0
  16. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a.egg-info/requires.txt +0 -0
  17. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/distributed_a2a.egg-info/top_level.txt +0 -0
  18. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/requirements.txt +0 -0
  19. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/setup.cfg +0 -0
  20. {distributed_a2a-0.1.5rc13 → distributed_a2a-0.1.5rc15}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.5rc13
3
+ Version: 0.1.5rc15
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,7 +19,6 @@ class LLMConfig(BaseModel):
19
19
  model: str = Field(description="The model to use for the LLM e.g. gpt-3.5-turbo")
20
20
  api_key_env: str = Field(description="The environment variable containing the api key for the LLM provider")
21
21
  reasoning_effort: str = Field(description="The reasoning effort to use for the LLM e.g. high", default="high")
22
- system_prompt: str = Field(description="The system prompt to use for the LLM")
23
22
 
24
23
 
25
24
  class CardConfig(BaseModel):
@@ -40,11 +39,11 @@ class AgentItem(BaseModel):
40
39
 
41
40
  @lru_cache
42
41
  def get_system_prompt(self) -> str:
43
- if os.path.exists(self._system_prompt):
44
- with open(self._system_prompt, 'r', encoding='utf-8') as file:
42
+ if os.path.exists(self.system_prompt):
43
+ with open(self.system_prompt, 'r', encoding='utf-8') as file:
45
44
  return file.read()
46
45
 
47
- return self._system_prompt
46
+ return self.system_prompt
48
47
 
49
48
 
50
49
  class AgentConfig(BaseModel):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: distributed_a2a
3
- Version: 0.1.5rc13
3
+ Version: 0.1.5rc15
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.5rc13"
7
+ version = "0.1.5rc15"
8
8
  description = "A library for building A2A agents with routing capabilities"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"