craft-ai-sdk 0.63.0rc1__py3-none-any.whl → 0.63.1__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.

Potentially problematic release.


This version of craft-ai-sdk might be problematic. Click here for more details.

craft_ai_sdk/__init__.py CHANGED
@@ -13,4 +13,4 @@ from .io import ( # noqa: F401
13
13
  )
14
14
  from .sdk import CraftAiSdk # noqa: F401
15
15
 
16
- __version__ = "0.63.0rc1"
16
+ __version__ = "0.63.1"
@@ -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:
craft_ai_sdk/sdk.py CHANGED
@@ -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.0rc1" # Would be better to share it somewhere
140
+ _version = "0.63.1" # Would be better to share it somewhere
141
141
 
142
142
  def __init__(
143
143
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: craft-ai-sdk
3
- Version: 0.63.0rc1
3
+ Version: 0.63.1
4
4
  Summary: Craft AI MLOps platform SDK
5
5
  License: Apache-2.0
6
6
  Author: Craft AI
@@ -1,7 +1,7 @@
1
- craft_ai_sdk/__init__.py,sha256=EzbB8zezQJkSHMafVKFo4pxrZQ339OUPpf1zjvuCKM4,366
1
+ craft_ai_sdk/__init__.py,sha256=yscqoAS5t1EPFtv_WmYj40OSvmNFAqdDM5uII9ofcvA,363
2
2
  craft_ai_sdk/constants.py,sha256=rH4JrGlTpbjjjNRrKhk5oScbj5G5INrcVza6Bb6kIzY,980
3
3
  craft_ai_sdk/core/data_store.py,sha256=cXV5Nu85L3beu2_1La4v9HlaHZ6yiIKaUVb8gPJroJw,8662
4
- craft_ai_sdk/core/deployments.py,sha256=k3Eb3axVlZKJigOMy6PAozWxOzd0pZDy2d5nkGwSz34,34803
4
+ craft_ai_sdk/core/deployments.py,sha256=u5tyMlSlViFt_AMSnIFcOUR4W2vYuYkeUqvei_RueBE,34885
5
5
  craft_ai_sdk/core/endpoints.py,sha256=OLaTAiveFhrvaDQrDKAp1cvAQry_6vzfym1U-eyF1Bc,5239
6
6
  craft_ai_sdk/core/environment_variables.py,sha256=H1fo5RKQXNSQ8JAgtxZ9AdrdSQGrUtt7QPHbfkr0zTI,2053
7
7
  craft_ai_sdk/core/pipeline_executions.py,sha256=w4dKFlFt9XgQC77H0S4AoXnURRCo9ZRxkCM4PiZ4VYU,18153
@@ -13,7 +13,7 @@ craft_ai_sdk/core/users.py,sha256=Qi3xg7Vzk_0MepccNIZbFzjI0bBqouqkFStTuejUY6s,50
13
13
  craft_ai_sdk/core/vector_database.py,sha256=9zgu9WFHYgSoBm_CYuI02-1mAE_y03IXNEk1D4ZIKks,2134
14
14
  craft_ai_sdk/exceptions.py,sha256=IC-JfZmmmaTsbMCgirOEByRmWnatQLjKe8BErRkuwM0,1075
15
15
  craft_ai_sdk/io.py,sha256=Z7aLQXLqBPREz5C95jw7yY7b9rzyWAWQRofNpC1hKsw,12716
16
- craft_ai_sdk/sdk.py,sha256=6yfl2-DYIASIUy6joDFS732ggJjvGE-yWzGEDD111cc,10698
16
+ craft_ai_sdk/sdk.py,sha256=yXaH8f1iS8HzWeyp8TwBKnh05YzjP-cANW9851lehT4,10695
17
17
  craft_ai_sdk/shared/authentication.py,sha256=OdwtAH47tOUS-u_HhxlI8JdjZT5REr5B5cGSrX7sz00,885
18
18
  craft_ai_sdk/shared/environments.py,sha256=NI7DgQa4uj1PnffJUZ1Q4Car4r9OoFdXpYod26xgOIo,547
19
19
  craft_ai_sdk/shared/execution_context.py,sha256=B2Ghq-wiUvq81q5mhsm79Oc59c8c00uQxMIpApFD03o,585
@@ -25,8 +25,8 @@ craft_ai_sdk/utils/__init__.py,sha256=A0sLCXSPD1Z3q2GP1uLDjvif4ivOr__Hzg9RQysEuq
25
25
  craft_ai_sdk/utils/datetime_utils.py,sha256=QpI2YgHDKbp7yHqvImDuZeSbtQWZDlGDGKR1AehA6x0,650
26
26
  craft_ai_sdk/utils/dict_utils.py,sha256=geLcoBg5CPNqrPRm4jSf7MFym5r882QFyNz-4xKzYz8,742
27
27
  craft_ai_sdk/utils/file_utils.py,sha256=9NYr6bd22gB_9ukoy2OneR1YxCuYRYn1PfV56CczS0w,2131
28
- craft_ai_sdk-0.63.0rc1.dist-info/LICENSE,sha256=_2oYRJic9lZK05LceuJ9aZZw5mPHYc1WQhJiVS-oGFU,10754
29
- craft_ai_sdk-0.63.0rc1.dist-info/METADATA,sha256=CzlxZZLx7zD5vKmKDtGSyo6gHxGTsIY51qeHSkQKwSA,1679
30
- craft_ai_sdk-0.63.0rc1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
31
- craft_ai_sdk-0.63.0rc1.dist-info/entry_points.txt,sha256=eV9YD0zCAb88_wNMDV99sRxVKVC-WOQF3b1Pepaytcg,385
32
- craft_ai_sdk-0.63.0rc1.dist-info/RECORD,,
28
+ craft_ai_sdk-0.63.1.dist-info/LICENSE,sha256=_2oYRJic9lZK05LceuJ9aZZw5mPHYc1WQhJiVS-oGFU,10754
29
+ craft_ai_sdk-0.63.1.dist-info/METADATA,sha256=JhItHq-F4mukpsmNcH4QyN-Dl8-rs2npZRd4ueTE3i8,1676
30
+ craft_ai_sdk-0.63.1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
31
+ craft_ai_sdk-0.63.1.dist-info/entry_points.txt,sha256=eV9YD0zCAb88_wNMDV99sRxVKVC-WOQF3b1Pepaytcg,385
32
+ craft_ai_sdk-0.63.1.dist-info/RECORD,,