meshagent-computers 0.0.34__tar.gz → 0.0.36__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.

Files changed (25) hide show
  1. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/CHANGELOG.md +6 -0
  2. {meshagent_computers-0.0.34/meshagent_computers.egg-info → meshagent_computers-0.0.36}/PKG-INFO +10 -10
  3. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/agent.py +2 -8
  4. meshagent_computers-0.0.36/meshagent/computers/version.py +1 -0
  5. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36/meshagent_computers.egg-info}/PKG-INFO +10 -10
  6. meshagent_computers-0.0.36/meshagent_computers.egg-info/requires.txt +9 -0
  7. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/pyproject.toml +9 -9
  8. meshagent_computers-0.0.34/meshagent/computers/version.py +0 -1
  9. meshagent_computers-0.0.34/meshagent_computers.egg-info/requires.txt +0 -9
  10. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/LICENSE +0 -0
  11. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/MANIFEST.in +0 -0
  12. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/README.md +0 -0
  13. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/__init__.py +0 -0
  14. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/base_playwright.py +0 -0
  15. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/browserbase.py +0 -0
  16. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/computer.py +0 -0
  17. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/docker.py +0 -0
  18. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/local_playwright.py +0 -0
  19. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/operator.py +0 -0
  20. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/scrapybara.py +0 -0
  21. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent/computers/utils.py +0 -0
  22. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent_computers.egg-info/SOURCES.txt +0 -0
  23. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent_computers.egg-info/dependency_links.txt +0 -0
  24. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/meshagent_computers.egg-info/top_level.txt +0 -0
  25. {meshagent_computers-0.0.34 → meshagent_computers-0.0.36}/setup.cfg +0 -0
@@ -1,3 +1,9 @@
1
+ ## [0.0.36]
2
+ - Stability
3
+
4
+ ## [0.0.35]
5
+ - Stability
6
+
1
7
  ## [0.0.34]
2
8
  - Stability
3
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-computers
3
- Version: 0.0.34
3
+ Version: 0.0.36
4
4
  Summary: Computer Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -9,15 +9,15 @@ Project-URL: Source, https://www.meshagent.com
9
9
  Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
- Requires-Dist: pytest~=8.3.5
13
- Requires-Dist: pytest-asyncio~=0.26.0
14
- Requires-Dist: openai~=1.86.0
15
- Requires-Dist: meshagent-api~=0.0.34
16
- Requires-Dist: meshagent-agents~=0.0.34
17
- Requires-Dist: meshagent-tools~=0.0.34
18
- Requires-Dist: playwright~=1.51.0
19
- Requires-Dist: browserbase~=1.2.0
20
- Requires-Dist: scrapybara~=2.4.7
12
+ Requires-Dist: pytest~=8.3
13
+ Requires-Dist: pytest-asyncio~=0.26
14
+ Requires-Dist: openai~=1.86
15
+ Requires-Dist: meshagent-api~=0.0.36
16
+ Requires-Dist: meshagent-agents~=0.0.36
17
+ Requires-Dist: meshagent-tools~=0.0.36
18
+ Requires-Dist: playwright~=1.51
19
+ Requires-Dist: browserbase~=1.2
20
+ Requires-Dist: scrapybara~=2.4
21
21
  Dynamic: license-file
22
22
 
23
23
  ### Meshagent Computers
@@ -177,8 +177,8 @@ class ComputerAgent(ChatBot):
177
177
  description=None,
178
178
  requires=None,
179
179
  labels = None,
180
- computer_cls: Type[Computer],
181
- operator_cls: Type[Operator],
180
+ computer_cls: Type[Computer] = BrowserbaseBrowser,
181
+ operator_cls: Type[Operator] = Operator,
182
182
  rules: Optional[list[str]] = None,
183
183
  llm_adapter: Optional[LLMAdapter] = None,
184
184
  toolkits: list[Toolkit] = None
@@ -202,9 +202,6 @@ class ComputerAgent(ChatBot):
202
202
  self.computer_cls = computer_cls
203
203
  self.operator_cls = operator_cls
204
204
 
205
-
206
-
207
-
208
205
  async def get_thread_toolkits(self, *, thread_context: ChatThreadContext, participant: RemoteParticipant):
209
206
 
210
207
  toolkits = await super().get_thread_toolkits(thread_context=thread_context, participant=participant)
@@ -227,9 +224,6 @@ class ComputerAgent(ChatBot):
227
224
 
228
225
  await computer_toolkit.ensure_started()
229
226
 
230
- await computer_toolkit.computer.goto("https://www.flutterconusa.dev/agenda")
231
-
232
-
233
227
  return [
234
228
  computer_toolkit,
235
229
  *toolkits
@@ -0,0 +1 @@
1
+ __version__ = "0.0.36"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-computers
3
- Version: 0.0.34
3
+ Version: 0.0.36
4
4
  Summary: Computer Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -9,15 +9,15 @@ Project-URL: Source, https://www.meshagent.com
9
9
  Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
- Requires-Dist: pytest~=8.3.5
13
- Requires-Dist: pytest-asyncio~=0.26.0
14
- Requires-Dist: openai~=1.86.0
15
- Requires-Dist: meshagent-api~=0.0.34
16
- Requires-Dist: meshagent-agents~=0.0.34
17
- Requires-Dist: meshagent-tools~=0.0.34
18
- Requires-Dist: playwright~=1.51.0
19
- Requires-Dist: browserbase~=1.2.0
20
- Requires-Dist: scrapybara~=2.4.7
12
+ Requires-Dist: pytest~=8.3
13
+ Requires-Dist: pytest-asyncio~=0.26
14
+ Requires-Dist: openai~=1.86
15
+ Requires-Dist: meshagent-api~=0.0.36
16
+ Requires-Dist: meshagent-agents~=0.0.36
17
+ Requires-Dist: meshagent-tools~=0.0.36
18
+ Requires-Dist: playwright~=1.51
19
+ Requires-Dist: browserbase~=1.2
20
+ Requires-Dist: scrapybara~=2.4
21
21
  Dynamic: license-file
22
22
 
23
23
  ### Meshagent Computers
@@ -0,0 +1,9 @@
1
+ pytest~=8.3
2
+ pytest-asyncio~=0.26
3
+ openai~=1.86
4
+ meshagent-api~=0.0.36
5
+ meshagent-agents~=0.0.36
6
+ meshagent-tools~=0.0.36
7
+ playwright~=1.51
8
+ browserbase~=1.2
9
+ scrapybara~=2.4
@@ -12,15 +12,15 @@ description = "Computer Building Blocks for Meshagent"
12
12
  requires-python = ">=3.12"
13
13
  license = "Apache-2.0"
14
14
  dependencies = [
15
- "pytest~=8.3.5",
16
- "pytest-asyncio~=0.26.0",
17
- "openai~=1.86.0",
18
- "meshagent-api~=0.0.34",
19
- "meshagent-agents~=0.0.34",
20
- "meshagent-tools~=0.0.34",
21
- "playwright~=1.51.0",
22
- "browserbase~=1.2.0",
23
- "scrapybara~=2.4.7"
15
+ "pytest~=8.3",
16
+ "pytest-asyncio~=0.26",
17
+ "openai~=1.86",
18
+ "meshagent-api~=0.0.36",
19
+ "meshagent-agents~=0.0.36",
20
+ "meshagent-tools~=0.0.36",
21
+ "playwright~=1.51",
22
+ "browserbase~=1.2",
23
+ "scrapybara~=2.4"
24
24
  ]
25
25
 
26
26
  [project.urls]
@@ -1 +0,0 @@
1
- __version__ = "0.0.34"
@@ -1,9 +0,0 @@
1
- pytest~=8.3.5
2
- pytest-asyncio~=0.26.0
3
- openai~=1.86.0
4
- meshagent-api~=0.0.34
5
- meshagent-agents~=0.0.34
6
- meshagent-tools~=0.0.34
7
- playwright~=1.51.0
8
- browserbase~=1.2.0
9
- scrapybara~=2.4.7