meshagent-tools 0.23.0__tar.gz → 0.24.1__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 (30) hide show
  1. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/CHANGELOG.md +9 -0
  2. {meshagent_tools-0.23.0/meshagent_tools.egg-info → meshagent_tools-0.24.1}/PKG-INFO +2 -2
  3. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/discovery.py +3 -23
  4. meshagent_tools-0.24.1/meshagent/tools/version.py +1 -0
  5. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1/meshagent_tools.egg-info}/PKG-INFO +2 -2
  6. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent_tools.egg-info/requires.txt +1 -1
  7. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/pyproject.toml +1 -1
  8. meshagent_tools-0.23.0/meshagent/tools/version.py +0 -1
  9. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/LICENSE +0 -0
  10. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/MANIFEST.in +0 -0
  11. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/README.md +0 -0
  12. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/__init__.py +0 -0
  13. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/blob.py +0 -0
  14. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/config.py +0 -0
  15. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/database.py +0 -0
  16. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/datetime.py +0 -0
  17. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/document_tools.py +0 -0
  18. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/hosting.py +0 -0
  19. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/multi_tool.py +0 -0
  20. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/pydantic.py +0 -0
  21. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/storage.py +0 -0
  22. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/strict_schema.py +0 -0
  23. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/tool.py +0 -0
  24. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/toolkit.py +0 -0
  25. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/uuid.py +0 -0
  26. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent/tools/web_toolkit.py +0 -0
  27. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent_tools.egg-info/SOURCES.txt +0 -0
  28. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent_tools.egg-info/dependency_links.txt +0 -0
  29. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/meshagent_tools.egg-info/top_level.txt +0 -0
  30. {meshagent_tools-0.23.0 → meshagent_tools-0.24.1}/setup.cfg +0 -0
@@ -1,3 +1,12 @@
1
+ ## [0.24.1]
2
+ - Stability
3
+
4
+ ## [0.24.0]
5
+ - Breaking: removed `AgentsClient.ask` and `list_agents` from the Python SDK.
6
+ - Breaking: `AgentCallContext` renamed to `TaskContext`, planning module and Pydantic agent utilities removed, and discovery toolkit no longer lists agents.
7
+ - Feature: TaskRunner refactor adds RunTaskTool/RemoteToolkit support plus a `run()` helper for direct execution.
8
+ - Feature: task-runner CLI adds `run` and an `allow_model_selection` toggle for LLM task runners; legacy agent ask/list CLI commands removed.
9
+
1
10
  ## [0.23.0]
2
11
  - Breaking: service template APIs now expect YAML template strings and ServiceTemplateSpec.to_service_spec() no longer accepts values; use ServiceTemplateSpec.from_yaml(..., values) for Jinja rendering
3
12
  - Added Jinja/YAML template parsing and ServiceSpec.from_yaml for loading service specs from YAML
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-tools
3
- Version: 0.23.0
3
+ Version: 0.24.1
4
4
  Summary: Tools for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -12,7 +12,7 @@ License-File: LICENSE
12
12
  Requires-Dist: pyjwt~=2.10
13
13
  Requires-Dist: pytest~=8.4
14
14
  Requires-Dist: pytest-asyncio~=0.26
15
- Requires-Dist: meshagent-api~=0.23.0
15
+ Requires-Dist: meshagent-api~=0.24.1
16
16
  Requires-Dist: aiohttp~=3.10
17
17
  Requires-Dist: opentelemetry-distro~=0.54b1
18
18
  Dynamic: license-file
@@ -30,33 +30,13 @@ class ListTools(Tool):
30
30
  return {"toolkits": [*(t.to_json() for t in toolkits)]}
31
31
 
32
32
 
33
- class ListAgents(Tool):
34
- def __init__(self):
35
- super().__init__(
36
- name="list_agents",
37
- title="list agents",
38
- description="lists the callable agents in the room",
39
- input_schema={
40
- "type": "object",
41
- "additionalProperties": False,
42
- "required": [],
43
- "properties": {},
44
- },
45
- )
46
-
47
- async def execute(self, context: ToolContext):
48
- agents = await context.room.agents.list_agents()
49
- return {"agents": [*(t.to_json() for t in agents)]}
50
-
51
-
52
33
  class DiscoveryToolkit(RemoteToolkit):
53
34
  def __init__(self):
54
35
  super().__init__(
55
- name="storage",
56
- title="storage",
57
- description="tools for interacting with meshagent room storage",
36
+ name="discovery",
37
+ title="discovery",
38
+ description="toolkit for discovering tools in a room",
58
39
  tools=[
59
40
  ListTools(),
60
- ListAgents(),
61
41
  ],
62
42
  )
@@ -0,0 +1 @@
1
+ __version__ = "0.24.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-tools
3
- Version: 0.23.0
3
+ Version: 0.24.1
4
4
  Summary: Tools for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -12,7 +12,7 @@ License-File: LICENSE
12
12
  Requires-Dist: pyjwt~=2.10
13
13
  Requires-Dist: pytest~=8.4
14
14
  Requires-Dist: pytest-asyncio~=0.26
15
- Requires-Dist: meshagent-api~=0.23.0
15
+ Requires-Dist: meshagent-api~=0.24.1
16
16
  Requires-Dist: aiohttp~=3.10
17
17
  Requires-Dist: opentelemetry-distro~=0.54b1
18
18
  Dynamic: license-file
@@ -1,6 +1,6 @@
1
1
  pyjwt~=2.10
2
2
  pytest~=8.4
3
3
  pytest-asyncio~=0.26
4
- meshagent-api~=0.23.0
4
+ meshagent-api~=0.24.1
5
5
  aiohttp~=3.10
6
6
  opentelemetry-distro~=0.54b1
@@ -12,7 +12,7 @@ dependencies = [
12
12
  "pyjwt~=2.10",
13
13
  "pytest~=8.4",
14
14
  "pytest-asyncio~=0.26",
15
- "meshagent-api~=0.23.0",
15
+ "meshagent-api~=0.24.1",
16
16
  "aiohttp~=3.10",
17
17
  "opentelemetry-distro~=0.54b1"
18
18
  ]
@@ -1 +0,0 @@
1
- __version__ = "0.23.0"