meshagent 0.6.5__tar.gz → 0.25.3__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.25.3/CHANGELOG.md +229 -0
- {meshagent-0.6.5/meshagent.egg-info → meshagent-0.25.3}/PKG-INFO +16 -15
- meshagent-0.25.3/meshagent/version.py +1 -0
- {meshagent-0.6.5 → meshagent-0.25.3/meshagent.egg-info}/PKG-INFO +16 -15
- meshagent-0.25.3/meshagent.egg-info/requires.txt +27 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/pyproject.toml +15 -14
- meshagent-0.6.5/CHANGELOG.md +0 -156
- meshagent-0.6.5/meshagent/version.py +0 -1
- meshagent-0.6.5/meshagent.egg-info/requires.txt +0 -26
- {meshagent-0.6.5 → meshagent-0.25.3}/LICENSE +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/MANIFEST.in +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/README.md +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/meshagent/__init__.py +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/meshagent.egg-info/SOURCES.txt +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/meshagent.egg-info/dependency_links.txt +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/meshagent.egg-info/top_level.txt +0 -0
- {meshagent-0.6.5 → meshagent-0.25.3}/setup.cfg +0 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
## [0.25.3]
|
|
2
|
+
- Stability
|
|
3
|
+
|
|
4
|
+
## [0.25.2]
|
|
5
|
+
- BREAKING: Agent metadata field renamed from labels to annotations across Python agents and examples.
|
|
6
|
+
- Thread history now limits appended messages to a context window and exposes search/count/range tools for conversation history outside that window.
|
|
7
|
+
- Tool decorator now supports bound instance/class methods as tools.
|
|
8
|
+
- Anthropic adapters omit null/unset fields in serialized payloads and log tool call errors for easier diagnostics.
|
|
9
|
+
- Schema document grep now requires keyword arguments for options like ignore_case.
|
|
10
|
+
|
|
11
|
+
## [0.25.1]
|
|
12
|
+
- Added Anthropic web search and web fetch toolkits, including beta header injection and request middleware support.
|
|
13
|
+
- Added a container-based shell tool to run commands in persistent containers with configurable image, mounts, and environment.
|
|
14
|
+
- Expanded the web fetch tool to return text, JSON, or file responses with HTML-to-Markdown conversion and content-type handling.
|
|
15
|
+
- Breaking: CLI commands now reject OpenAI-only tool flags when using Claude models (image generation, local shell, apply patch, computer use).
|
|
16
|
+
- CLI MCP bridge adds streamable HTTP connections plus custom headers and secret-backed headers; OAuth2 secret set now accepts text/base64 input and identity-scoped secrets.
|
|
17
|
+
- Dependency updates: mcp to ~1.26.0; html-to-markdown to ~2.24.3.
|
|
18
|
+
|
|
19
|
+
## [0.25.0]
|
|
20
|
+
- Added SQL column-schema parsing and CLI support for SQL-like `--columns` when creating tables or adding columns.
|
|
21
|
+
- Breaking: SQL query requests now use a single `params` map for typed bindings instead of `parameters`/`param_values`.
|
|
22
|
+
- Added `published`/`public` port fields in service specs for externally routed services.
|
|
23
|
+
- Secrets set now supports `for_identity` to set secrets on behalf of another identity.
|
|
24
|
+
- Added a Slack events HTTP bot package with dependencies including `pyjwt` 2.10.
|
|
25
|
+
- Breaking: the CLI `exec` command was removed.
|
|
26
|
+
- ThreadAdapter message writing now uses `write_text_message` and accepts participant name strings.
|
|
27
|
+
|
|
28
|
+
## [0.24.5]
|
|
29
|
+
- Stability
|
|
30
|
+
|
|
31
|
+
## [0.24.4]
|
|
32
|
+
- Stability
|
|
33
|
+
|
|
34
|
+
## [0.24.3]
|
|
35
|
+
- Stability
|
|
36
|
+
|
|
37
|
+
## [0.24.2]
|
|
38
|
+
- Stability
|
|
39
|
+
|
|
40
|
+
## [0.24.1]
|
|
41
|
+
- Stability
|
|
42
|
+
|
|
43
|
+
## [0.24.0]
|
|
44
|
+
- Breaking: removed `AgentsClient.ask` and `list_agents` from the Python SDK.
|
|
45
|
+
- Breaking: `AgentCallContext` renamed to `TaskContext`, planning module and Pydantic agent utilities removed, and discovery toolkit no longer lists agents.
|
|
46
|
+
- Feature: TaskRunner refactor adds RunTaskTool/RemoteToolkit support plus a `run()` helper for direct execution.
|
|
47
|
+
- Feature: task-runner CLI adds `run` and an `allow_model_selection` toggle for LLM task runners; legacy agent ask/list CLI commands removed.
|
|
48
|
+
|
|
49
|
+
## [0.23.0]
|
|
50
|
+
- 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
|
|
51
|
+
- Added Jinja/YAML template parsing and ServiceSpec.from_yaml for loading service specs from YAML
|
|
52
|
+
- Added file storage mounts and token role fields in service/container specs
|
|
53
|
+
- Added render_template client method plus new User/UserRoomGrant models and a none project role
|
|
54
|
+
|
|
55
|
+
## [0.22.2]
|
|
56
|
+
- Stability
|
|
57
|
+
|
|
58
|
+
## [0.22.1]
|
|
59
|
+
- Stability
|
|
60
|
+
|
|
61
|
+
## [0.22.0]
|
|
62
|
+
- Added meshagent-anthropic with Anthropic Messages adapter, MCP connector toolkit support, and an OpenAI-Responses-compatible stream adapter (depends on anthropic>=0.25,<1.0).
|
|
63
|
+
- Breaking: agent naming now derives from participant name (Agent.name deprecated; TaskRunner/LLMRunner/Worker/VoiceBot constructors no longer require name; Voicebot alias removed; MailWorker renamed to MailBot with queue default).
|
|
64
|
+
- Breaking: SecretsClient methods renamed to list_secrets/delete_secret and expanded with request_secret/provide_secret/get_secret/set_secret/delete_requested_secret flows.
|
|
65
|
+
- Breaking: Meshagent client create_service/update_service now return ServiceSpec objects; service-template create/update helpers added for project and room services.
|
|
66
|
+
- OpenAI Responses adapter adds context window tracking, compaction via responses.compact, input-token counting, usage storage, max_output_tokens control, and shell tool env injection.
|
|
67
|
+
- RoomClient can auto-initialize from MESHAGENT_ROOM/MESHAGENT_TOKEN; websocket URL helper added.
|
|
68
|
+
- Schema documents add grep/tag queries and ChatBotClient; chat reply routing now targets the requesting participant reliably.
|
|
69
|
+
- Database toolkit now expects update values as a list of column updates and defaults to advanced search/delete tools.
|
|
70
|
+
- Dependency addition: prompt-toolkit~=3.0.52 added to CLI 'all' extras.
|
|
71
|
+
|
|
72
|
+
## [0.21.0]
|
|
73
|
+
- Breaking: the Image model no longer exposes manifest/template metadata in image listings.
|
|
74
|
+
- Add token-backed environment variables in service specs so Python clients can inject participant tokens instead of static values.
|
|
75
|
+
- Add `on_demand` and `writable_root_fs` flags on container specs to control per-request services and filesystem mutability.
|
|
76
|
+
- Breaking: the agent schedule annotation key is corrected to `meshagent.agent.schedule`; update any existing annotations using the old spelling.
|
|
77
|
+
- Add a Shell agent type and a shell command annotation for service metadata.
|
|
78
|
+
|
|
79
|
+
## [0.20.6]
|
|
80
|
+
- Stability
|
|
81
|
+
|
|
82
|
+
## [0.20.5]
|
|
83
|
+
- Stability
|
|
84
|
+
|
|
85
|
+
## [0.20.4]
|
|
86
|
+
- Stability
|
|
87
|
+
|
|
88
|
+
## [0.20.3]
|
|
89
|
+
- Stability
|
|
90
|
+
|
|
91
|
+
## [0.20.2]
|
|
92
|
+
- Stability
|
|
93
|
+
|
|
94
|
+
## [0.20.1]
|
|
95
|
+
- Stability
|
|
96
|
+
|
|
97
|
+
## [0.20.0]
|
|
98
|
+
- Breaking: mailbox create/update requests must now include a `public` flag (SDK defaults to `False` when omitted in method calls)
|
|
99
|
+
- Mailbox response models include a `public` field
|
|
100
|
+
- Breaking: service specs now require either `external` or `container` to be set
|
|
101
|
+
- External service specs allow omitting the base URL
|
|
102
|
+
- Service template variables include optional `annotations` metadata
|
|
103
|
+
- CLI mailbox commands support `--public` and include the `public` value in listings
|
|
104
|
+
- Mailbot whitelist parsing accepts comma-separated values
|
|
105
|
+
- Fixed JSON schema generation for database delete/search tools
|
|
106
|
+
|
|
107
|
+
## [0.19.5]
|
|
108
|
+
- Stability
|
|
109
|
+
|
|
110
|
+
## [0.19.4]
|
|
111
|
+
- Stability
|
|
112
|
+
|
|
113
|
+
## [0.19.3]
|
|
114
|
+
- Stability
|
|
115
|
+
|
|
116
|
+
## [0.19.2]
|
|
117
|
+
- Add boolean data type support plus `nullable`/`metadata` on schema types and generated JSON Schema.
|
|
118
|
+
- BREAKING: OpenAI proxy client creation now takes an optional `http_client` (request logging is configured via a separate logging client helper).
|
|
119
|
+
- 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.
|
|
120
|
+
- Add `log_llm_requests` support to enable OpenAI request/response logging.
|
|
121
|
+
|
|
122
|
+
## [0.19.1]
|
|
123
|
+
- Add optional metadata to agent chat contexts and propagate it through message-stream LLM delegation, including recording thread participant lists
|
|
124
|
+
- Add an option for the mailbot CLI to delegate LLM interactions to a remote participant instead of using the local LLM adapter
|
|
125
|
+
|
|
126
|
+
## [0.19.0]
|
|
127
|
+
- Add a reusable transcript logger/transcriber agent that writes conversation segments to transcript documents from live conversation events or user-turn completion
|
|
128
|
+
- Add optional voicebot transcription via a provided transcript path, wrapping the voice agent to persist user/assistant speech to a transcript document
|
|
129
|
+
- Refactor meeting transcription to use the shared transcript logger with per-participant sessions and improved session lifecycle cleanup
|
|
130
|
+
- 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
|
|
131
|
+
- Simplify CLI agent room-rules loading and ensure worker message toolkits include inherited toolkits
|
|
132
|
+
|
|
133
|
+
## [0.18.2]
|
|
134
|
+
- Stability
|
|
135
|
+
|
|
136
|
+
## [0.18.1]
|
|
137
|
+
- Updated OpenAI Python SDK dependency to `openai~=2.14.0` (from `~2.6.0`).
|
|
138
|
+
- Breaking: OpenAI Responses adapter no longer sends tool definitions with requests, disabling tool/function calling via the Responses API.
|
|
139
|
+
- CLI deploy commands now report “Deployed service” on successful deploys.
|
|
140
|
+
- Shell toolkit/tool builders now pass the configured shell image via the `image` field.
|
|
141
|
+
|
|
142
|
+
## [0.18.0]
|
|
143
|
+
- Added local TCP port-forwarding helper that bridges to the remote tunnel WebSocket
|
|
144
|
+
- Added a CLI `port forward` command to expose container ports locally
|
|
145
|
+
- Added `writable_root_fs` support when running containers
|
|
146
|
+
- Added `host_port` support for service port specs
|
|
147
|
+
- Added `ApiScope.tunnels` support in participant tokens (including `agent_default(tunnels=...)`)
|
|
148
|
+
- Added container-based Playwright “computer use” and enabled computer-use toolkits for chatbot/worker/mailbot flows
|
|
149
|
+
- Removed `scrapybara` from the computers package dependencies
|
|
150
|
+
- OpenAI proxy client can now optionally log requests/responses with redacted authorization headers
|
|
151
|
+
|
|
152
|
+
## [0.17.1]
|
|
153
|
+
- Prevented worker toolkit lifecycle collisions when running alongside other toolkits by isolating the worker’s remote toolkit handling.
|
|
154
|
+
- Improved the error message when attempting to start a single-room agent more than once.
|
|
155
|
+
|
|
156
|
+
## [0.17.0]
|
|
157
|
+
- Added scheduled tasks support to the Python accounts client (create/update/list/delete scheduled tasks) with typed models
|
|
158
|
+
- Added mailbox CRUD helpers to the Python accounts client and improved error handling with typed HTTP exceptions (404/403/409/400/5xx)
|
|
159
|
+
- Added `RequiredTable` requirement type plus helper to create required tables, indexes, and optimize them automatically
|
|
160
|
+
- Added database namespace support for database toolkit operations (inspect/search/insert/update/delete in a namespace)
|
|
161
|
+
- Enhanced worker and mail agents (per-message tool selection, optional remote toolkit exposure for queue task submission, reply-all/cc support)
|
|
162
|
+
- Updated Python dependency: `supabase-auth` from `~2.12.3` to `~2.22.3`
|
|
163
|
+
|
|
164
|
+
## [0.16.0]
|
|
165
|
+
- Add optional `namespace` support across database client operations (list/inspect/create/drop/index/etc.) to target namespaced tables
|
|
166
|
+
- 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`)
|
|
167
|
+
|
|
168
|
+
## [0.15.0]
|
|
169
|
+
- 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.
|
|
170
|
+
- Updated Python LiveKit integration dependencies to include `livekit==1.0.20`.
|
|
171
|
+
|
|
172
|
+
## [0.14.0]
|
|
173
|
+
- 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)
|
|
174
|
+
- `LLMTaskRunner` now supports per-client and per-room rules, plus dynamically injected required toolkits at call time
|
|
175
|
+
- `TaskRunner.ask` now supports optional binary attachments; `LLMTaskRunner` can unpack tar attachments and pass images/files into the LLM conversation context
|
|
176
|
+
- `AgentsClient.ask` now returns `TextResponse` when the agent responds with plain text (instead of always treating answers as JSON)
|
|
177
|
+
- Added a CLI `task-runner` command to run/join LLM task runners with configurable rules, schemas, toolkits, and optional remote LLM delegation
|
|
178
|
+
|
|
179
|
+
## [0.13.0]
|
|
180
|
+
- Added `initial_json` and explicit schema support when opening MeshDocuments, enabling schema-first document initialization
|
|
181
|
+
- Added binary attachment support when invoking agent tools so tool calls can include raw payload data
|
|
182
|
+
- Breaking change: toolkit construction is now async and receives the active room client, enabling toolkits that introspect room state during build
|
|
183
|
+
- Added database schema inspection and JSON Schema mappings for data types to support tool input validation and generation
|
|
184
|
+
- Introduced database toolkits (list/inspect/search/insert/update/delete) and integrated optional per-table enablement into the chatbot/mailbot/helpers CLI flows
|
|
185
|
+
|
|
186
|
+
## [0.12.0]
|
|
187
|
+
- Reduce worker-queue logging verbosity to avoid logging full message payloads
|
|
188
|
+
|
|
189
|
+
## [0.11.0]
|
|
190
|
+
- Stability
|
|
191
|
+
|
|
192
|
+
## [0.10.1]
|
|
193
|
+
- Stability
|
|
194
|
+
|
|
195
|
+
## [0.10.0]
|
|
196
|
+
- Stability
|
|
197
|
+
|
|
198
|
+
## [0.9.3]
|
|
199
|
+
- Stability
|
|
200
|
+
|
|
201
|
+
## [0.9.2]
|
|
202
|
+
- Stability
|
|
203
|
+
|
|
204
|
+
## [0.9.1]
|
|
205
|
+
- Stability
|
|
206
|
+
|
|
207
|
+
## [0.9.0]
|
|
208
|
+
- Stability
|
|
209
|
+
|
|
210
|
+
## [0.8.4]
|
|
211
|
+
- Stability
|
|
212
|
+
|
|
213
|
+
## [0.8.3]
|
|
214
|
+
- Stability
|
|
215
|
+
|
|
216
|
+
## [0.8.2]
|
|
217
|
+
- Stability
|
|
218
|
+
|
|
219
|
+
## [0.8.1]
|
|
220
|
+
- Stability
|
|
221
|
+
|
|
222
|
+
## [0.8.0]
|
|
223
|
+
- Stability
|
|
224
|
+
|
|
225
|
+
## [0.7.2]
|
|
226
|
+
- Stability
|
|
227
|
+
|
|
228
|
+
## [0.7.1]
|
|
229
|
+
- Stability
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.25.3
|
|
4
4
|
Summary: Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -10,25 +10,26 @@ 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-
|
|
21
|
-
Requires-Dist: meshagent-
|
|
13
|
+
Requires-Dist: meshagent-api[all]~=0.25.3; extra == "all"
|
|
14
|
+
Requires-Dist: meshagent-agents[all]~=0.25.3; extra == "all"
|
|
15
|
+
Requires-Dist: meshagent-cli[all]~=0.25.3; extra == "all"
|
|
16
|
+
Requires-Dist: meshagent-computers~=0.25.3; extra == "all"
|
|
17
|
+
Requires-Dist: meshagent-livekit~=0.25.3; extra == "all"
|
|
18
|
+
Requires-Dist: meshagent-mcp~=0.25.3; extra == "all"
|
|
19
|
+
Requires-Dist: meshagent-openai~=0.25.3; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-anthropic~=0.25.3; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-otel~=0.25.3; extra == "all"
|
|
22
|
+
Requires-Dist: meshagent-tools~=0.25.3; extra == "all"
|
|
22
23
|
Provides-Extra: agents
|
|
23
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
24
|
+
Requires-Dist: meshagent-agents[all]~=0.25.3; extra == "agents"
|
|
24
25
|
Provides-Extra: tools
|
|
25
|
-
Requires-Dist: meshagent-tools~=0.
|
|
26
|
+
Requires-Dist: meshagent-tools~=0.25.3; extra == "tools"
|
|
26
27
|
Provides-Extra: cli
|
|
27
|
-
Requires-Dist: meshagent-cli[all]~=0.
|
|
28
|
+
Requires-Dist: meshagent-cli[all]~=0.25.3; extra == "cli"
|
|
28
29
|
Provides-Extra: mcp-service
|
|
29
|
-
Requires-Dist: meshagent-cli[mcp-service]~=0.
|
|
30
|
+
Requires-Dist: meshagent-cli[mcp-service]~=0.25.3; extra == "mcp-service"
|
|
30
31
|
Provides-Extra: otel
|
|
31
|
-
Requires-Dist: meshagent-otel~=0.
|
|
32
|
+
Requires-Dist: meshagent-otel~=0.25.3; extra == "otel"
|
|
32
33
|
Dynamic: license-file
|
|
33
34
|
|
|
34
35
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.25.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.25.3
|
|
4
4
|
Summary: Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -10,25 +10,26 @@ 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-
|
|
21
|
-
Requires-Dist: meshagent-
|
|
13
|
+
Requires-Dist: meshagent-api[all]~=0.25.3; extra == "all"
|
|
14
|
+
Requires-Dist: meshagent-agents[all]~=0.25.3; extra == "all"
|
|
15
|
+
Requires-Dist: meshagent-cli[all]~=0.25.3; extra == "all"
|
|
16
|
+
Requires-Dist: meshagent-computers~=0.25.3; extra == "all"
|
|
17
|
+
Requires-Dist: meshagent-livekit~=0.25.3; extra == "all"
|
|
18
|
+
Requires-Dist: meshagent-mcp~=0.25.3; extra == "all"
|
|
19
|
+
Requires-Dist: meshagent-openai~=0.25.3; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-anthropic~=0.25.3; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-otel~=0.25.3; extra == "all"
|
|
22
|
+
Requires-Dist: meshagent-tools~=0.25.3; extra == "all"
|
|
22
23
|
Provides-Extra: agents
|
|
23
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
24
|
+
Requires-Dist: meshagent-agents[all]~=0.25.3; extra == "agents"
|
|
24
25
|
Provides-Extra: tools
|
|
25
|
-
Requires-Dist: meshagent-tools~=0.
|
|
26
|
+
Requires-Dist: meshagent-tools~=0.25.3; extra == "tools"
|
|
26
27
|
Provides-Extra: cli
|
|
27
|
-
Requires-Dist: meshagent-cli[all]~=0.
|
|
28
|
+
Requires-Dist: meshagent-cli[all]~=0.25.3; extra == "cli"
|
|
28
29
|
Provides-Extra: mcp-service
|
|
29
|
-
Requires-Dist: meshagent-cli[mcp-service]~=0.
|
|
30
|
+
Requires-Dist: meshagent-cli[mcp-service]~=0.25.3; extra == "mcp-service"
|
|
30
31
|
Provides-Extra: otel
|
|
31
|
-
Requires-Dist: meshagent-otel~=0.
|
|
32
|
+
Requires-Dist: meshagent-otel~=0.25.3; extra == "otel"
|
|
32
33
|
Dynamic: license-file
|
|
33
34
|
|
|
34
35
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
[agents]
|
|
3
|
+
meshagent-agents[all]~=0.25.3
|
|
4
|
+
|
|
5
|
+
[all]
|
|
6
|
+
meshagent-api[all]~=0.25.3
|
|
7
|
+
meshagent-agents[all]~=0.25.3
|
|
8
|
+
meshagent-cli[all]~=0.25.3
|
|
9
|
+
meshagent-computers~=0.25.3
|
|
10
|
+
meshagent-livekit~=0.25.3
|
|
11
|
+
meshagent-mcp~=0.25.3
|
|
12
|
+
meshagent-openai~=0.25.3
|
|
13
|
+
meshagent-anthropic~=0.25.3
|
|
14
|
+
meshagent-otel~=0.25.3
|
|
15
|
+
meshagent-tools~=0.25.3
|
|
16
|
+
|
|
17
|
+
[cli]
|
|
18
|
+
meshagent-cli[all]~=0.25.3
|
|
19
|
+
|
|
20
|
+
[mcp-service]
|
|
21
|
+
meshagent-cli[mcp-service]~=0.25.3
|
|
22
|
+
|
|
23
|
+
[otel]
|
|
24
|
+
meshagent-otel~=0.25.3
|
|
25
|
+
|
|
26
|
+
[tools]
|
|
27
|
+
meshagent-tools~=0.25.3
|
|
@@ -32,33 +32,34 @@ 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-
|
|
43
|
-
"meshagent-
|
|
35
|
+
"meshagent-api[all]~=0.25.3",
|
|
36
|
+
"meshagent-agents[all]~=0.25.3",
|
|
37
|
+
"meshagent-cli[all]~=0.25.3",
|
|
38
|
+
"meshagent-computers~=0.25.3",
|
|
39
|
+
"meshagent-livekit~=0.25.3",
|
|
40
|
+
"meshagent-mcp~=0.25.3",
|
|
41
|
+
"meshagent-openai~=0.25.3",
|
|
42
|
+
"meshagent-anthropic~=0.25.3",
|
|
43
|
+
"meshagent-otel~=0.25.3",
|
|
44
|
+
"meshagent-tools~=0.25.3"
|
|
44
45
|
]
|
|
45
46
|
|
|
46
47
|
agents = [
|
|
47
|
-
"meshagent-agents[all]~=0.
|
|
48
|
+
"meshagent-agents[all]~=0.25.3",
|
|
48
49
|
]
|
|
49
50
|
|
|
50
51
|
tools = [
|
|
51
|
-
"meshagent-tools~=0.
|
|
52
|
+
"meshagent-tools~=0.25.3",
|
|
52
53
|
]
|
|
53
54
|
|
|
54
55
|
cli = [
|
|
55
|
-
"meshagent-cli[all]~=0.
|
|
56
|
+
"meshagent-cli[all]~=0.25.3"
|
|
56
57
|
]
|
|
57
58
|
|
|
58
59
|
mcp-service = [
|
|
59
|
-
"meshagent-cli[mcp-service]~=0.
|
|
60
|
+
"meshagent-cli[mcp-service]~=0.25.3"
|
|
60
61
|
]
|
|
61
62
|
|
|
62
63
|
otel = [
|
|
63
|
-
"meshagent-otel~=0.
|
|
64
|
+
"meshagent-otel~=0.25.3",
|
|
64
65
|
]
|
meshagent-0.6.5/CHANGELOG.md
DELETED
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
## [0.6.5]
|
|
2
|
-
- Stability
|
|
3
|
-
|
|
4
|
-
## [0.6.4]
|
|
5
|
-
- Stability
|
|
6
|
-
|
|
7
|
-
## [0.6.3]
|
|
8
|
-
- Stability
|
|
9
|
-
|
|
10
|
-
## [0.6.2]
|
|
11
|
-
- Stability
|
|
12
|
-
|
|
13
|
-
## [0.6.1]
|
|
14
|
-
- Stability
|
|
15
|
-
|
|
16
|
-
## [0.6.0]
|
|
17
|
-
- Stability
|
|
18
|
-
|
|
19
|
-
## [0.5.19]
|
|
20
|
-
- Stability
|
|
21
|
-
|
|
22
|
-
## [0.5.18]
|
|
23
|
-
- Stability
|
|
24
|
-
|
|
25
|
-
## [0.5.17]
|
|
26
|
-
- Stability
|
|
27
|
-
|
|
28
|
-
## [0.5.16]
|
|
29
|
-
- Stability
|
|
30
|
-
|
|
31
|
-
## [0.5.15]
|
|
32
|
-
- Stability
|
|
33
|
-
|
|
34
|
-
## [0.5.14]
|
|
35
|
-
- Stability
|
|
36
|
-
|
|
37
|
-
## [0.5.13]
|
|
38
|
-
- Stability
|
|
39
|
-
|
|
40
|
-
## [0.5.12]
|
|
41
|
-
- Stability
|
|
42
|
-
|
|
43
|
-
## [0.5.8]
|
|
44
|
-
- Stability
|
|
45
|
-
|
|
46
|
-
## [0.5.7]
|
|
47
|
-
- Stability
|
|
48
|
-
|
|
49
|
-
## [0.5.6]
|
|
50
|
-
- Stability
|
|
51
|
-
|
|
52
|
-
## [0.5.5]
|
|
53
|
-
- Stability
|
|
54
|
-
|
|
55
|
-
## [0.5.4]
|
|
56
|
-
- Stability
|
|
57
|
-
|
|
58
|
-
## [0.5.3]
|
|
59
|
-
- Stability
|
|
60
|
-
|
|
61
|
-
## [0.5.2]
|
|
62
|
-
- Stability
|
|
63
|
-
|
|
64
|
-
## [0.5.1]
|
|
65
|
-
- Stability
|
|
66
|
-
|
|
67
|
-
## [0.5.0]
|
|
68
|
-
- Stability
|
|
69
|
-
|
|
70
|
-
## [0.4.3]
|
|
71
|
-
- Stability
|
|
72
|
-
|
|
73
|
-
## [0.4.2]
|
|
74
|
-
- Stability
|
|
75
|
-
|
|
76
|
-
## [0.4.1]
|
|
77
|
-
- Stability
|
|
78
|
-
|
|
79
|
-
## [0.4.0]
|
|
80
|
-
- Stability
|
|
81
|
-
|
|
82
|
-
## [0.3.1]
|
|
83
|
-
- Stability
|
|
84
|
-
|
|
85
|
-
## [0.3.0]
|
|
86
|
-
- Stability
|
|
87
|
-
|
|
88
|
-
## [0.2.1]
|
|
89
|
-
- Stability
|
|
90
|
-
|
|
91
|
-
## [0.2.0]
|
|
92
|
-
- Stability
|
|
93
|
-
|
|
94
|
-
## [0.1.0]
|
|
95
|
-
- Stability
|
|
96
|
-
|
|
97
|
-
## [0.0.39]
|
|
98
|
-
- Stability
|
|
99
|
-
|
|
100
|
-
## [0.0.38]
|
|
101
|
-
- Stability
|
|
102
|
-
|
|
103
|
-
## [0.0.37]
|
|
104
|
-
- Stability
|
|
105
|
-
|
|
106
|
-
## [0.0.36]
|
|
107
|
-
- Stability
|
|
108
|
-
|
|
109
|
-
## [0.0.35]
|
|
110
|
-
- Stability
|
|
111
|
-
|
|
112
|
-
## [0.0.34]
|
|
113
|
-
- Stability
|
|
114
|
-
|
|
115
|
-
## [0.0.33]
|
|
116
|
-
- Stability
|
|
117
|
-
|
|
118
|
-
## [0.0.32]
|
|
119
|
-
- Stability
|
|
120
|
-
|
|
121
|
-
## [0.0.31]
|
|
122
|
-
- Stability
|
|
123
|
-
|
|
124
|
-
## [0.0.31]
|
|
125
|
-
- Stability
|
|
126
|
-
|
|
127
|
-
## [0.0.29]
|
|
128
|
-
- Stability
|
|
129
|
-
|
|
130
|
-
## [0.0.28]
|
|
131
|
-
- Stability
|
|
132
|
-
|
|
133
|
-
## [0.0.27]
|
|
134
|
-
- Stability
|
|
135
|
-
|
|
136
|
-
## [0.0.26]
|
|
137
|
-
- Stability
|
|
138
|
-
|
|
139
|
-
## [0.0.25]
|
|
140
|
-
- Stability
|
|
141
|
-
|
|
142
|
-
## [0.0.24]
|
|
143
|
-
- Stability
|
|
144
|
-
|
|
145
|
-
## [0.0.23]
|
|
146
|
-
- Stability
|
|
147
|
-
|
|
148
|
-
## [0.0.22]
|
|
149
|
-
- Stability
|
|
150
|
-
|
|
151
|
-
## [0.0.20]
|
|
152
|
-
- Stability
|
|
153
|
-
|
|
154
|
-
## [0.0.21]
|
|
155
|
-
- Stability
|
|
156
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.6.5"
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
[agents]
|
|
3
|
-
meshagent-agents[all]~=0.6.5
|
|
4
|
-
|
|
5
|
-
[all]
|
|
6
|
-
meshagent-api[all]~=0.6.5
|
|
7
|
-
meshagent-agents[all]~=0.6.5
|
|
8
|
-
meshagent-cli[all]~=0.6.5
|
|
9
|
-
meshagent-computers~=0.6.5
|
|
10
|
-
meshagent-livekit~=0.6.5
|
|
11
|
-
meshagent-mcp~=0.6.5
|
|
12
|
-
meshagent-openai~=0.6.5
|
|
13
|
-
meshagent-otel~=0.6.5
|
|
14
|
-
meshagent-tools~=0.6.5
|
|
15
|
-
|
|
16
|
-
[cli]
|
|
17
|
-
meshagent-cli[all]~=0.6.5
|
|
18
|
-
|
|
19
|
-
[mcp-service]
|
|
20
|
-
meshagent-cli[mcp-service]~=0.6.5
|
|
21
|
-
|
|
22
|
-
[otel]
|
|
23
|
-
meshagent-otel~=0.6.5
|
|
24
|
-
|
|
25
|
-
[tools]
|
|
26
|
-
meshagent-tools~=0.6.5
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|