fxn 0.0.22__tar.gz → 0.0.23__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 (31) hide show
  1. {fxn-0.0.22 → fxn-0.0.23}/PKG-INFO +1 -1
  2. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/predictor.py +1 -0
  3. {fxn-0.0.22 → fxn-0.0.23}/fxn/version.py +1 -1
  4. {fxn-0.0.22 → fxn-0.0.23}/fxn.egg-info/PKG-INFO +1 -1
  5. {fxn-0.0.22 → fxn-0.0.23}/fxn.egg-info/requires.txt +1 -0
  6. {fxn-0.0.22 → fxn-0.0.23}/setup.py +1 -0
  7. {fxn-0.0.22 → fxn-0.0.23}/LICENSE +0 -0
  8. {fxn-0.0.22 → fxn-0.0.23}/README.md +0 -0
  9. {fxn-0.0.22 → fxn-0.0.23}/fxn/__init__.py +0 -0
  10. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/__init__.py +0 -0
  11. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/api.py +0 -0
  12. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/dtype.py +0 -0
  13. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/environment.py +0 -0
  14. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/prediction.py +0 -0
  15. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/profile.py +0 -0
  16. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/storage.py +0 -0
  17. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/tag.py +0 -0
  18. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/user.py +0 -0
  19. {fxn-0.0.22 → fxn-0.0.23}/fxn/api/value.py +0 -0
  20. {fxn-0.0.22 → fxn-0.0.23}/fxn/cli/__init__.py +0 -0
  21. {fxn-0.0.22 → fxn-0.0.23}/fxn/cli/auth.py +0 -0
  22. {fxn-0.0.22 → fxn-0.0.23}/fxn/cli/env.py +0 -0
  23. {fxn-0.0.22 → fxn-0.0.23}/fxn/cli/misc.py +0 -0
  24. {fxn-0.0.22 → fxn-0.0.23}/fxn/cli/predict.py +0 -0
  25. {fxn-0.0.22 → fxn-0.0.23}/fxn/cli/predictors.py +0 -0
  26. {fxn-0.0.22 → fxn-0.0.23}/fxn/magic.py +0 -0
  27. {fxn-0.0.22 → fxn-0.0.23}/fxn.egg-info/SOURCES.txt +0 -0
  28. {fxn-0.0.22 → fxn-0.0.23}/fxn.egg-info/dependency_links.txt +0 -0
  29. {fxn-0.0.22 → fxn-0.0.23}/fxn.egg-info/entry_points.txt +0 -0
  30. {fxn-0.0.22 → fxn-0.0.23}/fxn.egg-info/top_level.txt +0 -0
  31. {fxn-0.0.22 → fxn-0.0.23}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fxn
3
- Version: 0.0.22
3
+ Version: 0.0.23
4
4
  Summary: Run on-device and cloud AI prediction functions in Python. Register at https://fxn.ai.
5
5
  Home-page: https://fxn.ai
6
6
  Author: NatML Inc.
@@ -417,6 +417,7 @@ class AccessMode (str, Enum):
417
417
  """
418
418
  Public = "PUBLIC"
419
419
  Private = "PRIVATE"
420
+ Protected = "PROTECTED"
420
421
 
421
422
  class PredictorType (str, Enum):
422
423
  """
@@ -3,4 +3,4 @@
3
3
  # Copyright © 2023 NatML Inc. All Rights Reserved.
4
4
  #
5
5
 
6
- __version__ = "0.0.22"
6
+ __version__ = "0.0.23"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fxn
3
- Version: 0.0.22
3
+ Version: 0.0.23
4
4
  Summary: Run on-device and cloud AI prediction functions in Python. Register at https://fxn.ai.
5
5
  Home-page: https://fxn.ai
6
6
  Author: NatML Inc.
@@ -2,6 +2,7 @@ aiohttp
2
2
  filetype
3
3
  numpy
4
4
  pillow
5
+ pydantic
5
6
  requests
6
7
  rich
7
8
  typer
@@ -31,6 +31,7 @@ setup(
31
31
  "filetype",
32
32
  "numpy",
33
33
  "pillow",
34
+ "pydantic",
34
35
  "requests",
35
36
  "rich",
36
37
  "typer"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes