meshagent-computers 0.44.2__tar.gz → 0.44.4__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_computers-0.44.2 → meshagent_computers-0.44.4}/CHANGELOG.md +10 -0
- {meshagent_computers-0.44.2/meshagent_computers.egg-info → meshagent_computers-0.44.4}/PKG-INFO +4 -4
- meshagent_computers-0.44.4/meshagent/computers/version.py +1 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4/meshagent_computers.egg-info}/PKG-INFO +4 -4
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/requires.txt +3 -3
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/pyproject.toml +3 -3
- meshagent_computers-0.44.2/meshagent/computers/version.py +0 -1
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/LICENSE +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/MANIFEST.in +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/README.md +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/__init__.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/agent.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/agent_test.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/base_playwright.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/browserbase.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/computer.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/container_playwright.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/container_playwright_test.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/docker.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/local_playwright.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/operator.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/operator_test.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/stagehand.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/stagehand_test.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/utils.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/utils_test.py +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/SOURCES.txt +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/dependency_links.txt +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/top_level.txt +0 -0
- {meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/setup.cfg +0 -0
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [0.44.4]
|
|
2
|
+
- Breaking: `AgentSessionContext` no longer exposes `previous_messages` or `previous_response_id`; restore flows now operate from the current `messages` payload instead of maintaining a separate history buffer.
|
|
3
|
+
- OpenAI Responses restore now preserves encrypted reasoning metadata, normalizes legacy reasoning items, and forces stateless requests to use `store=False` while replaying the current context.
|
|
4
|
+
- Agent event handling and dataset thread storage now keep reasoning provider/model metadata so empty reasoning items with encrypted content can still be restored without losing the payload.
|
|
5
|
+
- Managed agents now share the `llm` backend abstraction, which changes thread creation and resume behavior and lets thread naming consider the selected provider/model plus audio attachments.
|
|
6
|
+
- Updated `typer` to `~=0.26.6`.
|
|
7
|
+
|
|
8
|
+
## [0.44.3]
|
|
9
|
+
- Stability
|
|
10
|
+
|
|
1
11
|
## [0.44.2]
|
|
2
12
|
- Base chat clients now expose an async event stream for consuming emitted agent payloads alongside listener callbacks.
|
|
3
13
|
- Messaging chat clients now distinguish first connect from reconnect, track participant add/remove events, and reopen open sessions when the agent returns.
|
{meshagent_computers-0.44.2/meshagent_computers.egg-info → meshagent_computers-0.44.4}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-computers
|
|
3
|
-
Version: 0.44.
|
|
3
|
+
Version: 0.44.4
|
|
4
4
|
Summary: Computer Building Blocks for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -12,9 +12,9 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: pytest~=8.4
|
|
13
13
|
Requires-Dist: pytest-asyncio~=0.26
|
|
14
14
|
Requires-Dist: openai~=2.25.0
|
|
15
|
-
Requires-Dist: meshagent-api==0.44.
|
|
16
|
-
Requires-Dist: meshagent-agents==0.44.
|
|
17
|
-
Requires-Dist: meshagent-tools==0.44.
|
|
15
|
+
Requires-Dist: meshagent-api==0.44.4
|
|
16
|
+
Requires-Dist: meshagent-agents==0.44.4
|
|
17
|
+
Requires-Dist: meshagent-tools==0.44.4
|
|
18
18
|
Requires-Dist: playwright~=1.58.0
|
|
19
19
|
Requires-Dist: stagehand~=3.6.0
|
|
20
20
|
Requires-Dist: browserbase~=1.2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.44.4"
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4/meshagent_computers.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-computers
|
|
3
|
-
Version: 0.44.
|
|
3
|
+
Version: 0.44.4
|
|
4
4
|
Summary: Computer Building Blocks for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -12,9 +12,9 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: pytest~=8.4
|
|
13
13
|
Requires-Dist: pytest-asyncio~=0.26
|
|
14
14
|
Requires-Dist: openai~=2.25.0
|
|
15
|
-
Requires-Dist: meshagent-api==0.44.
|
|
16
|
-
Requires-Dist: meshagent-agents==0.44.
|
|
17
|
-
Requires-Dist: meshagent-tools==0.44.
|
|
15
|
+
Requires-Dist: meshagent-api==0.44.4
|
|
16
|
+
Requires-Dist: meshagent-agents==0.44.4
|
|
17
|
+
Requires-Dist: meshagent-tools==0.44.4
|
|
18
18
|
Requires-Dist: playwright~=1.58.0
|
|
19
19
|
Requires-Dist: stagehand~=3.6.0
|
|
20
20
|
Requires-Dist: browserbase~=1.2
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/requires.txt
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
pytest~=8.4
|
|
2
2
|
pytest-asyncio~=0.26
|
|
3
3
|
openai~=2.25.0
|
|
4
|
-
meshagent-api==0.44.
|
|
5
|
-
meshagent-agents==0.44.
|
|
6
|
-
meshagent-tools==0.44.
|
|
4
|
+
meshagent-api==0.44.4
|
|
5
|
+
meshagent-agents==0.44.4
|
|
6
|
+
meshagent-tools==0.44.4
|
|
7
7
|
playwright~=1.58.0
|
|
8
8
|
stagehand~=3.6.0
|
|
9
9
|
browserbase~=1.2
|
|
@@ -15,9 +15,9 @@ dependencies = [
|
|
|
15
15
|
"pytest~=8.4",
|
|
16
16
|
"pytest-asyncio~=0.26",
|
|
17
17
|
"openai~=2.25.0",
|
|
18
|
-
"meshagent-api==0.44.
|
|
19
|
-
"meshagent-agents==0.44.
|
|
20
|
-
"meshagent-tools==0.44.
|
|
18
|
+
"meshagent-api==0.44.4",
|
|
19
|
+
"meshagent-agents==0.44.4",
|
|
20
|
+
"meshagent-tools==0.44.4",
|
|
21
21
|
"playwright~=1.58.0",
|
|
22
22
|
"stagehand~=3.6.0",
|
|
23
23
|
"browserbase~=1.2",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.44.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/base_playwright.py
RENAMED
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/browserbase.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/local_playwright.py
RENAMED
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/operator_test.py
RENAMED
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent/computers/stagehand_test.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.44.2 → meshagent_computers-0.44.4}/meshagent_computers.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|