meshagent-computers 0.5.18__tar.gz → 0.6.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.
Potentially problematic release.
This version of meshagent-computers might be problematic. Click here for more details.
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/CHANGELOG.md +6 -0
- {meshagent_computers-0.5.18/meshagent_computers.egg-info → meshagent_computers-0.6.0}/PKG-INFO +8 -6
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/agent.py +1 -11
- meshagent_computers-0.6.0/meshagent/computers/version.py +1 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0/meshagent_computers.egg-info}/PKG-INFO +8 -6
- meshagent_computers-0.6.0/meshagent_computers.egg-info/requires.txt +11 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/pyproject.toml +8 -6
- meshagent_computers-0.5.18/meshagent/computers/version.py +0 -1
- meshagent_computers-0.5.18/meshagent_computers.egg-info/requires.txt +0 -9
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/LICENSE +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/MANIFEST.in +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/README.md +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/__init__.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/base_playwright.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/browserbase.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/computer.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/docker.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/local_playwright.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/operator.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/scrapybara.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/utils.py +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent_computers.egg-info/SOURCES.txt +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent_computers.egg-info/dependency_links.txt +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent_computers.egg-info/top_level.txt +0 -0
- {meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/setup.cfg +0 -0
{meshagent_computers-0.5.18/meshagent_computers.egg-info → meshagent_computers-0.6.0}/PKG-INFO
RENAMED
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-computers
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: Computer Building Blocks for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
7
7
|
Project-URL: Website, https://www.meshagent.com
|
|
8
8
|
Project-URL: Source, https://www.meshagent.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.13
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Requires-Dist: pytest~=8.4
|
|
13
13
|
Requires-Dist: pytest-asyncio~=0.26
|
|
14
|
-
Requires-Dist: openai~=
|
|
15
|
-
Requires-Dist: meshagent-api~=0.
|
|
16
|
-
Requires-Dist: meshagent-agents~=0.
|
|
17
|
-
Requires-Dist: meshagent-tools~=0.
|
|
14
|
+
Requires-Dist: openai~=2.6.0
|
|
15
|
+
Requires-Dist: meshagent-api~=0.6.0
|
|
16
|
+
Requires-Dist: meshagent-agents~=0.6.0
|
|
17
|
+
Requires-Dist: meshagent-tools~=0.6.0
|
|
18
18
|
Requires-Dist: playwright~=1.51
|
|
19
19
|
Requires-Dist: browserbase~=1.2
|
|
20
20
|
Requires-Dist: scrapybara~=2.4
|
|
21
|
+
Requires-Dist: pillow~=11.3.0
|
|
22
|
+
Requires-Dist: python-dotenv~=1.1.1
|
|
21
23
|
Dynamic: license-file
|
|
22
24
|
|
|
23
25
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -2,8 +2,7 @@ from meshagent.agents import LLMAdapter
|
|
|
2
2
|
from meshagent.tools import Tool, Toolkit, ToolContext
|
|
3
3
|
from meshagent.computers import Computer, Operator, BrowserbaseBrowser
|
|
4
4
|
from meshagent.agents.chat import ChatBot, ChatThreadContext
|
|
5
|
-
from meshagent.api import
|
|
6
|
-
from meshagent.tools.toolkit import register_toolkit_factory
|
|
5
|
+
from meshagent.api import RemoteParticipant
|
|
7
6
|
from meshagent.openai.tools.responses_adapter import OpenAIResponsesTool
|
|
8
7
|
|
|
9
8
|
from typing import Optional, Type, Callable
|
|
@@ -170,15 +169,6 @@ def make_computer_toolkit(
|
|
|
170
169
|
return computer_toolkit
|
|
171
170
|
|
|
172
171
|
|
|
173
|
-
async def make_browserbase_toolkit(context: ToolContext, requirement: RequiredToolkit):
|
|
174
|
-
return make_computer_toolkit(
|
|
175
|
-
operator_cls=Operator(), computer_cls=BrowserbaseBrowser()
|
|
176
|
-
)
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
register_toolkit_factory("browserbase", make_browserbase_toolkit)
|
|
180
|
-
|
|
181
|
-
|
|
182
172
|
class ComputerAgent(ChatBot):
|
|
183
173
|
def __init__(
|
|
184
174
|
self,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.6.0"
|
{meshagent_computers-0.5.18 → meshagent_computers-0.6.0/meshagent_computers.egg-info}/PKG-INFO
RENAMED
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-computers
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: Computer Building Blocks for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
7
7
|
Project-URL: Website, https://www.meshagent.com
|
|
8
8
|
Project-URL: Source, https://www.meshagent.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.13
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Requires-Dist: pytest~=8.4
|
|
13
13
|
Requires-Dist: pytest-asyncio~=0.26
|
|
14
|
-
Requires-Dist: openai~=
|
|
15
|
-
Requires-Dist: meshagent-api~=0.
|
|
16
|
-
Requires-Dist: meshagent-agents~=0.
|
|
17
|
-
Requires-Dist: meshagent-tools~=0.
|
|
14
|
+
Requires-Dist: openai~=2.6.0
|
|
15
|
+
Requires-Dist: meshagent-api~=0.6.0
|
|
16
|
+
Requires-Dist: meshagent-agents~=0.6.0
|
|
17
|
+
Requires-Dist: meshagent-tools~=0.6.0
|
|
18
18
|
Requires-Dist: playwright~=1.51
|
|
19
19
|
Requires-Dist: browserbase~=1.2
|
|
20
20
|
Requires-Dist: scrapybara~=2.4
|
|
21
|
+
Requires-Dist: pillow~=11.3.0
|
|
22
|
+
Requires-Dist: python-dotenv~=1.1.1
|
|
21
23
|
Dynamic: license-file
|
|
22
24
|
|
|
23
25
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -9,18 +9,20 @@ build-backend = "setuptools.build_meta"
|
|
|
9
9
|
name = "meshagent-computers"
|
|
10
10
|
dynamic = ["version", "readme"]
|
|
11
11
|
description = "Computer Building Blocks for Meshagent"
|
|
12
|
-
requires-python = ">=3.
|
|
12
|
+
requires-python = ">=3.13"
|
|
13
13
|
license = "Apache-2.0"
|
|
14
14
|
dependencies = [
|
|
15
15
|
"pytest~=8.4",
|
|
16
16
|
"pytest-asyncio~=0.26",
|
|
17
|
-
"openai~=
|
|
18
|
-
"meshagent-api~=0.
|
|
19
|
-
"meshagent-agents~=0.
|
|
20
|
-
"meshagent-tools~=0.
|
|
17
|
+
"openai~=2.6.0",
|
|
18
|
+
"meshagent-api~=0.6.0",
|
|
19
|
+
"meshagent-agents~=0.6.0",
|
|
20
|
+
"meshagent-tools~=0.6.0",
|
|
21
21
|
"playwright~=1.51",
|
|
22
22
|
"browserbase~=1.2",
|
|
23
|
-
"scrapybara~=2.4"
|
|
23
|
+
"scrapybara~=2.4",
|
|
24
|
+
"pillow~=11.3.0",
|
|
25
|
+
"python-dotenv~=1.1.1"
|
|
24
26
|
]
|
|
25
27
|
|
|
26
28
|
[project.urls]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.5.18"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/base_playwright.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent/computers/local_playwright.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent_computers.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{meshagent_computers-0.5.18 → meshagent_computers-0.6.0}/meshagent_computers.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|