meshagent 0.6.1__tar.gz → 0.20.5__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.
@@ -0,0 +1,148 @@
1
+ ## [0.20.5]
2
+ - Stability
3
+
4
+ ## [0.20.4]
5
+ - Stability
6
+
7
+ ## [0.20.3]
8
+ - Stability
9
+
10
+ ## [0.20.2]
11
+ - Stability
12
+
13
+ ## [0.20.1]
14
+ - Stability
15
+
16
+ ## [0.20.0]
17
+ - Breaking: mailbox create/update requests must now include a `public` flag (SDK defaults to `False` when omitted in method calls)
18
+ - Mailbox response models include a `public` field
19
+ - Breaking: service specs now require either `external` or `container` to be set
20
+ - External service specs allow omitting the base URL
21
+ - Service template variables include optional `annotations` metadata
22
+ - CLI mailbox commands support `--public` and include the `public` value in listings
23
+ - Mailbot whitelist parsing accepts comma-separated values
24
+ - Fixed JSON schema generation for database delete/search tools
25
+
26
+ ## [0.19.5]
27
+ - Stability
28
+
29
+ ## [0.19.4]
30
+ - Stability
31
+
32
+ ## [0.19.3]
33
+ - Stability
34
+
35
+ ## [0.19.2]
36
+ - Add boolean data type support plus `nullable`/`metadata` on schema types and generated JSON Schema.
37
+ - BREAKING: OpenAI proxy client creation now takes an optional `http_client` (request logging is configured via a separate logging client helper).
38
+ - Shell tool now reuses a long-lived container with a writable root filesystem, runs commands via `bash -lc`, and defaults to the `python:3.13` image.
39
+ - Add `log_llm_requests` support to enable OpenAI request/response logging.
40
+
41
+ ## [0.19.1]
42
+ - Add optional metadata to agent chat contexts and propagate it through message-stream LLM delegation, including recording thread participant lists
43
+ - Add an option for the mailbot CLI to delegate LLM interactions to a remote participant instead of using the local LLM adapter
44
+
45
+ ## [0.19.0]
46
+ - Add a reusable transcript logger/transcriber agent that writes conversation segments to transcript documents from live conversation events or user-turn completion
47
+ - Add optional voicebot transcription via a provided transcript path, wrapping the voice agent to persist user/assistant speech to a transcript document
48
+ - Refactor meeting transcription to use the shared transcript logger with per-participant sessions and improved session lifecycle cleanup
49
+ - Breaking change: starting a new email thread no longer accepts attachments; attachments are now handled by a dedicated “new thread with attachments” tool that downloads files from room storage before sending
50
+ - Simplify CLI agent room-rules loading and ensure worker message toolkits include inherited toolkits
51
+
52
+ ## [0.18.2]
53
+ - Stability
54
+
55
+ ## [0.18.1]
56
+ - Updated OpenAI Python SDK dependency to `openai~=2.14.0` (from `~2.6.0`).
57
+ - Breaking: OpenAI Responses adapter no longer sends tool definitions with requests, disabling tool/function calling via the Responses API.
58
+ - CLI deploy commands now report “Deployed service” on successful deploys.
59
+ - Shell toolkit/tool builders now pass the configured shell image via the `image` field.
60
+
61
+ ## [0.18.0]
62
+ - Added local TCP port-forwarding helper that bridges to the remote tunnel WebSocket
63
+ - Added a CLI `port forward` command to expose container ports locally
64
+ - Added `writable_root_fs` support when running containers
65
+ - Added `host_port` support for service port specs
66
+ - Added `ApiScope.tunnels` support in participant tokens (including `agent_default(tunnels=...)`)
67
+ - Added container-based Playwright “computer use” and enabled computer-use toolkits for chatbot/worker/mailbot flows
68
+ - Removed `scrapybara` from the computers package dependencies
69
+ - OpenAI proxy client can now optionally log requests/responses with redacted authorization headers
70
+
71
+ ## [0.17.1]
72
+ - Prevented worker toolkit lifecycle collisions when running alongside other toolkits by isolating the worker’s remote toolkit handling.
73
+ - Improved the error message when attempting to start a single-room agent more than once.
74
+
75
+ ## [0.17.0]
76
+ - Added scheduled tasks support to the Python accounts client (create/update/list/delete scheduled tasks) with typed models
77
+ - Added mailbox CRUD helpers to the Python accounts client and improved error handling with typed HTTP exceptions (404/403/409/400/5xx)
78
+ - Added `RequiredTable` requirement type plus helper to create required tables, indexes, and optimize them automatically
79
+ - Added database namespace support for database toolkit operations (inspect/search/insert/update/delete in a namespace)
80
+ - Enhanced worker and mail agents (per-message tool selection, optional remote toolkit exposure for queue task submission, reply-all/cc support)
81
+ - Updated Python dependency: `supabase-auth` from `~2.12.3` to `~2.22.3`
82
+
83
+ ## [0.16.0]
84
+ - Add optional `namespace` support across database client operations (list/inspect/create/drop/index/etc.) to target namespaced tables
85
+ - Update dependencies `livekit-api` to `~1.1` (from `>=1.0`) and `livekit-agents`/`livekit-plugins-openai`/`livekit-plugins-silero`/`livekit-plugins-turn-detector` to `~1.3` (from `~1.2`)
86
+
87
+ ## [0.15.0]
88
+ - 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.
89
+ - Updated Python LiveKit integration dependencies to include `livekit==1.0.20`.
90
+
91
+ ## [0.14.0]
92
+ - 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)
93
+ - `LLMTaskRunner` now supports per-client and per-room rules, plus dynamically injected required toolkits at call time
94
+ - `TaskRunner.ask` now supports optional binary attachments; `LLMTaskRunner` can unpack tar attachments and pass images/files into the LLM conversation context
95
+ - `AgentsClient.ask` now returns `TextResponse` when the agent responds with plain text (instead of always treating answers as JSON)
96
+ - Added a CLI `task-runner` command to run/join LLM task runners with configurable rules, schemas, toolkits, and optional remote LLM delegation
97
+
98
+ ## [0.13.0]
99
+ - Added `initial_json` and explicit schema support when opening MeshDocuments, enabling schema-first document initialization
100
+ - Added binary attachment support when invoking agent tools so tool calls can include raw payload data
101
+ - Breaking change: toolkit construction is now async and receives the active room client, enabling toolkits that introspect room state during build
102
+ - Added database schema inspection and JSON Schema mappings for data types to support tool input validation and generation
103
+ - Introduced database toolkits (list/inspect/search/insert/update/delete) and integrated optional per-table enablement into the chatbot/mailbot/helpers CLI flows
104
+
105
+ ## [0.12.0]
106
+ - Reduce worker-queue logging verbosity to avoid logging full message payloads
107
+
108
+ ## [0.11.0]
109
+ - Stability
110
+
111
+ ## [0.10.1]
112
+ - Stability
113
+
114
+ ## [0.10.0]
115
+ - Stability
116
+
117
+ ## [0.9.3]
118
+ - Stability
119
+
120
+ ## [0.9.2]
121
+ - Stability
122
+
123
+ ## [0.9.1]
124
+ - Stability
125
+
126
+ ## [0.9.0]
127
+ - Stability
128
+
129
+ ## [0.8.4]
130
+ - Stability
131
+
132
+ ## [0.8.3]
133
+ - Stability
134
+
135
+ ## [0.8.2]
136
+ - Stability
137
+
138
+ ## [0.8.1]
139
+ - Stability
140
+
141
+ ## [0.8.0]
142
+ - Stability
143
+
144
+ ## [0.7.2]
145
+ - Stability
146
+
147
+ ## [0.7.1]
148
+ - Stability
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent
3
- Version: 0.6.1
3
+ Version: 0.20.5
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.6.1; extra == "all"
14
- Requires-Dist: meshagent-agents[all]~=0.6.1; extra == "all"
15
- Requires-Dist: meshagent-cli[all]~=0.6.1; extra == "all"
16
- Requires-Dist: meshagent-computers~=0.6.1; extra == "all"
17
- Requires-Dist: meshagent-livekit~=0.6.1; extra == "all"
18
- Requires-Dist: meshagent-mcp~=0.6.1; extra == "all"
19
- Requires-Dist: meshagent-openai~=0.6.1; extra == "all"
20
- Requires-Dist: meshagent-otel~=0.6.1; extra == "all"
21
- Requires-Dist: meshagent-tools~=0.6.1; extra == "all"
13
+ Requires-Dist: meshagent-api[all]~=0.20.5; extra == "all"
14
+ Requires-Dist: meshagent-agents[all]~=0.20.5; extra == "all"
15
+ Requires-Dist: meshagent-cli[all]~=0.20.5; extra == "all"
16
+ Requires-Dist: meshagent-computers~=0.20.5; extra == "all"
17
+ Requires-Dist: meshagent-livekit~=0.20.5; extra == "all"
18
+ Requires-Dist: meshagent-mcp~=0.20.5; extra == "all"
19
+ Requires-Dist: meshagent-openai~=0.20.5; extra == "all"
20
+ Requires-Dist: meshagent-otel~=0.20.5; extra == "all"
21
+ Requires-Dist: meshagent-tools~=0.20.5; extra == "all"
22
22
  Provides-Extra: agents
23
- Requires-Dist: meshagent-agents[all]~=0.6.1; extra == "agents"
23
+ Requires-Dist: meshagent-agents[all]~=0.20.5; extra == "agents"
24
24
  Provides-Extra: tools
25
- Requires-Dist: meshagent-tools~=0.6.1; extra == "tools"
25
+ Requires-Dist: meshagent-tools~=0.20.5; extra == "tools"
26
26
  Provides-Extra: cli
27
- Requires-Dist: meshagent-cli[all]~=0.6.1; extra == "cli"
27
+ Requires-Dist: meshagent-cli[all]~=0.20.5; extra == "cli"
28
28
  Provides-Extra: mcp-service
29
- Requires-Dist: meshagent-cli[mcp-service]~=0.6.1; extra == "mcp-service"
29
+ Requires-Dist: meshagent-cli[mcp-service]~=0.20.5; extra == "mcp-service"
30
30
  Provides-Extra: otel
31
- Requires-Dist: meshagent-otel~=0.6.1; extra == "otel"
31
+ Requires-Dist: meshagent-otel~=0.20.5; extra == "otel"
32
32
  Dynamic: license-file
33
33
 
34
34
  # [Meshagent](https://www.meshagent.com)
@@ -0,0 +1 @@
1
+ __version__ = "0.20.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent
3
- Version: 0.6.1
3
+ Version: 0.20.5
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.6.1; extra == "all"
14
- Requires-Dist: meshagent-agents[all]~=0.6.1; extra == "all"
15
- Requires-Dist: meshagent-cli[all]~=0.6.1; extra == "all"
16
- Requires-Dist: meshagent-computers~=0.6.1; extra == "all"
17
- Requires-Dist: meshagent-livekit~=0.6.1; extra == "all"
18
- Requires-Dist: meshagent-mcp~=0.6.1; extra == "all"
19
- Requires-Dist: meshagent-openai~=0.6.1; extra == "all"
20
- Requires-Dist: meshagent-otel~=0.6.1; extra == "all"
21
- Requires-Dist: meshagent-tools~=0.6.1; extra == "all"
13
+ Requires-Dist: meshagent-api[all]~=0.20.5; extra == "all"
14
+ Requires-Dist: meshagent-agents[all]~=0.20.5; extra == "all"
15
+ Requires-Dist: meshagent-cli[all]~=0.20.5; extra == "all"
16
+ Requires-Dist: meshagent-computers~=0.20.5; extra == "all"
17
+ Requires-Dist: meshagent-livekit~=0.20.5; extra == "all"
18
+ Requires-Dist: meshagent-mcp~=0.20.5; extra == "all"
19
+ Requires-Dist: meshagent-openai~=0.20.5; extra == "all"
20
+ Requires-Dist: meshagent-otel~=0.20.5; extra == "all"
21
+ Requires-Dist: meshagent-tools~=0.20.5; extra == "all"
22
22
  Provides-Extra: agents
23
- Requires-Dist: meshagent-agents[all]~=0.6.1; extra == "agents"
23
+ Requires-Dist: meshagent-agents[all]~=0.20.5; extra == "agents"
24
24
  Provides-Extra: tools
25
- Requires-Dist: meshagent-tools~=0.6.1; extra == "tools"
25
+ Requires-Dist: meshagent-tools~=0.20.5; extra == "tools"
26
26
  Provides-Extra: cli
27
- Requires-Dist: meshagent-cli[all]~=0.6.1; extra == "cli"
27
+ Requires-Dist: meshagent-cli[all]~=0.20.5; extra == "cli"
28
28
  Provides-Extra: mcp-service
29
- Requires-Dist: meshagent-cli[mcp-service]~=0.6.1; extra == "mcp-service"
29
+ Requires-Dist: meshagent-cli[mcp-service]~=0.20.5; extra == "mcp-service"
30
30
  Provides-Extra: otel
31
- Requires-Dist: meshagent-otel~=0.6.1; extra == "otel"
31
+ Requires-Dist: meshagent-otel~=0.20.5; 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.20.5
4
+
5
+ [all]
6
+ meshagent-api[all]~=0.20.5
7
+ meshagent-agents[all]~=0.20.5
8
+ meshagent-cli[all]~=0.20.5
9
+ meshagent-computers~=0.20.5
10
+ meshagent-livekit~=0.20.5
11
+ meshagent-mcp~=0.20.5
12
+ meshagent-openai~=0.20.5
13
+ meshagent-otel~=0.20.5
14
+ meshagent-tools~=0.20.5
15
+
16
+ [cli]
17
+ meshagent-cli[all]~=0.20.5
18
+
19
+ [mcp-service]
20
+ meshagent-cli[mcp-service]~=0.20.5
21
+
22
+ [otel]
23
+ meshagent-otel~=0.20.5
24
+
25
+ [tools]
26
+ meshagent-tools~=0.20.5
@@ -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.6.1",
36
- "meshagent-agents[all]~=0.6.1",
37
- "meshagent-cli[all]~=0.6.1",
38
- "meshagent-computers~=0.6.1",
39
- "meshagent-livekit~=0.6.1",
40
- "meshagent-mcp~=0.6.1",
41
- "meshagent-openai~=0.6.1",
42
- "meshagent-otel~=0.6.1",
43
- "meshagent-tools~=0.6.1"
35
+ "meshagent-api[all]~=0.20.5",
36
+ "meshagent-agents[all]~=0.20.5",
37
+ "meshagent-cli[all]~=0.20.5",
38
+ "meshagent-computers~=0.20.5",
39
+ "meshagent-livekit~=0.20.5",
40
+ "meshagent-mcp~=0.20.5",
41
+ "meshagent-openai~=0.20.5",
42
+ "meshagent-otel~=0.20.5",
43
+ "meshagent-tools~=0.20.5"
44
44
  ]
45
45
 
46
46
  agents = [
47
- "meshagent-agents[all]~=0.6.1",
47
+ "meshagent-agents[all]~=0.20.5",
48
48
  ]
49
49
 
50
50
  tools = [
51
- "meshagent-tools~=0.6.1",
51
+ "meshagent-tools~=0.20.5",
52
52
  ]
53
53
 
54
54
  cli = [
55
- "meshagent-cli[all]~=0.6.1"
55
+ "meshagent-cli[all]~=0.20.5"
56
56
  ]
57
57
 
58
58
  mcp-service = [
59
- "meshagent-cli[mcp-service]~=0.6.1"
59
+ "meshagent-cli[mcp-service]~=0.20.5"
60
60
  ]
61
61
 
62
62
  otel = [
63
- "meshagent-otel~=0.6.1",
63
+ "meshagent-otel~=0.20.5",
64
64
  ]
@@ -1,144 +0,0 @@
1
- ## [0.6.1]
2
- - Stability
3
-
4
- ## [0.6.0]
5
- - Stability
6
-
7
- ## [0.5.19]
8
- - Stability
9
-
10
- ## [0.5.18]
11
- - Stability
12
-
13
- ## [0.5.17]
14
- - Stability
15
-
16
- ## [0.5.16]
17
- - Stability
18
-
19
- ## [0.5.15]
20
- - Stability
21
-
22
- ## [0.5.14]
23
- - Stability
24
-
25
- ## [0.5.13]
26
- - Stability
27
-
28
- ## [0.5.12]
29
- - Stability
30
-
31
- ## [0.5.8]
32
- - Stability
33
-
34
- ## [0.5.7]
35
- - Stability
36
-
37
- ## [0.5.6]
38
- - Stability
39
-
40
- ## [0.5.5]
41
- - Stability
42
-
43
- ## [0.5.4]
44
- - Stability
45
-
46
- ## [0.5.3]
47
- - Stability
48
-
49
- ## [0.5.2]
50
- - Stability
51
-
52
- ## [0.5.1]
53
- - Stability
54
-
55
- ## [0.5.0]
56
- - Stability
57
-
58
- ## [0.4.3]
59
- - Stability
60
-
61
- ## [0.4.2]
62
- - Stability
63
-
64
- ## [0.4.1]
65
- - Stability
66
-
67
- ## [0.4.0]
68
- - Stability
69
-
70
- ## [0.3.1]
71
- - Stability
72
-
73
- ## [0.3.0]
74
- - Stability
75
-
76
- ## [0.2.1]
77
- - Stability
78
-
79
- ## [0.2.0]
80
- - Stability
81
-
82
- ## [0.1.0]
83
- - Stability
84
-
85
- ## [0.0.39]
86
- - Stability
87
-
88
- ## [0.0.38]
89
- - Stability
90
-
91
- ## [0.0.37]
92
- - Stability
93
-
94
- ## [0.0.36]
95
- - Stability
96
-
97
- ## [0.0.35]
98
- - Stability
99
-
100
- ## [0.0.34]
101
- - Stability
102
-
103
- ## [0.0.33]
104
- - Stability
105
-
106
- ## [0.0.32]
107
- - Stability
108
-
109
- ## [0.0.31]
110
- - Stability
111
-
112
- ## [0.0.31]
113
- - Stability
114
-
115
- ## [0.0.29]
116
- - Stability
117
-
118
- ## [0.0.28]
119
- - Stability
120
-
121
- ## [0.0.27]
122
- - Stability
123
-
124
- ## [0.0.26]
125
- - Stability
126
-
127
- ## [0.0.25]
128
- - Stability
129
-
130
- ## [0.0.24]
131
- - Stability
132
-
133
- ## [0.0.23]
134
- - Stability
135
-
136
- ## [0.0.22]
137
- - Stability
138
-
139
- ## [0.0.20]
140
- - Stability
141
-
142
- ## [0.0.21]
143
- - Stability
144
-
@@ -1 +0,0 @@
1
- __version__ = "0.6.1"
@@ -1,26 +0,0 @@
1
-
2
- [agents]
3
- meshagent-agents[all]~=0.6.1
4
-
5
- [all]
6
- meshagent-api[all]~=0.6.1
7
- meshagent-agents[all]~=0.6.1
8
- meshagent-cli[all]~=0.6.1
9
- meshagent-computers~=0.6.1
10
- meshagent-livekit~=0.6.1
11
- meshagent-mcp~=0.6.1
12
- meshagent-openai~=0.6.1
13
- meshagent-otel~=0.6.1
14
- meshagent-tools~=0.6.1
15
-
16
- [cli]
17
- meshagent-cli[all]~=0.6.1
18
-
19
- [mcp-service]
20
- meshagent-cli[mcp-service]~=0.6.1
21
-
22
- [otel]
23
- meshagent-otel~=0.6.1
24
-
25
- [tools]
26
- meshagent-tools~=0.6.1
File without changes
File without changes
File without changes
File without changes