qwak-core 0.4.272__py3-none-any.whl → 0.4.273__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.
- frogml_storage/__init__.py +1 -0
- frogml_storage/artifactory/__init__.py +1 -0
- frogml_storage/artifactory/_artifactory_api.py +315 -0
- frogml_storage/authentication/login/__init__.py +1 -0
- frogml_storage/authentication/login/_login_cli.py +239 -0
- frogml_storage/authentication/login/_login_command.py +74 -0
- frogml_storage/authentication/models/__init__.py +3 -0
- frogml_storage/authentication/models/_auth.py +24 -0
- frogml_storage/authentication/models/_auth_config.py +70 -0
- frogml_storage/authentication/models/_login.py +22 -0
- frogml_storage/authentication/utils/__init__.py +17 -0
- frogml_storage/authentication/utils/_authentication_utils.py +281 -0
- frogml_storage/authentication/utils/_login_checks_utils.py +114 -0
- frogml_storage/base_storage.py +140 -0
- frogml_storage/constants.py +56 -0
- frogml_storage/exceptions/checksum_verification_error.py +3 -0
- frogml_storage/exceptions/validation_error.py +4 -0
- frogml_storage/frog_ml.py +668 -0
- frogml_storage/http/__init__.py +1 -0
- frogml_storage/http/http_client.py +83 -0
- frogml_storage/logging/__init__.py +1 -0
- frogml_storage/logging/_log_config.py +45 -0
- frogml_storage/logging/log_utils.py +21 -0
- frogml_storage/models/__init__.py +1 -0
- frogml_storage/models/_download_context.py +54 -0
- frogml_storage/models/dataset_manifest.py +13 -0
- frogml_storage/models/entity_manifest.py +93 -0
- frogml_storage/models/frogml_dataset_version.py +21 -0
- frogml_storage/models/frogml_entity_type_info.py +50 -0
- frogml_storage/models/frogml_entity_version.py +34 -0
- frogml_storage/models/frogml_model_version.py +21 -0
- frogml_storage/models/model_manifest.py +60 -0
- frogml_storage/models/serialization_metadata.py +15 -0
- frogml_storage/utils/__init__.py +12 -0
- frogml_storage/utils/_environment.py +21 -0
- frogml_storage/utils/_input_checks_utility.py +104 -0
- frogml_storage/utils/_storage_utils.py +15 -0
- frogml_storage/utils/_url_utils.py +27 -0
- qwak/__init__.py +1 -1
- qwak/clients/instance_template/client.py +6 -4
- qwak/clients/prompt_manager/model_descriptor_mapper.py +21 -19
- qwak/feature_store/_common/artifact_utils.py +3 -3
- qwak/feature_store/data_sources/base.py +4 -4
- qwak/feature_store/data_sources/batch/athena.py +3 -3
- qwak/feature_store/feature_sets/streaming.py +3 -3
- qwak/feature_store/feature_sets/streaming_backfill.py +1 -1
- qwak/feature_store/online/client.py +6 -6
- qwak/feature_store/sinks/streaming/factory.py +1 -1
- qwak/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +3 -3
- qwak/inner/di_configuration/account.py +23 -24
- qwak/inner/tool/auth.py +2 -2
- qwak/llmops/provider/openai/provider.py +3 -3
- qwak/model/tools/adapters/output.py +1 -1
- qwak/model/utils/feature_utils.py +12 -8
- qwak/model_loggers/artifact_logger.py +7 -7
- qwak/tools/logger/logger.py +1 -1
- qwak_core-0.4.273.dist-info/METADATA +415 -0
- {qwak_core-0.4.272.dist-info → qwak_core-0.4.273.dist-info}/RECORD +59 -23
- _qwak_proto/__init__.py +0 -0
- _qwak_proto/qwak/__init__.py +0 -0
- qwak_core-0.4.272.dist-info/METADATA +0 -53
- {qwak_core-0.4.272.dist-info → qwak_core-0.4.273.dist-info}/WHEEL +0 -0
@@ -1,53 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.3
|
2
|
-
Name: qwak-core
|
3
|
-
Version: 0.4.272
|
4
|
-
Summary: Qwak Core contains the necessary objects and communication tools for using the Qwak Platform
|
5
|
-
License: Apache-2.0
|
6
|
-
Keywords: mlops,ml,deployment,serving,model
|
7
|
-
Author: Qwak
|
8
|
-
Author-email: info@qwak.com
|
9
|
-
Requires-Python: >=3.9,<3.12
|
10
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
11
|
-
Classifier: Operating System :: OS Independent
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
14
|
-
Classifier: Programming Language :: Python :: 3.10
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
18
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
19
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
20
|
-
Provides-Extra: feature-store
|
21
|
-
Provides-Extra: local-core-dependencies
|
22
|
-
Requires-Dist: PyYAML
|
23
|
-
Requires-Dist: cachetools
|
24
|
-
Requires-Dist: chevron (==0.14.0)
|
25
|
-
Requires-Dist: cloudpickle (==2.2.1) ; extra == "feature-store"
|
26
|
-
Requires-Dist: dacite (==1.8.1)
|
27
|
-
Requires-Dist: dependency-injector (>=4.0)
|
28
|
-
Requires-Dist: filelock
|
29
|
-
Requires-Dist: frogml-storage (>=0.11.2)
|
30
|
-
Requires-Dist: grpcio (>=1.57.0)
|
31
|
-
Requires-Dist: grpcio-tools (>=1.47.0) ; (python_full_version >= "3.7.1" and python_version < "3.10") and (extra == "local-core-dependencies")
|
32
|
-
Requires-Dist: grpcio-tools (>=1.56.2) ; (python_version >= "3.10") and (extra == "local-core-dependencies")
|
33
|
-
Requires-Dist: joblib (>=1.3.2,<2.0.0)
|
34
|
-
Requires-Dist: marshmallow-dataclass (>=8.5.8,<9.0.0)
|
35
|
-
Requires-Dist: mypy-protobuf (>=3.0.0,<4.0.0) ; extra == "local-core-dependencies"
|
36
|
-
Requires-Dist: protobuf (>=3.10,<4) ; python_full_version >= "3.7.1" and python_version < "3.10"
|
37
|
-
Requires-Dist: protobuf (>=4.21.6) ; python_version >= "3.10"
|
38
|
-
Requires-Dist: pyarrow (>=6.0.0) ; extra == "feature-store"
|
39
|
-
Requires-Dist: pyathena (>=2.2.0,!=2.18.0) ; extra == "feature-store"
|
40
|
-
Requires-Dist: pyspark (==3.4.2) ; extra == "feature-store"
|
41
|
-
Requires-Dist: python-jose[cryptography] (>=3.4.0)
|
42
|
-
Requires-Dist: python-json-logger (>=2.0.2)
|
43
|
-
Requires-Dist: requests
|
44
|
-
Requires-Dist: retrying (==1.3.4)
|
45
|
-
Requires-Dist: typeguard (>=2,<3)
|
46
|
-
Project-URL: Home page, https://www.qwak.com/
|
47
|
-
Description-Content-Type: text/markdown
|
48
|
-
|
49
|
-
# Qwak Core
|
50
|
-
|
51
|
-
Qwak 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.
|
52
|
-
Qwak Core contains all the objects and tools necessary to use the Qwak Platform
|
53
|
-
|
File without changes
|