frogml-core 0.0.96__py3-none-any.whl → 0.0.98__py3-none-any.whl

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 (63) hide show
  1. frogml_core/__init__.py +1 -1
  2. frogml_core/clients/batch_job_management/client.py +39 -0
  3. frogml_core/clients/instance_template/client.py +6 -4
  4. frogml_core/clients/model_version_manager/client.py +4 -4
  5. frogml_core/clients/prompt_manager/model_descriptor_mapper.py +4 -4
  6. frogml_core/feature_store/_common/artifact_utils.py +3 -3
  7. frogml_core/feature_store/data_sources/batch/athena.py +3 -3
  8. frogml_core/feature_store/feature_sets/context.py +2 -6
  9. frogml_core/feature_store/feature_sets/streaming.py +3 -3
  10. frogml_core/feature_store/feature_sets/streaming_backfill.py +1 -1
  11. frogml_core/feature_store/online/client.py +6 -6
  12. frogml_core/feature_store/sinks/streaming/factory.py +1 -1
  13. frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +3 -3
  14. frogml_core/inner/di_configuration/account.py +2 -2
  15. frogml_core/inner/tool/auth.py +2 -3
  16. frogml_core/llmops/provider/openai/provider.py +3 -3
  17. frogml_core/model/tools/adapters/output.py +1 -1
  18. frogml_core/tools/logger/logger.py +1 -1
  19. frogml_core/utils/proto_utils.py +1 -1
  20. frogml_core-0.0.98.dist-info/METADATA +411 -0
  21. {frogml_core-0.0.96.dist-info → frogml_core-0.0.98.dist-info}/RECORD +62 -24
  22. frogml_services_mock/mocks/batch_job_manager_service.py +23 -0
  23. frogml_storage/__init__.py +1 -0
  24. frogml_storage/_environment.py +22 -0
  25. frogml_storage/artifactory/__init__.py +1 -0
  26. frogml_storage/artifactory/_artifactory_api.py +315 -0
  27. frogml_storage/authentication/login/__init__.py +1 -0
  28. frogml_storage/authentication/login/_login_cli.py +229 -0
  29. frogml_storage/authentication/login/_login_command.py +71 -0
  30. frogml_storage/authentication/models/__init__.py +3 -0
  31. frogml_storage/authentication/models/_auth.py +20 -0
  32. frogml_storage/authentication/models/_auth_config.py +70 -0
  33. frogml_storage/authentication/models/_login.py +22 -0
  34. frogml_storage/authentication/utils/__init__.py +17 -0
  35. frogml_storage/authentication/utils/_authentication_utils.py +281 -0
  36. frogml_storage/authentication/utils/_login_checks_utils.py +114 -0
  37. frogml_storage/base_storage.py +140 -0
  38. frogml_storage/constants.py +56 -0
  39. frogml_storage/exceptions/checksum_verification_error.py +3 -0
  40. frogml_storage/exceptions/validation_error.py +4 -0
  41. frogml_storage/frog_ml.py +668 -0
  42. frogml_storage/http/__init__.py +1 -0
  43. frogml_storage/http/http_client.py +83 -0
  44. frogml_storage/logging/__init__.py +1 -0
  45. frogml_storage/logging/_log_config.py +45 -0
  46. frogml_storage/logging/log_utils.py +21 -0
  47. frogml_storage/models/__init__.py +1 -0
  48. frogml_storage/models/_download_context.py +54 -0
  49. frogml_storage/models/dataset_manifest.py +13 -0
  50. frogml_storage/models/entity_manifest.py +93 -0
  51. frogml_storage/models/frogml_dataset_version.py +21 -0
  52. frogml_storage/models/frogml_entity_type_info.py +48 -0
  53. frogml_storage/models/frogml_entity_version.py +34 -0
  54. frogml_storage/models/frogml_model_version.py +21 -0
  55. frogml_storage/models/model_manifest.py +60 -0
  56. frogml_storage/models/serialization_metadata.py +15 -0
  57. frogml_storage/utils/__init__.py +12 -0
  58. frogml_storage/utils/_input_checks_utility.py +104 -0
  59. frogml_storage/utils/_storage_utils.py +15 -0
  60. frogml_storage/utils/_url_utils.py +27 -0
  61. frogml_core-0.0.96.dist-info/METADATA +0 -46
  62. {frogml_core-0.0.96.dist-info → frogml_core-0.0.98.dist-info}/WHEEL +0 -0
  63. {frogml_proto → frogml_storage/authentication}/__init__.py +0 -0
@@ -1,46 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: frogml-core
3
- Version: 0.0.96
4
- Summary: frogml Core contains the necessary objects and communication tools for using the Jfrog ml Platform
5
- License: Apache-2.0
6
- Keywords: mlops,ml,deployment,serving,model
7
- Author: Jfrog
8
- Requires-Python: >=3.9,<3.12
9
- Classifier: License :: OSI Approved :: Apache Software License
10
- Classifier: Operating System :: OS Independent
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.9
13
- Classifier: Programming Language :: Python :: 3.10
14
- Classifier: Programming Language :: Python :: 3.11
15
- Classifier: Programming Language :: Python :: Implementation :: CPython
16
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
- Provides-Extra: feature-store
18
- Requires-Dist: PyYAML
19
- Requires-Dist: cachetools
20
- Requires-Dist: chevron (==0.14.0)
21
- Requires-Dist: cloudpickle (==2.2.1) ; extra == "feature-store"
22
- Requires-Dist: dacite (==1.8.1)
23
- Requires-Dist: dependency-injector (>=4.0)
24
- Requires-Dist: filelock
25
- Requires-Dist: frogml-storage (>=0.11.2)
26
- Requires-Dist: grpcio (>=1.57.0)
27
- Requires-Dist: joblib (>=1.3.2,<2.0.0)
28
- Requires-Dist: marshmallow-dataclass (>=8.5.8,<9.0.0)
29
- Requires-Dist: protobuf (>=3.10,<4) ; python_version < "3.10"
30
- Requires-Dist: protobuf (>=4.21.6) ; python_version >= "3.10"
31
- Requires-Dist: pyarrow (>=6.0.0) ; extra == "feature-store"
32
- Requires-Dist: pyathena (>=2.2.0,!=2.18.0) ; extra == "feature-store"
33
- Requires-Dist: pyspark (==3.4.2) ; extra == "feature-store"
34
- Requires-Dist: python-jose[cryptography] (>=3.4.0)
35
- Requires-Dist: python-json-logger (>=2.0.2)
36
- Requires-Dist: requests
37
- Requires-Dist: retrying (==1.3.4)
38
- Requires-Dist: typeguard (>=2,<3)
39
- Project-URL: Home page, https://www.jfrog.com/
40
- Description-Content-Type: text/markdown
41
-
42
- # Frogml Core
43
-
44
- Frogml is an end-to-end production ML platform designed to allow data scientists to build, deploy, and monitor their models in production with minimal engineering friction.
45
- Frogml Core contains all the objects and tools necessary to use the Frogml Platform
46
-