opengradient 0.1.9__tar.gz → 0.2.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.
Files changed (21) hide show
  1. {opengradient-0.1.9/src/opengradient.egg-info → opengradient-0.2.0}/PKG-INFO +1 -1
  2. {opengradient-0.1.9 → opengradient-0.2.0}/pyproject.toml +1 -1
  3. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/__init__.py +2 -2
  4. {opengradient-0.1.9 → opengradient-0.2.0/src/opengradient.egg-info}/PKG-INFO +1 -1
  5. {opengradient-0.1.9 → opengradient-0.2.0}/LICENSE +0 -0
  6. {opengradient-0.1.9 → opengradient-0.2.0}/README.md +0 -0
  7. {opengradient-0.1.9 → opengradient-0.2.0}/setup.cfg +0 -0
  8. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/abi/inference.abi +0 -0
  9. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/cli.py +0 -0
  10. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/client.py +0 -0
  11. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/exceptions.py +0 -0
  12. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/types.py +0 -0
  13. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient/utils.py +0 -0
  14. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient.egg-info/SOURCES.txt +0 -0
  15. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient.egg-info/dependency_links.txt +0 -0
  16. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient.egg-info/entry_points.txt +0 -0
  17. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient.egg-info/requires.txt +0 -0
  18. {opengradient-0.1.9 → opengradient-0.2.0}/src/opengradient.egg-info/top_level.txt +0 -0
  19. {opengradient-0.1.9 → opengradient-0.2.0}/tests/test_api.py +0 -0
  20. {opengradient-0.1.9 → opengradient-0.2.0}/tests/test_exceptions.py +0 -0
  21. {opengradient-0.1.9 → opengradient-0.2.0}/tests/test_integration.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: opengradient
3
- Version: 0.1.9
3
+ Version: 0.2.0
4
4
  Summary: A Python SDK for OpenGradient inference services
5
5
  Author-email: OpenGradient <oliver@opengradient.ai>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "opengradient"
7
- version = "0.1.9"
7
+ version = "0.2.0"
8
8
  description = "A Python SDK for OpenGradient inference services"
9
9
  authors = [{name = "OpenGradient", email = "oliver@opengradient.ai"}]
10
10
  license = {file = "LICENSE"}
@@ -2,11 +2,11 @@ from .client import Client
2
2
  from .exceptions import OpenGradientError, FileNotFoundError, UploadError, InferenceError, ResultRetrievalError
3
3
  from .types import ModelInput, InferenceMode, Number, NumberTensor, StringTensor, ModelOutput
4
4
 
5
- __version__ = "0.1.9"
5
+ __version__ = "0.2.0"
6
6
 
7
7
  _client = None
8
8
 
9
- def init(private_key, rpc_url, contract_address, email="test@test.com", password="Test123"):
9
+ def init(private_key, rpc_url, contract_address, email="test@test.com", password="Test-123"):
10
10
  global _client
11
11
  _client = Client(private_key=private_key, rpc_url=rpc_url, contract_address=contract_address, email=email, password=password)
12
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: opengradient
3
- Version: 0.1.9
3
+ Version: 0.2.0
4
4
  Summary: A Python SDK for OpenGradient inference services
5
5
  Author-email: OpenGradient <oliver@opengradient.ai>
6
6
  License: MIT License
File without changes
File without changes
File without changes