vellum-ai 0.14.34__py3-none-any.whl → 0.14.35__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.
- vellum/__init__.py +2 -0
- vellum/client/core/client_wrapper.py +1 -1
- vellum/client/types/__init__.py +2 -0
- vellum/client/types/workflow_deployment_release.py +2 -0
- vellum/client/types/workflow_deployment_release_workflow_deployment.py +19 -0
- vellum/types/workflow_deployment_release_workflow_deployment.py +3 -0
- {vellum_ai-0.14.34.dist-info → vellum_ai-0.14.35.dist-info}/METADATA +1 -1
- {vellum_ai-0.14.34.dist-info → vellum_ai-0.14.35.dist-info}/RECORD +12 -10
- vellum_cli/tests/test_pull.py +1 -0
- {vellum_ai-0.14.34.dist-info → vellum_ai-0.14.35.dist-info}/LICENSE +0 -0
- {vellum_ai-0.14.34.dist-info → vellum_ai-0.14.35.dist-info}/WHEEL +0 -0
- {vellum_ai-0.14.34.dist-info → vellum_ai-0.14.35.dist-info}/entry_points.txt +0 -0
vellum/__init__.py
CHANGED
@@ -507,6 +507,7 @@ from .types import (
|
|
507
507
|
WorkflowDeploymentParentContext,
|
508
508
|
WorkflowDeploymentRead,
|
509
509
|
WorkflowDeploymentRelease,
|
510
|
+
WorkflowDeploymentReleaseWorkflowDeployment,
|
510
511
|
WorkflowDeploymentReleaseWorkflowVersion,
|
511
512
|
WorkflowError,
|
512
513
|
WorkflowEventDisplayContext,
|
@@ -1130,6 +1131,7 @@ __all__ = [
|
|
1130
1131
|
"WorkflowDeploymentParentContext",
|
1131
1132
|
"WorkflowDeploymentRead",
|
1132
1133
|
"WorkflowDeploymentRelease",
|
1134
|
+
"WorkflowDeploymentReleaseWorkflowDeployment",
|
1133
1135
|
"WorkflowDeploymentReleaseWorkflowVersion",
|
1134
1136
|
"WorkflowDeploymentsListRequestStatus",
|
1135
1137
|
"WorkflowError",
|
@@ -18,7 +18,7 @@ class BaseClientWrapper:
|
|
18
18
|
headers: typing.Dict[str, str] = {
|
19
19
|
"X-Fern-Language": "Python",
|
20
20
|
"X-Fern-SDK-Name": "vellum-ai",
|
21
|
-
"X-Fern-SDK-Version": "0.14.
|
21
|
+
"X-Fern-SDK-Version": "0.14.35",
|
22
22
|
}
|
23
23
|
headers["X_API_KEY"] = self.api_key
|
24
24
|
return headers
|
vellum/client/types/__init__.py
CHANGED
@@ -531,6 +531,7 @@ from .workflow_deployment_history_item import WorkflowDeploymentHistoryItem
|
|
531
531
|
from .workflow_deployment_parent_context import WorkflowDeploymentParentContext
|
532
532
|
from .workflow_deployment_read import WorkflowDeploymentRead
|
533
533
|
from .workflow_deployment_release import WorkflowDeploymentRelease
|
534
|
+
from .workflow_deployment_release_workflow_deployment import WorkflowDeploymentReleaseWorkflowDeployment
|
534
535
|
from .workflow_deployment_release_workflow_version import WorkflowDeploymentReleaseWorkflowVersion
|
535
536
|
from .workflow_error import WorkflowError
|
536
537
|
from .workflow_event_display_context import WorkflowEventDisplayContext
|
@@ -1108,6 +1109,7 @@ __all__ = [
|
|
1108
1109
|
"WorkflowDeploymentParentContext",
|
1109
1110
|
"WorkflowDeploymentRead",
|
1110
1111
|
"WorkflowDeploymentRelease",
|
1112
|
+
"WorkflowDeploymentReleaseWorkflowDeployment",
|
1111
1113
|
"WorkflowDeploymentReleaseWorkflowVersion",
|
1112
1114
|
"WorkflowError",
|
1113
1115
|
"WorkflowEventDisplayContext",
|
@@ -8,6 +8,7 @@ from .release_environment import ReleaseEnvironment
|
|
8
8
|
import typing
|
9
9
|
from .release_created_by import ReleaseCreatedBy
|
10
10
|
from .workflow_deployment_release_workflow_version import WorkflowDeploymentReleaseWorkflowVersion
|
11
|
+
from .workflow_deployment_release_workflow_deployment import WorkflowDeploymentReleaseWorkflowDeployment
|
11
12
|
from .release_release_tag import ReleaseReleaseTag
|
12
13
|
from .slim_release_review import SlimReleaseReview
|
13
14
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -21,6 +22,7 @@ class WorkflowDeploymentRelease(UniversalBaseModel):
|
|
21
22
|
environment: ReleaseEnvironment
|
22
23
|
created_by: typing.Optional[ReleaseCreatedBy] = None
|
23
24
|
workflow_version: WorkflowDeploymentReleaseWorkflowVersion
|
25
|
+
deployment: WorkflowDeploymentReleaseWorkflowDeployment
|
24
26
|
description: typing.Optional[str] = None
|
25
27
|
release_tags: typing.List[ReleaseReleaseTag]
|
26
28
|
reviews: typing.List[SlimReleaseReview]
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
4
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
5
|
+
import typing
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class WorkflowDeploymentReleaseWorkflowDeployment(UniversalBaseModel):
|
10
|
+
name: str
|
11
|
+
|
12
|
+
if IS_PYDANTIC_V2:
|
13
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
14
|
+
else:
|
15
|
+
|
16
|
+
class Config:
|
17
|
+
frozen = True
|
18
|
+
smart_union = True
|
19
|
+
extra = pydantic.Extra.allow
|
@@ -16,7 +16,7 @@ vellum_cli/tests/test_image_push.py,sha256=i3lJuW8nFRwL1M1OF6752IZYvGAFgKmkB2hd_
|
|
16
16
|
vellum_cli/tests/test_init.py,sha256=8UOc_ThfouR4ja5cCl_URuLk7ohr9JXfCnG4yka1OUQ,18754
|
17
17
|
vellum_cli/tests/test_main.py,sha256=qDZG-aQauPwBwM6A2DIu1494n47v3pL28XakTbLGZ-k,272
|
18
18
|
vellum_cli/tests/test_ping.py,sha256=3ucVRThEmTadlV9LrJdCCrr1Ofj3rOjG6ue0BNR2UC0,2523
|
19
|
-
vellum_cli/tests/test_pull.py,sha256=
|
19
|
+
vellum_cli/tests/test_pull.py,sha256=3eZJASQ4UbPXmqnbg-5w1Q3gyasVMFiA2Pr5RFPID1o,46495
|
20
20
|
vellum_cli/tests/test_push.py,sha256=zDv_Q1hbXtLwmTJDPRAvwDjbuHC09uNRYOy4FQujUow,23476
|
21
21
|
vellum_ee/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
vellum_ee/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -123,12 +123,12 @@ vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIP
|
|
123
123
|
vellum_ee/workflows/tests/test_display_meta.py,sha256=C25dErwghPNXio49pvSRxyOuc96srH6eYEwTAWdE2zY,2258
|
124
124
|
vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
|
125
125
|
vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
|
126
|
-
vellum/__init__.py,sha256=
|
126
|
+
vellum/__init__.py,sha256=YKN2trB0s1J3jSQSKsT6vQjdVM7RRdSTvKGJLvaQ1PU,41070
|
127
127
|
vellum/client/README.md,sha256=JkCJjmMZl4jrPj46pkmL9dpK4gSzQQmP5I7z4aME4LY,4749
|
128
128
|
vellum/client/__init__.py,sha256=ki-TDOmYzC0FePN7swDyE6UpHFQV_4dK7lqy4h-3s1Y,118148
|
129
129
|
vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
130
130
|
vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
131
|
-
vellum/client/core/client_wrapper.py,sha256
|
131
|
+
vellum/client/core/client_wrapper.py,sha256=ETlev1Qgt8SDpGgtdiJftsiPBOUFLk93P_WgpT1msN0,1869
|
132
132
|
vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
133
133
|
vellum/client/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
|
134
134
|
vellum/client/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
|
@@ -195,7 +195,7 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
|
|
195
195
|
vellum/client/resources/workspace_secrets/client.py,sha256=h7UzXLyTttPq1t-JZGMg1BWxypxJvBGUdqg7KGT7MK4,8027
|
196
196
|
vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
197
197
|
vellum/client/resources/workspaces/client.py,sha256=RthwzN1o-Jxwg5yyNNodavFyNUSxfLoTv26w3mRR5g8,3595
|
198
|
-
vellum/client/types/__init__.py,sha256=
|
198
|
+
vellum/client/types/__init__.py,sha256=rvwKofaHwLpRT0shxW3yUXkEorD3QurXnqSicG_2Or4,62132
|
199
199
|
vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
|
200
200
|
vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
|
201
201
|
vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
|
@@ -698,7 +698,8 @@ vellum/client/types/workflow_deployment_event_executions_response.py,sha256=x7mZ
|
|
698
698
|
vellum/client/types/workflow_deployment_history_item.py,sha256=4WUPzcthBvEZ7iaisKfEg0soUtHjcTEnL_VUVaKpTyw,1420
|
699
699
|
vellum/client/types/workflow_deployment_parent_context.py,sha256=QNyPj2o-jauaC48KrRjCWan1IKIbDgyuxLxURmhXsXM,2347
|
700
700
|
vellum/client/types/workflow_deployment_read.py,sha256=tp1WaojTVE_dz1oiZ97h8ixMbIWDgy2yRu08A7wPMpw,2363
|
701
|
-
vellum/client/types/workflow_deployment_release.py,sha256=
|
701
|
+
vellum/client/types/workflow_deployment_release.py,sha256=1OveujSLRID7B6aGGjqsN5R8MbEHn3SS0sp3dj22DQs,1609
|
702
|
+
vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=irWt901SImKChLayz7_52C1W7JldKiQHweqkjuMUoNQ,586
|
702
703
|
vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=NP3FoxLpgMUIK1OAPf_ei58mxE9F7BLAuw7q55CIcT8,989
|
703
704
|
vellum/client/types/workflow_error.py,sha256=EQajkEmLS64T0wYm0goHQl0rT7Lguurk8pLwkhjsgAI,282
|
704
705
|
vellum/client/types/workflow_event_display_context.py,sha256=tnO9lgIJKnLtuS6xum_QilI83LjOmnWCLtnSHLn1oNo,929
|
@@ -1364,6 +1365,7 @@ vellum/types/workflow_deployment_history_item.py,sha256=dp5pwzOVO83KPwAbYeO3NXlK
|
|
1364
1365
|
vellum/types/workflow_deployment_parent_context.py,sha256=kB0eeRXagHqRnuDVA9B8aDlvBZVOmQ702JYXD8evh24,172
|
1365
1366
|
vellum/types/workflow_deployment_read.py,sha256=dDGG27VP0bvC565JzeSOHJ-5Pvs7eCF4R8F9k8316bo,162
|
1366
1367
|
vellum/types/workflow_deployment_release.py,sha256=lBnOc5Tw2-jLGWmthzkwdaLGvylcDiarO-maZSote0A,165
|
1368
|
+
vellum/types/workflow_deployment_release_workflow_deployment.py,sha256=8qT32r--NyJppqBizD9QP6jvM5YdcsdpGEtaKMG1RbE,185
|
1367
1369
|
vellum/types/workflow_deployment_release_workflow_version.py,sha256=l5SJrY9z3lG5K82V2wY2sY50V40CQWKl95nDjnHu4Dc,182
|
1368
1370
|
vellum/types/workflow_error.py,sha256=7rZcYJG5jYr4IbEvgv57G6Lxutrdg43SD8mUerd58_A,152
|
1369
1371
|
vellum/types/workflow_event_display_context.py,sha256=jiH4vHlWYdT_2zM8yxPox3fXjnFStzIO46N90B2TdNA,168
|
@@ -1670,8 +1672,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
|
|
1670
1672
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1671
1673
|
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=tCxrV3QBHL8wfdEO3bvKteDdw32xBlUl1_WxkAwaONw,8344
|
1672
1674
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
1673
|
-
vellum_ai-0.14.
|
1674
|
-
vellum_ai-0.14.
|
1675
|
-
vellum_ai-0.14.
|
1676
|
-
vellum_ai-0.14.
|
1677
|
-
vellum_ai-0.14.
|
1675
|
+
vellum_ai-0.14.35.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
1676
|
+
vellum_ai-0.14.35.dist-info/METADATA,sha256=p35Qzrtnz0-GxWWkLD1zb0nMfyoFki46Og2RE-q9c8E,5484
|
1677
|
+
vellum_ai-0.14.35.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1678
|
+
vellum_ai-0.14.35.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
|
1679
|
+
vellum_ai-0.14.35.dist-info/RECORD,,
|
vellum_cli/tests/test_pull.py
CHANGED
@@ -1248,6 +1248,7 @@ def test_pull__workflow_deployment_with_name_and_id(vellum_client):
|
|
1248
1248
|
]
|
1249
1249
|
)
|
1250
1250
|
|
1251
|
+
os.chdir(temp_dir)
|
1251
1252
|
result = runner.invoke(cli_main, ["workflows", "pull", "--workflow-deployment", deployment_name])
|
1252
1253
|
assert result.exit_code == 0
|
1253
1254
|
with open(vellum_lock_json) as f:
|
File without changes
|
File without changes
|
File without changes
|