craft-ai-sdk 0.54.1__tar.gz → 0.55.0rc1__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.
Potentially problematic release.
This version of craft-ai-sdk might be problematic. Click here for more details.
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/PKG-INFO +1 -1
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/__init__.py +1 -1
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/steps.py +0 -2
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/sdk.py +1 -1
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/documentation.pdf +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/pyproject.toml +1 -1
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/LICENSE +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/README.md +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/constants.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/data_store.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/deployments.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/endpoints.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/environment_variables.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/pipeline_executions.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/pipeline_metrics.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/pipelines.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/resource_metrics.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/core/users.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/exceptions.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/io.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/utils.py +0 -0
- {craft_ai_sdk-0.54.1 → craft_ai_sdk-0.55.0rc1}/craft_ai_sdk/warnings.py +0 -0
|
@@ -254,7 +254,6 @@ def create_step(
|
|
|
254
254
|
* ``"creation_info"`` (:obj:`dict`): Information about the step creation:
|
|
255
255
|
|
|
256
256
|
* ``"created_at"`` (:obj:`str`): The creation date in ISO format.
|
|
257
|
-
* ``"updated_at"`` (:obj:`str`): The last update date in ISO format.
|
|
258
257
|
* ``"commit_id"`` (:obj:`str`): The commit id on which the step was
|
|
259
258
|
built.
|
|
260
259
|
* ``"status"`` (:obj:`str`): The step status, always ``"ready"`` when
|
|
@@ -348,7 +347,6 @@ def get_step(sdk: BaseCraftAiSdk, step_name, wait_for_completion=False, timeout_
|
|
|
348
347
|
* ``"creation_info"`` (:obj:`dict`): Information about the step creation:
|
|
349
348
|
|
|
350
349
|
* ``"created_at"`` (:obj:`str`): The creation date in ISO format.
|
|
351
|
-
* ``"updated_at"`` (:obj:`str`): The last update date in ISO format.
|
|
352
350
|
* ``"commit_id"`` (:obj:`str`): The commit id on which the step was
|
|
353
351
|
built.
|
|
354
352
|
* ``"status"`` (:obj:`str`): either ``"creation_pending"`` or ``"ready"``.
|
|
@@ -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.
|
|
133
|
+
_version = "0.55.0rc1" # Would be better to share it somewhere
|
|
134
134
|
|
|
135
135
|
def __init__(
|
|
136
136
|
self,
|
|
Binary file
|
|
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
|