craft-ai-sdk 0.63.0__tar.gz → 0.63.1rc1__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.
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/PKG-INFO +1 -1
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/__init__.py +1 -1
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/deployments.py +2 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/sdk.py +1 -1
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/documentation.pdf +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/pyproject.toml +1 -1
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/LICENSE +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/README.md +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/constants.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/data_store.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/endpoints.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/environment_variables.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/pipeline_executions.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/pipeline_metrics.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/pipelines.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/resource_metrics.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/steps.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/users.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/core/vector_database.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/exceptions.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/io.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/authentication.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/environments.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/execution_context.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/helpers.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/logger.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/request_response_handler.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/warnings.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/utils/__init__.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/utils/datetime_utils.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/utils/dict_utils.py +0 -0
- {craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/utils/file_utils.py +0 -0
|
@@ -28,6 +28,7 @@ def create_deployment(
|
|
|
28
28
|
gpu_request=None,
|
|
29
29
|
wait_for_completion=True,
|
|
30
30
|
timeout_s=None,
|
|
31
|
+
execution_timeout_s=None,
|
|
31
32
|
):
|
|
32
33
|
"""Create a deployment associated with a given pipeline.
|
|
33
34
|
|
|
@@ -346,6 +347,7 @@ def create_deployment(
|
|
|
346
347
|
"max_parallel_executions_per_pod": max_parallel_executions_per_pod,
|
|
347
348
|
"ram_request": ram_request,
|
|
348
349
|
"gpu_request": gpu_request,
|
|
350
|
+
"execution_timeout_s": execution_timeout_s,
|
|
349
351
|
}
|
|
350
352
|
|
|
351
353
|
if schedule is not None:
|
|
@@ -137,7 +137,7 @@ class CraftAiSdk(BaseCraftAiSdk):
|
|
|
137
137
|
os.environ.get("CRAFT_AI__MULTIPART_PART_SIZE__B", str(38 * 256 * 1024))
|
|
138
138
|
)
|
|
139
139
|
_access_token_margin = timedelta(seconds=30)
|
|
140
|
-
_version = "0.63.
|
|
140
|
+
_version = "0.63.1rc1" # Would be better to share it somewhere
|
|
141
141
|
|
|
142
142
|
def __init__(
|
|
143
143
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{craft_ai_sdk-0.63.0 → craft_ai_sdk-0.63.1rc1}/craft_ai_sdk/shared/request_response_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|