craft-ai-sdk 0.57.0rc1__tar.gz → 0.58.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 (22) hide show
  1. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/PKG-INFO +1 -1
  2. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/__init__.py +1 -1
  3. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/deployments.py +7 -4
  4. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/sdk.py +1 -1
  5. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/documentation.pdf +0 -0
  6. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/pyproject.toml +1 -1
  7. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/LICENSE +0 -0
  8. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/README.md +0 -0
  9. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/constants.py +0 -0
  10. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/data_store.py +0 -0
  11. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/endpoints.py +0 -0
  12. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/environment_variables.py +0 -0
  13. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/pipeline_executions.py +0 -0
  14. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/pipeline_metrics.py +0 -0
  15. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/pipelines.py +0 -0
  16. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/resource_metrics.py +0 -0
  17. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/steps.py +0 -0
  18. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/core/users.py +0 -0
  19. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/exceptions.py +0 -0
  20. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/io.py +0 -0
  21. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/utils.py +0 -0
  22. {craft_ai_sdk-0.57.0rc1 → craft_ai_sdk-0.58.0}/craft_ai_sdk/warnings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: craft-ai-sdk
3
- Version: 0.57.0rc1
3
+ Version: 0.58.0
4
4
  Summary: Craft AI MLOps platform SDK
5
5
  Home-page: https://www.craft.ai/
6
6
  License: Apache-2.0
@@ -14,4 +14,4 @@ from .io import ( # noqa: F401
14
14
  )
15
15
 
16
16
 
17
- __version__ = "0.57.0rc1"
17
+ __version__ = "0.58.0"
@@ -464,11 +464,14 @@ def get_deployment(
464
464
  * ``"datastore_path"`` (:obj:`str`): Datastore path of the step output.
465
465
  Note that this key is only returned if the step output is mapped to
466
466
  the datastore.
467
-
468
- * ``"endpoint_token"`` (:obj:`str`): Token of the endpoint. Note that this
469
- key is only returned if the deployment is an endpoint.
467
+ * ``"endpoint_token"`` (:obj:`str`): Token of the deployment. Note that this
468
+ key is only returned if the ``execution_rule`` of the deployment is
469
+ ``"endpoint"``.
470
+ * ``"endpoint_url_path"`` (:obj:`str`): URL path of the deployment.
471
+ Note that this key is only returned if the ``execution_rule`` of the
472
+ deployment is ``"endpoint"``.
470
473
  * ``"schedule"`` (:obj:`str`): Schedule of the deployment. Note that this key is
471
- only returned if the ``execution_rule``of the deployment is ``"periodic"``.
474
+ only returned if the ``execution_rule`` of the deployment is ``"periodic"``.
472
475
  * ``"human_readable_schedule"`` (:obj:`str`): Human readable schedule of the
473
476
  deployment. Note that this key is only returned if the ``execution_rule`` of
474
477
  the deployment is ``"periodic"``.
@@ -130,7 +130,7 @@ class CraftAiSdk(BaseCraftAiSdk):
130
130
  os.environ.get("CRAFT_AI__MULTIPART_PART_SIZE__B", str(38 * 256 * 1024))
131
131
  )
132
132
  _access_token_margin = timedelta(seconds=30)
133
- _version = "0.57.0rc1" # Would be better to share it somewhere
133
+ _version = "0.58.0" # Would be better to share it somewhere
134
134
 
135
135
  def __init__(
136
136
  self,
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "craft-ai-sdk"
3
- version = "0.57.0rc1"
3
+ version = "0.58.0"
4
4
  description = "Craft AI MLOps platform SDK"
5
5
  license = "Apache-2.0"
6
6
  authors = ["Craft AI <contact@craft.ai>"]
File without changes