simplex 1.2.17__tar.gz → 1.2.19__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 simplex might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.17
3
+ Version: 1.2.19
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://simplex.sh
6
6
  Author: Simplex Labs, Inc.
@@ -13,22 +13,10 @@ Classifier: Intended Audience :: Developers
13
13
  Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
- Requires-Dist: openai>=1.0.0
17
- Requires-Dist: python-dotenv>=0.19.0
18
- Requires-Dist: tiktoken>=0.5.0
19
- Requires-Dist: click>=8.0.0
20
- Requires-Dist: rich>=13.0.0
21
- Requires-Dist: prompt_toolkit>=3.0.0
22
- Requires-Dist: playwright>=1.0.0
23
- Requires-Dist: Pillow>=9.0.0
24
- Requires-Dist: PyYAML>=6.0.1
25
- Requires-Dist: boto3>=1.28.0
26
- Requires-Dist: requests>=2.31.0
27
- Requires-Dist: MainContentExtractor
28
- Requires-Dist: langchain_core
29
- Requires-Dist: langchain_community
30
- Requires-Dist: langchain_openai
31
- Requires-Dist: langchain_anthropic
16
+ Requires-Dist: colorama
17
+ Requires-Dist: requests
18
+ Requires-Dist: python-dotenv
19
+ Requires-Dist: click
32
20
  Dynamic: author
33
21
  Dynamic: author-email
34
22
  Dynamic: classifier
@@ -2,28 +2,16 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="simplex",
5
- version="1.2.17",
5
+ version="1.2.19",
6
6
  packages=find_packages(),
7
7
  package_data={
8
8
  "simplex": ["browser_agent/dom/*.js"], # Include JS files in the dom directory
9
9
  },
10
10
  install_requires=[
11
- "openai>=1.0.0",
12
- "python-dotenv>=0.19.0",
13
- "tiktoken>=0.5.0",
14
- "click>=8.0.0",
15
- "rich>=13.0.0",
16
- "prompt_toolkit>=3.0.0",
17
- "playwright>=1.0.0",
18
- "Pillow>=9.0.0",
19
- "PyYAML>=6.0.1",
20
- "boto3>=1.28.0",
21
- "requests>=2.31.0",
22
- "MainContentExtractor",
23
- "langchain_core",
24
- "langchain_community",
25
- "langchain_openai",
26
- "langchain_anthropic"
11
+ "colorama",
12
+ "requests",
13
+ "python-dotenv",
14
+ "click",
27
15
  ],
28
16
  entry_points={
29
17
  'console_scripts': [
@@ -368,6 +368,6 @@ class Simplex:
368
368
  )
369
369
  response_json = response.json()
370
370
  if response_json['succeeded']:
371
- return response_json['reasoning']
371
+ return response_json['exists'], response_json['reasoning']
372
372
  else:
373
373
  raise ValueError(f"Failed to check if element exists: {response_json['error']}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.17
3
+ Version: 1.2.19
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://simplex.sh
6
6
  Author: Simplex Labs, Inc.
@@ -13,22 +13,10 @@ Classifier: Intended Audience :: Developers
13
13
  Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
- Requires-Dist: openai>=1.0.0
17
- Requires-Dist: python-dotenv>=0.19.0
18
- Requires-Dist: tiktoken>=0.5.0
19
- Requires-Dist: click>=8.0.0
20
- Requires-Dist: rich>=13.0.0
21
- Requires-Dist: prompt_toolkit>=3.0.0
22
- Requires-Dist: playwright>=1.0.0
23
- Requires-Dist: Pillow>=9.0.0
24
- Requires-Dist: PyYAML>=6.0.1
25
- Requires-Dist: boto3>=1.28.0
26
- Requires-Dist: requests>=2.31.0
27
- Requires-Dist: MainContentExtractor
28
- Requires-Dist: langchain_core
29
- Requires-Dist: langchain_community
30
- Requires-Dist: langchain_openai
31
- Requires-Dist: langchain_anthropic
16
+ Requires-Dist: colorama
17
+ Requires-Dist: requests
18
+ Requires-Dist: python-dotenv
19
+ Requires-Dist: click
32
20
  Dynamic: author
33
21
  Dynamic: author-email
34
22
  Dynamic: classifier
@@ -0,0 +1,4 @@
1
+ colorama
2
+ requests
3
+ python-dotenv
4
+ click
@@ -1,16 +0,0 @@
1
- openai>=1.0.0
2
- python-dotenv>=0.19.0
3
- tiktoken>=0.5.0
4
- click>=8.0.0
5
- rich>=13.0.0
6
- prompt_toolkit>=3.0.0
7
- playwright>=1.0.0
8
- Pillow>=9.0.0
9
- PyYAML>=6.0.1
10
- boto3>=1.28.0
11
- requests>=2.31.0
12
- MainContentExtractor
13
- langchain_core
14
- langchain_community
15
- langchain_openai
16
- langchain_anthropic
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes