vellum-ai 0.14.29__py3-none-any.whl → 0.14.30__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/client/core/client_wrapper.py +1 -1
- vellum/client/resources/sandboxes/client.py +10 -0
- vellum/client/resources/workflow_sandboxes/client.py +10 -0
- vellum/workflows/nodes/bases/tests/test_base_node.py +27 -0
- vellum/workflows/outputs/base.py +1 -1
- {vellum_ai-0.14.29.dist-info → vellum_ai-0.14.30.dist-info}/METADATA +1 -1
- {vellum_ai-0.14.29.dist-info → vellum_ai-0.14.30.dist-info}/RECORD +12 -12
- vellum_cli/pull.py +4 -8
- vellum_cli/tests/test_pull.py +54 -1
- {vellum_ai-0.14.29.dist-info → vellum_ai-0.14.30.dist-info}/LICENSE +0 -0
- {vellum_ai-0.14.29.dist-info → vellum_ai-0.14.30.dist-info}/WHEEL +0 -0
- {vellum_ai-0.14.29.dist-info → vellum_ai-0.14.30.dist-info}/entry_points.txt +0 -0
@@ -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.30",
|
22
22
|
}
|
23
23
|
headers["X_API_KEY"] = self.api_key
|
24
24
|
return headers
|
@@ -30,6 +30,7 @@ class SandboxesClient:
|
|
30
30
|
prompt_deployment_name: typing.Optional[str] = OMIT,
|
31
31
|
label: typing.Optional[str] = OMIT,
|
32
32
|
release_tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
33
|
+
release_description: typing.Optional[str] = OMIT,
|
33
34
|
request_options: typing.Optional[RequestOptions] = None,
|
34
35
|
) -> DeploymentRead:
|
35
36
|
"""
|
@@ -53,6 +54,9 @@ class SandboxesClient:
|
|
53
54
|
release_tags : typing.Optional[typing.Sequence[str]]
|
54
55
|
Optionally provide the release tags that you'd like to be associated with the latest release of the created/updated Prompt Deployment.
|
55
56
|
|
57
|
+
release_description : typing.Optional[str]
|
58
|
+
Optionally provide a description that details what's new in this Release.
|
59
|
+
|
56
60
|
request_options : typing.Optional[RequestOptions]
|
57
61
|
Request-specific configuration.
|
58
62
|
|
@@ -82,6 +86,7 @@ class SandboxesClient:
|
|
82
86
|
"prompt_deployment_name": prompt_deployment_name,
|
83
87
|
"label": label,
|
84
88
|
"release_tags": release_tags,
|
89
|
+
"release_description": release_description,
|
85
90
|
},
|
86
91
|
request_options=request_options,
|
87
92
|
omit=OMIT,
|
@@ -250,6 +255,7 @@ class AsyncSandboxesClient:
|
|
250
255
|
prompt_deployment_name: typing.Optional[str] = OMIT,
|
251
256
|
label: typing.Optional[str] = OMIT,
|
252
257
|
release_tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
258
|
+
release_description: typing.Optional[str] = OMIT,
|
253
259
|
request_options: typing.Optional[RequestOptions] = None,
|
254
260
|
) -> DeploymentRead:
|
255
261
|
"""
|
@@ -273,6 +279,9 @@ class AsyncSandboxesClient:
|
|
273
279
|
release_tags : typing.Optional[typing.Sequence[str]]
|
274
280
|
Optionally provide the release tags that you'd like to be associated with the latest release of the created/updated Prompt Deployment.
|
275
281
|
|
282
|
+
release_description : typing.Optional[str]
|
283
|
+
Optionally provide a description that details what's new in this Release.
|
284
|
+
|
276
285
|
request_options : typing.Optional[RequestOptions]
|
277
286
|
Request-specific configuration.
|
278
287
|
|
@@ -310,6 +319,7 @@ class AsyncSandboxesClient:
|
|
310
319
|
"prompt_deployment_name": prompt_deployment_name,
|
311
320
|
"label": label,
|
312
321
|
"release_tags": release_tags,
|
322
|
+
"release_description": release_description,
|
313
323
|
},
|
314
324
|
request_options=request_options,
|
315
325
|
omit=OMIT,
|
@@ -29,6 +29,7 @@ class WorkflowSandboxesClient:
|
|
29
29
|
workflow_deployment_name: typing.Optional[str] = OMIT,
|
30
30
|
label: typing.Optional[str] = OMIT,
|
31
31
|
release_tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
32
|
+
release_description: typing.Optional[str] = OMIT,
|
32
33
|
request_options: typing.Optional[RequestOptions] = None,
|
33
34
|
) -> WorkflowDeploymentRead:
|
34
35
|
"""
|
@@ -52,6 +53,9 @@ class WorkflowSandboxesClient:
|
|
52
53
|
release_tags : typing.Optional[typing.Sequence[str]]
|
53
54
|
Optionally provide the release tags that you'd like to be associated with the latest release of the created/updated Prompt Deployment.
|
54
55
|
|
56
|
+
release_description : typing.Optional[str]
|
57
|
+
Optionally provide a description that details what's new in this Release.
|
58
|
+
|
55
59
|
request_options : typing.Optional[RequestOptions]
|
56
60
|
Request-specific configuration.
|
57
61
|
|
@@ -81,6 +85,7 @@ class WorkflowSandboxesClient:
|
|
81
85
|
"workflow_deployment_name": workflow_deployment_name,
|
82
86
|
"label": label,
|
83
87
|
"release_tags": release_tags,
|
88
|
+
"release_description": release_description,
|
84
89
|
},
|
85
90
|
request_options=request_options,
|
86
91
|
omit=OMIT,
|
@@ -181,6 +186,7 @@ class AsyncWorkflowSandboxesClient:
|
|
181
186
|
workflow_deployment_name: typing.Optional[str] = OMIT,
|
182
187
|
label: typing.Optional[str] = OMIT,
|
183
188
|
release_tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
189
|
+
release_description: typing.Optional[str] = OMIT,
|
184
190
|
request_options: typing.Optional[RequestOptions] = None,
|
185
191
|
) -> WorkflowDeploymentRead:
|
186
192
|
"""
|
@@ -204,6 +210,9 @@ class AsyncWorkflowSandboxesClient:
|
|
204
210
|
release_tags : typing.Optional[typing.Sequence[str]]
|
205
211
|
Optionally provide the release tags that you'd like to be associated with the latest release of the created/updated Prompt Deployment.
|
206
212
|
|
213
|
+
release_description : typing.Optional[str]
|
214
|
+
Optionally provide a description that details what's new in this Release.
|
215
|
+
|
207
216
|
request_options : typing.Optional[RequestOptions]
|
208
217
|
Request-specific configuration.
|
209
218
|
|
@@ -241,6 +250,7 @@ class AsyncWorkflowSandboxesClient:
|
|
241
250
|
"workflow_deployment_name": workflow_deployment_name,
|
242
251
|
"label": label,
|
243
252
|
"release_tags": release_tags,
|
253
|
+
"release_description": release_description,
|
244
254
|
},
|
245
255
|
request_options=request_options,
|
246
256
|
omit=OMIT,
|
@@ -1,9 +1,12 @@
|
|
1
|
+
import pytest
|
1
2
|
from uuid import UUID
|
2
3
|
from typing import Optional
|
3
4
|
|
4
5
|
from vellum.client.types.string_vellum_value_request import StringVellumValueRequest
|
5
6
|
from vellum.core.pydantic_utilities import UniversalBaseModel
|
7
|
+
from vellum.workflows.descriptors.tests.test_utils import FixtureState
|
6
8
|
from vellum.workflows.inputs.base import BaseInputs
|
9
|
+
from vellum.workflows.nodes import FinalOutputNode
|
7
10
|
from vellum.workflows.nodes.bases.base import BaseNode
|
8
11
|
from vellum.workflows.outputs.base import BaseOutputs
|
9
12
|
from vellum.workflows.state.base import BaseState, StateMeta
|
@@ -232,3 +235,27 @@ def test_outputs_preserves_non_object_bases():
|
|
232
235
|
# THEN the output values should be correct
|
233
236
|
assert outputs.foo == "bar"
|
234
237
|
assert outputs.bar == "baz"
|
238
|
+
|
239
|
+
|
240
|
+
@pytest.mark.parametrize(
|
241
|
+
"falsy_value,expected_type",
|
242
|
+
[
|
243
|
+
("", str),
|
244
|
+
(0, int),
|
245
|
+
],
|
246
|
+
)
|
247
|
+
def test_resolve_value__for_falsy_values(falsy_value, expected_type):
|
248
|
+
"""Test that falsy values in FinalOutputNode are handled correctly."""
|
249
|
+
|
250
|
+
class FalsyOutput(FinalOutputNode[FixtureState, expected_type]): # type: ignore
|
251
|
+
class Outputs(FinalOutputNode.Outputs):
|
252
|
+
value = falsy_value
|
253
|
+
|
254
|
+
# GIVEN a node with a falsy value
|
255
|
+
falsy_node = FalsyOutput(state=FixtureState())
|
256
|
+
|
257
|
+
# WHEN we run the node
|
258
|
+
falsy_output = falsy_node.run()
|
259
|
+
|
260
|
+
# THEN the output has the correct value
|
261
|
+
assert falsy_output.value == falsy_value
|
vellum/workflows/outputs/base.py
CHANGED
@@ -145,7 +145,7 @@ class _BaseOutputsMeta(type):
|
|
145
145
|
# we iterate through its inheritance hierarchy to find the first base class that has this attribute
|
146
146
|
# and use its mapping.
|
147
147
|
instance = vars(cls).get(name, undefined)
|
148
|
-
if
|
148
|
+
if instance is undefined:
|
149
149
|
for base in cls.__mro__[1:]:
|
150
150
|
if hasattr(base, name):
|
151
151
|
instance = getattr(base, name)
|
@@ -7,7 +7,7 @@ vellum_cli/image_push.py,sha256=8DDvRDJEZ-FukUCqGW1827bg1ybF4xBbx9WyqWYQE-g,6816
|
|
7
7
|
vellum_cli/init.py,sha256=WpnMXPItPmh0f0bBGIer3p-e5gu8DUGwSArT_FuoMEw,5093
|
8
8
|
vellum_cli/logger.py,sha256=PuRFa0WCh4sAGFS5aqWB0QIYpS6nBWwPJrIXpWxugV4,1022
|
9
9
|
vellum_cli/ping.py,sha256=lWyJw6sziXjyTopTYRdFF5hV-sYPVDdX0yVbG5fzcY4,585
|
10
|
-
vellum_cli/pull.py,sha256=
|
10
|
+
vellum_cli/pull.py,sha256=GTYNJDzEeJ3Z48i6YjL2sF2ERFt4czOR7T6lEoQ_J6Q,9176
|
11
11
|
vellum_cli/push.py,sha256=xjTNbLwOVFNU3kpBrm56Bk5QkSRrJ9z86qceghCzfIA,9655
|
12
12
|
vellum_cli/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
vellum_cli/tests/conftest.py,sha256=AFYZryKA2qnUuCPBxBKmHLFoPiE0WhBFFej9tNwSHdc,1526
|
@@ -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=QtbhYKMYn1DFnDyBij2mkQO32j9KOpZ5Pf0yek7k_Ao,1284
|
19
|
-
vellum_cli/tests/test_pull.py,sha256=
|
19
|
+
vellum_cli/tests/test_pull.py,sha256=qIoft5Pu49Os6760rgtOG80PNYW0ERdF10N1h0380sA,32089
|
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
|
@@ -128,7 +128,7 @@ vellum/client/README.md,sha256=JkCJjmMZl4jrPj46pkmL9dpK4gSzQQmP5I7z4aME4LY,4749
|
|
128
128
|
vellum/client/__init__.py,sha256=Jv9sI5BNFo2OYA9px_aREFSIp655ryC3eaZSRI6yH1k,117826
|
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=n2emxJFfx0tF0nSGCah08qytcpcFnvJBgH2UN0WLCFA,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
|
@@ -173,7 +173,7 @@ vellum/client/resources/organizations/client.py,sha256=Uye92moqjAcOCs4astmuFpT92
|
|
173
173
|
vellum/client/resources/prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
174
174
|
vellum/client/resources/prompts/client.py,sha256=_rNTUjhl_ZF3vyQa_M1BSTrX4DlFXU_SXkwwCEYKD2s,6598
|
175
175
|
vellum/client/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
176
|
-
vellum/client/resources/sandboxes/client.py,sha256=
|
176
|
+
vellum/client/resources/sandboxes/client.py,sha256=SG4BV0NG1Ow10mXSu52ybj-c6hR7wcNxfGJK4eiHu_8,17670
|
177
177
|
vellum/client/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
178
178
|
vellum/client/resources/test_suite_runs/client.py,sha256=tU-N1fEfXQPomt2f058PUNIhnGoMV4vo471PlQanTAs,15128
|
179
179
|
vellum/client/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -184,7 +184,7 @@ vellum/client/resources/workflow_deployments/types/__init__.py,sha256=W7DKJ1nduw
|
|
184
184
|
vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
|
185
185
|
vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
|
186
186
|
vellum/client/resources/workflow_sandboxes/__init__.py,sha256=OR3wE3pTgsZlTS-0ukeMWzSuEZF8PszuQTCHDh6JybI,175
|
187
|
-
vellum/client/resources/workflow_sandboxes/client.py,sha256=
|
187
|
+
vellum/client/resources/workflow_sandboxes/client.py,sha256=H6GP3yitYKSSb5D0fSF_dKG467d2NYMQf5bnFo0nSZM,12916
|
188
188
|
vellum/client/resources/workflow_sandboxes/types/__init__.py,sha256=EaGVRU1w6kJiiHrbZOeEa0c3ggjfgv_jBqsyOkCRWOI,212
|
189
189
|
vellum/client/resources/workflow_sandboxes/types/list_workflow_sandbox_examples_request_tag.py,sha256=TEwWit20W3X-zWPPLAhmUG05UudG9gaBSJ4Q4-rNJws,188
|
190
190
|
vellum/client/resources/workflows/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -1498,7 +1498,7 @@ vellum/workflows/nodes/bases/__init__.py,sha256=cniHuz_RXdJ4TQgD8CBzoiKDiPxg62Er
|
|
1498
1498
|
vellum/workflows/nodes/bases/base.py,sha256=eW-3RSkBgtuGY8x2nmbHYiUg_HXS5U57n3k6Fh-dJ9s,15330
|
1499
1499
|
vellum/workflows/nodes/bases/base_adornment_node.py,sha256=afMwJLHK2Ke7sBpceVLnNdZMlU2O-6UgyG7lBt9SAQ8,3039
|
1500
1500
|
vellum/workflows/nodes/bases/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1501
|
-
vellum/workflows/nodes/bases/tests/test_base_node.py,sha256=
|
1501
|
+
vellum/workflows/nodes/bases/tests/test_base_node.py,sha256=4PGjzFh4ZkvffOn-7xhqzsqfdLsYe_2IGqn002TL4LE,7099
|
1502
1502
|
vellum/workflows/nodes/core/__init__.py,sha256=5zDMCmyt1v0HTJzlUBwq3U9L825yZGZhT9JL18-mRR4,455
|
1503
1503
|
vellum/workflows/nodes/core/error_node/__init__.py,sha256=g7RRnlHhqu4qByfLjBwCunmgGA8dI5gNsjS3h6TwlSI,60
|
1504
1504
|
vellum/workflows/nodes/core/error_node/node.py,sha256=MFHU5vITYSK-L9CuMZ49In2ZeNLWnhZD0f8r5dWvb5Y,1270
|
@@ -1593,7 +1593,7 @@ vellum/workflows/nodes/tests/test_mocks.py,sha256=mfPvrs75PKcsNsbJLQAN6PDFoVqs9T
|
|
1593
1593
|
vellum/workflows/nodes/tests/test_utils.py,sha256=qNB6ApIsnFtE_9HDaEah9KD-zX8e10FhDixewS1uRcc,5199
|
1594
1594
|
vellum/workflows/nodes/utils.py,sha256=Tc3TAmAytb-gi30BAyzGY7DG0uS1_7KTGYdjrvKUSt0,8362
|
1595
1595
|
vellum/workflows/outputs/__init__.py,sha256=AyZ4pRh_ACQIGvkf0byJO46EDnSix1ZCAXfvh-ms1QE,94
|
1596
|
-
vellum/workflows/outputs/base.py,sha256=
|
1596
|
+
vellum/workflows/outputs/base.py,sha256=jOvSr44GEmtldits-bysJoxme7js6aN_LkdV-PpA7Dk,8631
|
1597
1597
|
vellum/workflows/ports/__init__.py,sha256=bZuMt-R7z5bKwpu4uPW7LlJeePOQWmCcDSXe5frUY5g,101
|
1598
1598
|
vellum/workflows/ports/node_ports.py,sha256=g4A-8iUAvEJSkaWppbvzAR8XU02R9U-qLN4rP2Kq4Aw,2743
|
1599
1599
|
vellum/workflows/ports/port.py,sha256=eI2SOZPZ5rsC3jMsxW6Rbn0NpaYQsrR7AapiIbbiy8Q,3635
|
@@ -1650,8 +1650,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
|
|
1650
1650
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1651
1651
|
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=tCxrV3QBHL8wfdEO3bvKteDdw32xBlUl1_WxkAwaONw,8344
|
1652
1652
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
1653
|
-
vellum_ai-0.14.
|
1654
|
-
vellum_ai-0.14.
|
1655
|
-
vellum_ai-0.14.
|
1656
|
-
vellum_ai-0.14.
|
1657
|
-
vellum_ai-0.14.
|
1653
|
+
vellum_ai-0.14.30.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
1654
|
+
vellum_ai-0.14.30.dist-info/METADATA,sha256=RwawNldGcpTbIALzGk6SBEVUdlVisV1xiZTdYAdfLRs,5484
|
1655
|
+
vellum_ai-0.14.30.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1656
|
+
vellum_ai-0.14.30.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
|
1657
|
+
vellum_ai-0.14.30.dist-info/RECORD,,
|
vellum_cli/pull.py
CHANGED
@@ -9,7 +9,6 @@ from dotenv import load_dotenv
|
|
9
9
|
from pydash import snake_case
|
10
10
|
|
11
11
|
from vellum.client.core.pydantic_utilities import UniversalBaseModel
|
12
|
-
from vellum.utils.uuid import is_valid_uuid
|
13
12
|
from vellum.workflows.vellum_client import create_vellum_client
|
14
13
|
from vellum_cli.config import VellumCliConfig, WorkflowConfig, load_vellum_cli_config
|
15
14
|
from vellum_cli.logger import load_cli_logger
|
@@ -31,6 +30,7 @@ class RunnerConfig(UniversalBaseModel):
|
|
31
30
|
class PullContentsMetadata(UniversalBaseModel):
|
32
31
|
label: Optional[str] = None
|
33
32
|
runner_config: Optional[RunnerConfig] = None
|
33
|
+
deployment_name: Optional[str] = None
|
34
34
|
|
35
35
|
|
36
36
|
def _resolve_workflow_config(
|
@@ -78,13 +78,8 @@ def _resolve_workflow_config(
|
|
78
78
|
pk=workflow_config.workflow_sandbox_id,
|
79
79
|
)
|
80
80
|
elif workflow_deployment:
|
81
|
-
module = (
|
82
|
-
f"workflow_{workflow_deployment.split('-')[0]}"
|
83
|
-
if is_valid_uuid(workflow_deployment)
|
84
|
-
else snake_case(workflow_deployment)
|
85
|
-
)
|
86
81
|
workflow_config = WorkflowConfig(
|
87
|
-
module=
|
82
|
+
module="",
|
88
83
|
)
|
89
84
|
config.workflows.append(workflow_config)
|
90
85
|
return WorkflowConfigResolutionResult(
|
@@ -169,7 +164,8 @@ def pull_command(
|
|
169
164
|
workflow_config.container_image_tag = pull_contents_metadata.runner_config.container_image_tag
|
170
165
|
if workflow_config.container_image_name and not workflow_config.container_image_tag:
|
171
166
|
workflow_config.container_image_tag = "latest"
|
172
|
-
|
167
|
+
if not workflow_config.module and workflow_deployment and pull_contents_metadata.deployment_name:
|
168
|
+
workflow_config.module = snake_case(pull_contents_metadata.deployment_name)
|
173
169
|
if not workflow_config.module and pull_contents_metadata.label:
|
174
170
|
workflow_config.module = snake_case(pull_contents_metadata.label)
|
175
171
|
|
vellum_cli/tests/test_pull.py
CHANGED
@@ -338,7 +338,16 @@ def test_pull__workflow_deployment_with_no_config(vellum_client):
|
|
338
338
|
workflow_deployment = "my-deployment"
|
339
339
|
|
340
340
|
# AND the workflow pull API call returns a zip file
|
341
|
-
vellum_client.workflows.pull.return_value = iter(
|
341
|
+
vellum_client.workflows.pull.return_value = iter(
|
342
|
+
[
|
343
|
+
_zip_file_map(
|
344
|
+
{
|
345
|
+
"workflow.py": "print('hello')",
|
346
|
+
"metadata.json": json.dumps({"deployment_name": workflow_deployment, "label": "Some Label"}),
|
347
|
+
}
|
348
|
+
)
|
349
|
+
]
|
350
|
+
)
|
342
351
|
|
343
352
|
# AND we are currently in a new directory
|
344
353
|
current_dir = os.getcwd()
|
@@ -822,3 +831,47 @@ def test_pull__multiple_instances_of_same_module__keep_when_pulling_another_modu
|
|
822
831
|
with open(lock_json) as f:
|
823
832
|
lock_data = json.load(f)
|
824
833
|
assert len(lock_data["workflows"]) == 3
|
834
|
+
|
835
|
+
|
836
|
+
def test_pull__module_name_from_deployment_name(vellum_client):
|
837
|
+
# GIVEN a workflow deployment
|
838
|
+
workflow_deployment = "test-workflow-deployment-id"
|
839
|
+
|
840
|
+
# AND the workflow pull API call returns a zip file with metadata containing a deployment_name
|
841
|
+
deployment_name = "Test Deployment"
|
842
|
+
vellum_client.workflows.pull.return_value = iter(
|
843
|
+
[
|
844
|
+
_zip_file_map(
|
845
|
+
{
|
846
|
+
"workflow.py": "print('hello')",
|
847
|
+
"metadata.json": json.dumps({"deployment_name": deployment_name, "label": "Some Label"}),
|
848
|
+
}
|
849
|
+
)
|
850
|
+
]
|
851
|
+
)
|
852
|
+
|
853
|
+
# AND we are currently in a new directory
|
854
|
+
current_dir = os.getcwd()
|
855
|
+
temp_dir = tempfile.mkdtemp()
|
856
|
+
os.chdir(temp_dir)
|
857
|
+
|
858
|
+
# WHEN the user runs the pull command with the workflow deployment
|
859
|
+
runner = CliRunner()
|
860
|
+
result = runner.invoke(cli_main, ["workflows", "pull", "--workflow-deployment", workflow_deployment])
|
861
|
+
os.chdir(current_dir)
|
862
|
+
|
863
|
+
# THEN the command returns successfully
|
864
|
+
assert result.exit_code == 0
|
865
|
+
|
866
|
+
# AND the module name is derived from the deployment_name in metadata.json (snake_cased)
|
867
|
+
vellum_lock_json = os.path.join(temp_dir, "vellum.lock.json")
|
868
|
+
assert os.path.exists(vellum_lock_json)
|
869
|
+
with open(vellum_lock_json) as f:
|
870
|
+
lock_data = json.loads(f.read())
|
871
|
+
assert lock_data["workflows"][0]["module"] == "test_deployment"
|
872
|
+
|
873
|
+
# AND the workflow.py file is written to the module directory with the correct name
|
874
|
+
workflow_py = os.path.join(temp_dir, "test_deployment", "workflow.py")
|
875
|
+
assert os.path.exists(workflow_py)
|
876
|
+
with open(workflow_py) as f:
|
877
|
+
assert f.read() == "print('hello')"
|
File without changes
|
File without changes
|
File without changes
|