meshagent 0.13.0__tar.gz → 0.15.0__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.
- {meshagent-0.13.0 → meshagent-0.15.0}/CHANGELOG.md +11 -0
- {meshagent-0.13.0/meshagent.egg-info → meshagent-0.15.0}/PKG-INFO +15 -15
- meshagent-0.15.0/meshagent/version.py +1 -0
- {meshagent-0.13.0 → meshagent-0.15.0/meshagent.egg-info}/PKG-INFO +15 -15
- meshagent-0.15.0/meshagent.egg-info/requires.txt +26 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/pyproject.toml +14 -14
- meshagent-0.13.0/meshagent/version.py +0 -1
- meshagent-0.13.0/meshagent.egg-info/requires.txt +0 -26
- {meshagent-0.13.0 → meshagent-0.15.0}/LICENSE +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/MANIFEST.in +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/README.md +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/meshagent/__init__.py +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/meshagent.egg-info/SOURCES.txt +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/meshagent.egg-info/dependency_links.txt +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/meshagent.egg-info/top_level.txt +0 -0
- {meshagent-0.13.0 → meshagent-0.15.0}/setup.cfg +0 -0
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [0.15.0]
|
|
2
|
+
- Added new UI schema widgets for `tabs`/`tab` (including initial tab selection and active background styling) plus a `visible` boolean widget property for conditional rendering.
|
|
3
|
+
- Updated Python LiveKit integration dependencies to include `livekit==1.0.20`.
|
|
4
|
+
|
|
5
|
+
## [0.14.0]
|
|
6
|
+
- Breaking change: toolkit extension hooks were simplified to a synchronous `get_toolkit_builders()` API and tool selection now uses per-toolkit configuration objects (not just tool names)
|
|
7
|
+
- `LLMTaskRunner` now supports per-client and per-room rules, plus dynamically injected required toolkits at call time
|
|
8
|
+
- `TaskRunner.ask` now supports optional binary attachments; `LLMTaskRunner` can unpack tar attachments and pass images/files into the LLM conversation context
|
|
9
|
+
- `AgentsClient.ask` now returns `TextResponse` when the agent responds with plain text (instead of always treating answers as JSON)
|
|
10
|
+
- Added a CLI `task-runner` command to run/join LLM task runners with configurable rules, schemas, toolkits, and optional remote LLM delegation
|
|
11
|
+
|
|
1
12
|
## [0.13.0]
|
|
2
13
|
- Added `initial_json` and explicit schema support when opening MeshDocuments, enabling schema-first document initialization
|
|
3
14
|
- Added binary attachment support when invoking agent tools so tool calls can include raw payload data
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
4
4
|
Summary: Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -10,25 +10,25 @@ Requires-Python: >=3.13
|
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Provides-Extra: all
|
|
13
|
-
Requires-Dist: meshagent-api[all]~=0.
|
|
14
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
15
|
-
Requires-Dist: meshagent-cli[all]~=0.
|
|
16
|
-
Requires-Dist: meshagent-computers~=0.
|
|
17
|
-
Requires-Dist: meshagent-livekit~=0.
|
|
18
|
-
Requires-Dist: meshagent-mcp~=0.
|
|
19
|
-
Requires-Dist: meshagent-openai~=0.
|
|
20
|
-
Requires-Dist: meshagent-otel~=0.
|
|
21
|
-
Requires-Dist: meshagent-tools~=0.
|
|
13
|
+
Requires-Dist: meshagent-api[all]~=0.15.0; extra == "all"
|
|
14
|
+
Requires-Dist: meshagent-agents[all]~=0.15.0; extra == "all"
|
|
15
|
+
Requires-Dist: meshagent-cli[all]~=0.15.0; extra == "all"
|
|
16
|
+
Requires-Dist: meshagent-computers~=0.15.0; extra == "all"
|
|
17
|
+
Requires-Dist: meshagent-livekit~=0.15.0; extra == "all"
|
|
18
|
+
Requires-Dist: meshagent-mcp~=0.15.0; extra == "all"
|
|
19
|
+
Requires-Dist: meshagent-openai~=0.15.0; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-otel~=0.15.0; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-tools~=0.15.0; extra == "all"
|
|
22
22
|
Provides-Extra: agents
|
|
23
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
23
|
+
Requires-Dist: meshagent-agents[all]~=0.15.0; extra == "agents"
|
|
24
24
|
Provides-Extra: tools
|
|
25
|
-
Requires-Dist: meshagent-tools~=0.
|
|
25
|
+
Requires-Dist: meshagent-tools~=0.15.0; extra == "tools"
|
|
26
26
|
Provides-Extra: cli
|
|
27
|
-
Requires-Dist: meshagent-cli[all]~=0.
|
|
27
|
+
Requires-Dist: meshagent-cli[all]~=0.15.0; extra == "cli"
|
|
28
28
|
Provides-Extra: mcp-service
|
|
29
|
-
Requires-Dist: meshagent-cli[mcp-service]~=0.
|
|
29
|
+
Requires-Dist: meshagent-cli[mcp-service]~=0.15.0; extra == "mcp-service"
|
|
30
30
|
Provides-Extra: otel
|
|
31
|
-
Requires-Dist: meshagent-otel~=0.
|
|
31
|
+
Requires-Dist: meshagent-otel~=0.15.0; extra == "otel"
|
|
32
32
|
Dynamic: license-file
|
|
33
33
|
|
|
34
34
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.15.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
4
4
|
Summary: Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -10,25 +10,25 @@ Requires-Python: >=3.13
|
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Provides-Extra: all
|
|
13
|
-
Requires-Dist: meshagent-api[all]~=0.
|
|
14
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
15
|
-
Requires-Dist: meshagent-cli[all]~=0.
|
|
16
|
-
Requires-Dist: meshagent-computers~=0.
|
|
17
|
-
Requires-Dist: meshagent-livekit~=0.
|
|
18
|
-
Requires-Dist: meshagent-mcp~=0.
|
|
19
|
-
Requires-Dist: meshagent-openai~=0.
|
|
20
|
-
Requires-Dist: meshagent-otel~=0.
|
|
21
|
-
Requires-Dist: meshagent-tools~=0.
|
|
13
|
+
Requires-Dist: meshagent-api[all]~=0.15.0; extra == "all"
|
|
14
|
+
Requires-Dist: meshagent-agents[all]~=0.15.0; extra == "all"
|
|
15
|
+
Requires-Dist: meshagent-cli[all]~=0.15.0; extra == "all"
|
|
16
|
+
Requires-Dist: meshagent-computers~=0.15.0; extra == "all"
|
|
17
|
+
Requires-Dist: meshagent-livekit~=0.15.0; extra == "all"
|
|
18
|
+
Requires-Dist: meshagent-mcp~=0.15.0; extra == "all"
|
|
19
|
+
Requires-Dist: meshagent-openai~=0.15.0; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-otel~=0.15.0; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-tools~=0.15.0; extra == "all"
|
|
22
22
|
Provides-Extra: agents
|
|
23
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
23
|
+
Requires-Dist: meshagent-agents[all]~=0.15.0; extra == "agents"
|
|
24
24
|
Provides-Extra: tools
|
|
25
|
-
Requires-Dist: meshagent-tools~=0.
|
|
25
|
+
Requires-Dist: meshagent-tools~=0.15.0; extra == "tools"
|
|
26
26
|
Provides-Extra: cli
|
|
27
|
-
Requires-Dist: meshagent-cli[all]~=0.
|
|
27
|
+
Requires-Dist: meshagent-cli[all]~=0.15.0; extra == "cli"
|
|
28
28
|
Provides-Extra: mcp-service
|
|
29
|
-
Requires-Dist: meshagent-cli[mcp-service]~=0.
|
|
29
|
+
Requires-Dist: meshagent-cli[mcp-service]~=0.15.0; extra == "mcp-service"
|
|
30
30
|
Provides-Extra: otel
|
|
31
|
-
Requires-Dist: meshagent-otel~=0.
|
|
31
|
+
Requires-Dist: meshagent-otel~=0.15.0; extra == "otel"
|
|
32
32
|
Dynamic: license-file
|
|
33
33
|
|
|
34
34
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
[agents]
|
|
3
|
+
meshagent-agents[all]~=0.15.0
|
|
4
|
+
|
|
5
|
+
[all]
|
|
6
|
+
meshagent-api[all]~=0.15.0
|
|
7
|
+
meshagent-agents[all]~=0.15.0
|
|
8
|
+
meshagent-cli[all]~=0.15.0
|
|
9
|
+
meshagent-computers~=0.15.0
|
|
10
|
+
meshagent-livekit~=0.15.0
|
|
11
|
+
meshagent-mcp~=0.15.0
|
|
12
|
+
meshagent-openai~=0.15.0
|
|
13
|
+
meshagent-otel~=0.15.0
|
|
14
|
+
meshagent-tools~=0.15.0
|
|
15
|
+
|
|
16
|
+
[cli]
|
|
17
|
+
meshagent-cli[all]~=0.15.0
|
|
18
|
+
|
|
19
|
+
[mcp-service]
|
|
20
|
+
meshagent-cli[mcp-service]~=0.15.0
|
|
21
|
+
|
|
22
|
+
[otel]
|
|
23
|
+
meshagent-otel~=0.15.0
|
|
24
|
+
|
|
25
|
+
[tools]
|
|
26
|
+
meshagent-tools~=0.15.0
|
|
@@ -32,33 +32,33 @@ readme = { file = "README.md", content-type = "text/markdown" }
|
|
|
32
32
|
|
|
33
33
|
[project.optional-dependencies]
|
|
34
34
|
all = [
|
|
35
|
-
"meshagent-api[all]~=0.
|
|
36
|
-
"meshagent-agents[all]~=0.
|
|
37
|
-
"meshagent-cli[all]~=0.
|
|
38
|
-
"meshagent-computers~=0.
|
|
39
|
-
"meshagent-livekit~=0.
|
|
40
|
-
"meshagent-mcp~=0.
|
|
41
|
-
"meshagent-openai~=0.
|
|
42
|
-
"meshagent-otel~=0.
|
|
43
|
-
"meshagent-tools~=0.
|
|
35
|
+
"meshagent-api[all]~=0.15.0",
|
|
36
|
+
"meshagent-agents[all]~=0.15.0",
|
|
37
|
+
"meshagent-cli[all]~=0.15.0",
|
|
38
|
+
"meshagent-computers~=0.15.0",
|
|
39
|
+
"meshagent-livekit~=0.15.0",
|
|
40
|
+
"meshagent-mcp~=0.15.0",
|
|
41
|
+
"meshagent-openai~=0.15.0",
|
|
42
|
+
"meshagent-otel~=0.15.0",
|
|
43
|
+
"meshagent-tools~=0.15.0"
|
|
44
44
|
]
|
|
45
45
|
|
|
46
46
|
agents = [
|
|
47
|
-
"meshagent-agents[all]~=0.
|
|
47
|
+
"meshagent-agents[all]~=0.15.0",
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
tools = [
|
|
51
|
-
"meshagent-tools~=0.
|
|
51
|
+
"meshagent-tools~=0.15.0",
|
|
52
52
|
]
|
|
53
53
|
|
|
54
54
|
cli = [
|
|
55
|
-
"meshagent-cli[all]~=0.
|
|
55
|
+
"meshagent-cli[all]~=0.15.0"
|
|
56
56
|
]
|
|
57
57
|
|
|
58
58
|
mcp-service = [
|
|
59
|
-
"meshagent-cli[mcp-service]~=0.
|
|
59
|
+
"meshagent-cli[mcp-service]~=0.15.0"
|
|
60
60
|
]
|
|
61
61
|
|
|
62
62
|
otel = [
|
|
63
|
-
"meshagent-otel~=0.
|
|
63
|
+
"meshagent-otel~=0.15.0",
|
|
64
64
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.13.0"
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
[agents]
|
|
3
|
-
meshagent-agents[all]~=0.13.0
|
|
4
|
-
|
|
5
|
-
[all]
|
|
6
|
-
meshagent-api[all]~=0.13.0
|
|
7
|
-
meshagent-agents[all]~=0.13.0
|
|
8
|
-
meshagent-cli[all]~=0.13.0
|
|
9
|
-
meshagent-computers~=0.13.0
|
|
10
|
-
meshagent-livekit~=0.13.0
|
|
11
|
-
meshagent-mcp~=0.13.0
|
|
12
|
-
meshagent-openai~=0.13.0
|
|
13
|
-
meshagent-otel~=0.13.0
|
|
14
|
-
meshagent-tools~=0.13.0
|
|
15
|
-
|
|
16
|
-
[cli]
|
|
17
|
-
meshagent-cli[all]~=0.13.0
|
|
18
|
-
|
|
19
|
-
[mcp-service]
|
|
20
|
-
meshagent-cli[mcp-service]~=0.13.0
|
|
21
|
-
|
|
22
|
-
[otel]
|
|
23
|
-
meshagent-otel~=0.13.0
|
|
24
|
-
|
|
25
|
-
[tools]
|
|
26
|
-
meshagent-tools~=0.13.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|