vellum-ai 0.14.14__py3-none-any.whl → 0.14.16__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/core/pydantic_utilities.py +4 -5
- vellum/client/resources/document_indexes/client.py +0 -55
- vellum/client/types/document_index_read.py +0 -10
- vellum/client/types/logical_operator.py +1 -0
- vellum/plugins/pydantic.py +14 -4
- vellum/workflows/nodes/core/retry_node/tests/test_node.py +23 -0
- vellum/workflows/nodes/displayable/api_node/tests/test_api_node.py +29 -0
- vellum/workflows/nodes/displayable/bases/api_node/node.py +2 -2
- vellum/workflows/vellum_client.py +9 -5
- {vellum_ai-0.14.14.dist-info → vellum_ai-0.14.16.dist-info}/METADATA +2 -2
- {vellum_ai-0.14.14.dist-info → vellum_ai-0.14.16.dist-info}/RECORD +33 -32
- vellum_cli/image_push.py +76 -42
- vellum_cli/tests/test_image_push.py +56 -0
- vellum_ee/workflows/display/nodes/base_node_display.py +8 -5
- vellum_ee/workflows/display/nodes/base_node_vellum_display.py +1 -4
- vellum_ee/workflows/display/nodes/get_node_display_class.py +34 -8
- vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py +55 -1
- vellum_ee/workflows/display/nodes/vellum/retry_node.py +1 -54
- vellum_ee/workflows/display/nodes/vellum/templating_node.py +1 -8
- vellum_ee/workflows/display/nodes/vellum/try_node.py +1 -42
- vellum_ee/workflows/display/tests/test_vellum_workflow_display.py +47 -10
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_adornments_serialization.py +29 -33
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py +91 -106
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_outputs_serialization.py +33 -38
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_ports_serialization.py +197 -145
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_trigger_serialization.py +23 -26
- vellum_ee/workflows/display/utils/vellum.py +3 -0
- vellum_ee/workflows/display/workflows/base_workflow_display.py +3 -6
- vellum_ee/workflows/display/workflows/tests/test_workflow_display.py +52 -0
- {vellum_ai-0.14.14.dist-info → vellum_ai-0.14.16.dist-info}/LICENSE +0 -0
- {vellum_ai-0.14.14.dist-info → vellum_ai-0.14.16.dist-info}/WHEEL +0 -0
- {vellum_ai-0.14.14.dist-info → vellum_ai-0.14.16.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.16",
|
22
22
|
}
|
23
23
|
headers["X_API_KEY"] = self.api_key
|
24
24
|
return headers
|
@@ -133,12 +133,11 @@ class UniversalBaseModel(pydantic.BaseModel):
|
|
133
133
|
#
|
134
134
|
# We'd ideally do the same for Pydantic V2, but it shells out to a library to serialize models
|
135
135
|
# that we have less control over, and this is less intrusive than custom serializers for now.
|
136
|
-
kwargs = {
|
137
|
-
**kwargs,
|
138
|
-
"warnings": False,
|
139
|
-
}
|
140
|
-
|
141
136
|
if IS_PYDANTIC_V2:
|
137
|
+
kwargs = {
|
138
|
+
**kwargs,
|
139
|
+
"warnings": False,
|
140
|
+
}
|
142
141
|
kwargs_with_defaults_exclude_unset: typing.Any = {
|
143
142
|
**kwargs,
|
144
143
|
"by_alias": True,
|
@@ -10,7 +10,6 @@ from json.decoder import JSONDecodeError
|
|
10
10
|
from ...core.api_error import ApiError
|
11
11
|
from ...types.document_index_indexing_config_request import DocumentIndexIndexingConfigRequest
|
12
12
|
from ...types.entity_status import EntityStatus
|
13
|
-
from ...types.environment_enum import EnvironmentEnum
|
14
13
|
from ...types.document_index_read import DocumentIndexRead
|
15
14
|
from ...core.serialization import convert_and_respect_annotation_metadata
|
16
15
|
from ...core.jsonable_encoder import jsonable_encoder
|
@@ -108,7 +107,6 @@ class DocumentIndexesClient:
|
|
108
107
|
name: str,
|
109
108
|
indexing_config: DocumentIndexIndexingConfigRequest,
|
110
109
|
status: typing.Optional[EntityStatus] = OMIT,
|
111
|
-
environment: typing.Optional[EnvironmentEnum] = OMIT,
|
112
110
|
copy_documents_from_index_id: typing.Optional[str] = OMIT,
|
113
111
|
request_options: typing.Optional[RequestOptions] = None,
|
114
112
|
) -> DocumentIndexRead:
|
@@ -131,13 +129,6 @@ class DocumentIndexesClient:
|
|
131
129
|
* `ACTIVE` - Active
|
132
130
|
* `ARCHIVED` - Archived
|
133
131
|
|
134
|
-
environment : typing.Optional[EnvironmentEnum]
|
135
|
-
The environment this document index is used in
|
136
|
-
|
137
|
-
* `DEVELOPMENT` - Development
|
138
|
-
* `STAGING` - Staging
|
139
|
-
* `PRODUCTION` - Production
|
140
|
-
|
141
132
|
copy_documents_from_index_id : typing.Optional[str]
|
142
133
|
Optionally specify the id of a document index from which you'd like to copy and re-index its documents into this newly created index
|
143
134
|
|
@@ -191,7 +182,6 @@ class DocumentIndexesClient:
|
|
191
182
|
"label": label,
|
192
183
|
"name": name,
|
193
184
|
"status": status,
|
194
|
-
"environment": environment,
|
195
185
|
"indexing_config": convert_and_respect_annotation_metadata(
|
196
186
|
object_=indexing_config, annotation=DocumentIndexIndexingConfigRequest, direction="write"
|
197
187
|
),
|
@@ -268,7 +258,6 @@ class DocumentIndexesClient:
|
|
268
258
|
*,
|
269
259
|
label: str,
|
270
260
|
status: typing.Optional[EntityStatus] = OMIT,
|
271
|
-
environment: typing.Optional[EnvironmentEnum] = OMIT,
|
272
261
|
request_options: typing.Optional[RequestOptions] = None,
|
273
262
|
) -> DocumentIndexRead:
|
274
263
|
"""
|
@@ -288,13 +277,6 @@ class DocumentIndexesClient:
|
|
288
277
|
* `ACTIVE` - Active
|
289
278
|
* `ARCHIVED` - Archived
|
290
279
|
|
291
|
-
environment : typing.Optional[EnvironmentEnum]
|
292
|
-
The environment this document index is used in
|
293
|
-
|
294
|
-
* `DEVELOPMENT` - Development
|
295
|
-
* `STAGING` - Staging
|
296
|
-
* `PRODUCTION` - Production
|
297
|
-
|
298
280
|
request_options : typing.Optional[RequestOptions]
|
299
281
|
Request-specific configuration.
|
300
282
|
|
@@ -322,7 +304,6 @@ class DocumentIndexesClient:
|
|
322
304
|
json={
|
323
305
|
"label": label,
|
324
306
|
"status": status,
|
325
|
-
"environment": environment,
|
326
307
|
},
|
327
308
|
request_options=request_options,
|
328
309
|
omit=OMIT,
|
@@ -388,7 +369,6 @@ class DocumentIndexesClient:
|
|
388
369
|
*,
|
389
370
|
label: typing.Optional[str] = OMIT,
|
390
371
|
status: typing.Optional[EntityStatus] = OMIT,
|
391
|
-
environment: typing.Optional[EnvironmentEnum] = OMIT,
|
392
372
|
request_options: typing.Optional[RequestOptions] = None,
|
393
373
|
) -> DocumentIndexRead:
|
394
374
|
"""
|
@@ -408,13 +388,6 @@ class DocumentIndexesClient:
|
|
408
388
|
* `ACTIVE` - Active
|
409
389
|
* `ARCHIVED` - Archived
|
410
390
|
|
411
|
-
environment : typing.Optional[EnvironmentEnum]
|
412
|
-
The environment this document index is used in
|
413
|
-
|
414
|
-
* `DEVELOPMENT` - Development
|
415
|
-
* `STAGING` - Staging
|
416
|
-
* `PRODUCTION` - Production
|
417
|
-
|
418
391
|
request_options : typing.Optional[RequestOptions]
|
419
392
|
Request-specific configuration.
|
420
393
|
|
@@ -441,7 +414,6 @@ class DocumentIndexesClient:
|
|
441
414
|
json={
|
442
415
|
"label": label,
|
443
416
|
"status": status,
|
444
|
-
"environment": environment,
|
445
417
|
},
|
446
418
|
request_options=request_options,
|
447
419
|
omit=OMIT,
|
@@ -651,7 +623,6 @@ class AsyncDocumentIndexesClient:
|
|
651
623
|
name: str,
|
652
624
|
indexing_config: DocumentIndexIndexingConfigRequest,
|
653
625
|
status: typing.Optional[EntityStatus] = OMIT,
|
654
|
-
environment: typing.Optional[EnvironmentEnum] = OMIT,
|
655
626
|
copy_documents_from_index_id: typing.Optional[str] = OMIT,
|
656
627
|
request_options: typing.Optional[RequestOptions] = None,
|
657
628
|
) -> DocumentIndexRead:
|
@@ -674,13 +645,6 @@ class AsyncDocumentIndexesClient:
|
|
674
645
|
* `ACTIVE` - Active
|
675
646
|
* `ARCHIVED` - Archived
|
676
647
|
|
677
|
-
environment : typing.Optional[EnvironmentEnum]
|
678
|
-
The environment this document index is used in
|
679
|
-
|
680
|
-
* `DEVELOPMENT` - Development
|
681
|
-
* `STAGING` - Staging
|
682
|
-
* `PRODUCTION` - Production
|
683
|
-
|
684
648
|
copy_documents_from_index_id : typing.Optional[str]
|
685
649
|
Optionally specify the id of a document index from which you'd like to copy and re-index its documents into this newly created index
|
686
650
|
|
@@ -742,7 +706,6 @@ class AsyncDocumentIndexesClient:
|
|
742
706
|
"label": label,
|
743
707
|
"name": name,
|
744
708
|
"status": status,
|
745
|
-
"environment": environment,
|
746
709
|
"indexing_config": convert_and_respect_annotation_metadata(
|
747
710
|
object_=indexing_config, annotation=DocumentIndexIndexingConfigRequest, direction="write"
|
748
711
|
),
|
@@ -827,7 +790,6 @@ class AsyncDocumentIndexesClient:
|
|
827
790
|
*,
|
828
791
|
label: str,
|
829
792
|
status: typing.Optional[EntityStatus] = OMIT,
|
830
|
-
environment: typing.Optional[EnvironmentEnum] = OMIT,
|
831
793
|
request_options: typing.Optional[RequestOptions] = None,
|
832
794
|
) -> DocumentIndexRead:
|
833
795
|
"""
|
@@ -847,13 +809,6 @@ class AsyncDocumentIndexesClient:
|
|
847
809
|
* `ACTIVE` - Active
|
848
810
|
* `ARCHIVED` - Archived
|
849
811
|
|
850
|
-
environment : typing.Optional[EnvironmentEnum]
|
851
|
-
The environment this document index is used in
|
852
|
-
|
853
|
-
* `DEVELOPMENT` - Development
|
854
|
-
* `STAGING` - Staging
|
855
|
-
* `PRODUCTION` - Production
|
856
|
-
|
857
812
|
request_options : typing.Optional[RequestOptions]
|
858
813
|
Request-specific configuration.
|
859
814
|
|
@@ -889,7 +844,6 @@ class AsyncDocumentIndexesClient:
|
|
889
844
|
json={
|
890
845
|
"label": label,
|
891
846
|
"status": status,
|
892
|
-
"environment": environment,
|
893
847
|
},
|
894
848
|
request_options=request_options,
|
895
849
|
omit=OMIT,
|
@@ -963,7 +917,6 @@ class AsyncDocumentIndexesClient:
|
|
963
917
|
*,
|
964
918
|
label: typing.Optional[str] = OMIT,
|
965
919
|
status: typing.Optional[EntityStatus] = OMIT,
|
966
|
-
environment: typing.Optional[EnvironmentEnum] = OMIT,
|
967
920
|
request_options: typing.Optional[RequestOptions] = None,
|
968
921
|
) -> DocumentIndexRead:
|
969
922
|
"""
|
@@ -983,13 +936,6 @@ class AsyncDocumentIndexesClient:
|
|
983
936
|
* `ACTIVE` - Active
|
984
937
|
* `ARCHIVED` - Archived
|
985
938
|
|
986
|
-
environment : typing.Optional[EnvironmentEnum]
|
987
|
-
The environment this document index is used in
|
988
|
-
|
989
|
-
* `DEVELOPMENT` - Development
|
990
|
-
* `STAGING` - Staging
|
991
|
-
* `PRODUCTION` - Production
|
992
|
-
|
993
939
|
request_options : typing.Optional[RequestOptions]
|
994
940
|
Request-specific configuration.
|
995
941
|
|
@@ -1024,7 +970,6 @@ class AsyncDocumentIndexesClient:
|
|
1024
970
|
json={
|
1025
971
|
"label": label,
|
1026
972
|
"status": status,
|
1027
|
-
"environment": environment,
|
1028
973
|
},
|
1029
974
|
request_options=request_options,
|
1030
975
|
omit=OMIT,
|
@@ -5,7 +5,6 @@ import datetime as dt
|
|
5
5
|
import pydantic
|
6
6
|
import typing
|
7
7
|
from .entity_status import EntityStatus
|
8
|
-
from .environment_enum import EnvironmentEnum
|
9
8
|
from .document_index_indexing_config import DocumentIndexIndexingConfig
|
10
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
11
10
|
|
@@ -31,15 +30,6 @@ class DocumentIndexRead(UniversalBaseModel):
|
|
31
30
|
* `ARCHIVED` - Archived
|
32
31
|
"""
|
33
32
|
|
34
|
-
environment: typing.Optional[EnvironmentEnum] = pydantic.Field(default=None)
|
35
|
-
"""
|
36
|
-
The environment this document index is used in
|
37
|
-
|
38
|
-
* `DEVELOPMENT` - Development
|
39
|
-
* `STAGING` - Staging
|
40
|
-
* `PRODUCTION` - Production
|
41
|
-
"""
|
42
|
-
|
43
33
|
indexing_config: DocumentIndexIndexingConfig
|
44
34
|
|
45
35
|
if IS_PYDANTIC_V2:
|
vellum/plugins/pydantic.py
CHANGED
@@ -1,17 +1,27 @@
|
|
1
1
|
from functools import lru_cache
|
2
|
-
from typing import Any, Dict, Literal, Optional, Tuple, Union
|
2
|
+
from typing import Any, Dict, Literal, NamedTuple, Optional, Tuple, Union
|
3
|
+
from typing_extensions import TypeAlias
|
3
4
|
|
4
5
|
from pydantic.fields import FieldInfo
|
5
6
|
from pydantic.plugin import (
|
6
7
|
PydanticPluginProtocol,
|
7
|
-
SchemaKind,
|
8
|
-
SchemaTypePath,
|
9
8
|
ValidateJsonHandlerProtocol,
|
10
9
|
ValidatePythonHandlerProtocol,
|
11
10
|
ValidateStringsHandlerProtocol,
|
12
11
|
)
|
13
12
|
from pydantic_core import CoreSchema
|
14
13
|
|
14
|
+
# Redefined manually instead of imported from pydantic to support versions < 2.5
|
15
|
+
SchemaKind: TypeAlias = Literal["BaseModel", "TypeAdapter", "dataclass", "create_model", "validate_call"]
|
16
|
+
|
17
|
+
|
18
|
+
# Redefined manually instead of imported from pydantic to support versions < 2.5
|
19
|
+
class SchemaTypePath(NamedTuple):
|
20
|
+
"""Path defining where `schema_type` was defined, or where `TypeAdapter` was called."""
|
21
|
+
|
22
|
+
module: str
|
23
|
+
name: str
|
24
|
+
|
15
25
|
|
16
26
|
@lru_cache(maxsize=1)
|
17
27
|
def import_base_descriptor():
|
@@ -81,7 +91,7 @@ class VellumPydanticPlugin(PydanticPluginProtocol):
|
|
81
91
|
self,
|
82
92
|
schema: CoreSchema,
|
83
93
|
schema_type: Any,
|
84
|
-
schema_type_path: SchemaTypePath,
|
94
|
+
schema_type_path: SchemaTypePath, # type: ignore
|
85
95
|
schema_kind: SchemaKind,
|
86
96
|
config: Any,
|
87
97
|
plugin_settings: Dict[str, Any],
|
@@ -33,6 +33,29 @@ def test_retry_node__retry_on_error_code__successfully_retried():
|
|
33
33
|
assert outputs.execution_count == 3
|
34
34
|
|
35
35
|
|
36
|
+
def test_retry_node__retry_on_error_code_all():
|
37
|
+
# GIVEN a retry node that is configured to retry on all errors
|
38
|
+
@RetryNode.wrap(max_attempts=3)
|
39
|
+
class TestNode(BaseNode):
|
40
|
+
attempt_number = RetryNode.SubworkflowInputs.attempt_number
|
41
|
+
|
42
|
+
class Outputs(BaseOutputs):
|
43
|
+
execution_count: int
|
44
|
+
|
45
|
+
def run(self) -> Outputs:
|
46
|
+
if self.attempt_number < 3:
|
47
|
+
raise NodeException(message="This will be retried", code=WorkflowErrorCode.PROVIDER_ERROR)
|
48
|
+
|
49
|
+
return self.Outputs(execution_count=self.attempt_number)
|
50
|
+
|
51
|
+
# WHEN the node is run and throws a None
|
52
|
+
node = TestNode(state=BaseState())
|
53
|
+
outputs = node.run()
|
54
|
+
|
55
|
+
# THEN the exception is retried
|
56
|
+
assert outputs.execution_count == 3
|
57
|
+
|
58
|
+
|
36
59
|
def test_retry_node__retry_on_error_code__missed():
|
37
60
|
# GIVEN a retry node that is configured to retry on PROVIDER_ERROR
|
38
61
|
@RetryNode.wrap(max_attempts=3, retry_on_error_code=WorkflowErrorCode.PROVIDER_ERROR)
|
@@ -64,3 +64,32 @@ def test_api_node_raises_error_when_api_call_fails(vellum_client):
|
|
64
64
|
|
65
65
|
# AND the API call should have been made
|
66
66
|
assert vellum_client.execute_api.call_count == 1
|
67
|
+
|
68
|
+
|
69
|
+
def test_api_node_defaults_to_get_method(vellum_client):
|
70
|
+
# GIVEN a successful API response
|
71
|
+
vellum_client.execute_api.return_value = ExecuteApiResponse(
|
72
|
+
status_code=200,
|
73
|
+
text='{"status": 200, "data": [1, 2, 3]}',
|
74
|
+
json_={"data": [1, 2, 3]},
|
75
|
+
headers={"X-Response-Header": "bar"},
|
76
|
+
)
|
77
|
+
|
78
|
+
# AND an API node without a method specified
|
79
|
+
class SimpleAPINodeWithoutMethod(APINode):
|
80
|
+
authorization_type = AuthorizationType.BEARER_TOKEN
|
81
|
+
url = "https://api.vellum.ai"
|
82
|
+
headers = {
|
83
|
+
"X-Test-Header": "foo",
|
84
|
+
}
|
85
|
+
bearer_token_value = VellumSecret(name="secret")
|
86
|
+
|
87
|
+
node = SimpleAPINodeWithoutMethod()
|
88
|
+
|
89
|
+
# WHEN we run the node
|
90
|
+
node.run()
|
91
|
+
|
92
|
+
# THEN the API call should be made with GET method
|
93
|
+
assert vellum_client.execute_api.call_count == 1
|
94
|
+
method = vellum_client.execute_api.call_args.kwargs["method"]
|
95
|
+
assert method == APIRequestMethod.GET.value
|
@@ -29,7 +29,7 @@ class BaseAPINode(BaseNode, Generic[StateType]):
|
|
29
29
|
merge_behavior = MergeBehavior.AWAIT_ANY
|
30
30
|
|
31
31
|
url: str
|
32
|
-
method: APIRequestMethod
|
32
|
+
method: Optional[APIRequestMethod] = APIRequestMethod.GET
|
33
33
|
data: Optional[str] = None
|
34
34
|
json: Optional[Json] = None
|
35
35
|
headers: Optional[Dict[str, Union[str, VellumSecret]]] = None
|
@@ -45,8 +45,8 @@ class BaseAPINode(BaseNode, Generic[StateType]):
|
|
45
45
|
|
46
46
|
def _run(
|
47
47
|
self,
|
48
|
-
method: APIRequestMethod,
|
49
48
|
url: str,
|
49
|
+
method: Optional[APIRequestMethod] = APIRequestMethod.GET,
|
50
50
|
data: Optional[Union[str, Any]] = None,
|
51
51
|
json: Any = None,
|
52
52
|
headers: Any = None,
|
@@ -10,9 +10,13 @@ def create_vellum_client(api_key: Optional[str] = None) -> Vellum:
|
|
10
10
|
|
11
11
|
return Vellum(
|
12
12
|
api_key=api_key,
|
13
|
-
environment=
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
environment=create_vellum_environment(),
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
def create_vellum_environment() -> VellumEnvironment:
|
18
|
+
return VellumEnvironment(
|
19
|
+
default=os.getenv("VELLUM_DEFAULT_API_URL", os.getenv("VELLUM_API_URL", "https://api.vellum.ai")),
|
20
|
+
documents=os.getenv("VELLUM_DOCUMENTS_API_URL", os.getenv("VELLUM_API_URL", "https://documents.vellum.ai")),
|
21
|
+
predict=os.getenv("VELLUM_PREDICT_API_URL", os.getenv("VELLUM_API_URL", "https://predict.vellum.ai")),
|
18
22
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: vellum-ai
|
3
|
-
Version: 0.14.
|
3
|
+
Version: 0.14.16
|
4
4
|
Summary:
|
5
5
|
License: MIT
|
6
6
|
Requires-Python: >=3.9,<4.0
|
@@ -33,7 +33,7 @@ Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
|
|
33
33
|
Requires-Dist: pydash (==7.0.6)
|
34
34
|
Requires-Dist: python-dotenv (==1.0.1)
|
35
35
|
Requires-Dist: pytz (==2025.1)
|
36
|
-
Requires-Dist: pyyaml (==6.0.
|
36
|
+
Requires-Dist: pyyaml (==6.0.2)
|
37
37
|
Requires-Dist: requests (==2.32.3)
|
38
38
|
Requires-Dist: tomli (==2.0.2)
|
39
39
|
Requires-Dist: typing_extensions (>=4.0.0)
|
@@ -3,7 +3,7 @@ vellum_cli/README.md,sha256=2NudRoLzWxNKqnuVy1JuQ7DerIaxWGYkrH8kMd-asIE,90
|
|
3
3
|
vellum_cli/__init__.py,sha256=7aO9XFnaEVRiVshn86cFudebFUccT-gV8xIARJWqKYo,12257
|
4
4
|
vellum_cli/aliased_group.py,sha256=ugW498j0yv4ALJ8vS9MsO7ctDW7Jlir9j6nE_uHAP8c,3363
|
5
5
|
vellum_cli/config.py,sha256=aKnhvM5B8QdPA4cQC5Sqg7ImP-vNcVdSkZmk_OBpQTw,9309
|
6
|
-
vellum_cli/image_push.py,sha256=
|
6
|
+
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
|
@@ -12,6 +12,7 @@ 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
|
14
14
|
vellum_cli/tests/test_config.py,sha256=uvKGDc8BoVyT9_H0Z-g8469zVxomn6Oi3Zj-vK7O_wU,2631
|
15
|
+
vellum_cli/tests/test_image_push.py,sha256=i3lJuW8nFRwL1M1OF6752IZYvGAFgKmkB2hd_rYlsmg,2028
|
15
16
|
vellum_cli/tests/test_init.py,sha256=8UOc_ThfouR4ja5cCl_URuLk7ohr9JXfCnG4yka1OUQ,18754
|
16
17
|
vellum_cli/tests/test_main.py,sha256=qDZG-aQauPwBwM6A2DIu1494n47v3pL28XakTbLGZ-k,272
|
17
18
|
vellum_cli/tests/test_ping.py,sha256=QtbhYKMYn1DFnDyBij2mkQO32j9KOpZ5Pf0yek7k_Ao,1284
|
@@ -23,16 +24,16 @@ vellum_ee/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
23
24
|
vellum_ee/workflows/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
25
|
vellum_ee/workflows/display/base.py,sha256=ak29FIsawhaFa9_paZUHThlZRFJ1xB486JWKuSt1PYY,1965
|
25
26
|
vellum_ee/workflows/display/nodes/__init__.py,sha256=436iSAh_Ex5tC68oEYvNgPu05ZVIAVXnS4PKGrQeZ0Y,321
|
26
|
-
vellum_ee/workflows/display/nodes/base_node_display.py,sha256=
|
27
|
-
vellum_ee/workflows/display/nodes/base_node_vellum_display.py,sha256=
|
28
|
-
vellum_ee/workflows/display/nodes/get_node_display_class.py,sha256=
|
27
|
+
vellum_ee/workflows/display/nodes/base_node_display.py,sha256=pYmIdmC2dxLyRlZEBlgARIJMLcBX3GxZPpWZISv5Bbg,17170
|
28
|
+
vellum_ee/workflows/display/nodes/base_node_vellum_display.py,sha256=ZLKQ8Xa3h9nGkj4t4V_7OeU7CBFWY3gXB9CkaCLOhEk,2699
|
29
|
+
vellum_ee/workflows/display/nodes/get_node_display_class.py,sha256=RWCGm29-Tabi-qgVEIi_sdTWBv4bEzxAgwAoYI5T-Cc,2566
|
29
30
|
vellum_ee/workflows/display/nodes/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
31
|
vellum_ee/workflows/display/nodes/tests/test_base_node_display.py,sha256=QqR3Ly0RNrXwOeLdW5nERDFt0gRPf76n1bPES6o5UN4,1093
|
31
32
|
vellum_ee/workflows/display/nodes/types.py,sha256=St1BB6no528OyELGiyRabWao0GGw6mLhstQAvEACbGk,247
|
32
33
|
vellum_ee/workflows/display/nodes/utils.py,sha256=sloya5TpXsnot1HURc9L51INwflRqUzHxRVnCS9Cd-4,973
|
33
34
|
vellum_ee/workflows/display/nodes/vellum/__init__.py,sha256=nUIgH2s0-7IbQRNrBhLPyRNe8YIrx3Yo9HeeW-aXXFk,1668
|
34
35
|
vellum_ee/workflows/display/nodes/vellum/api_node.py,sha256=hoV-cUtS6H9kmRQXHd2py95GRWI_dAnnaPwvlNBkDOQ,8571
|
35
|
-
vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py,sha256=
|
36
|
+
vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py,sha256=t-KSaai6cXRLkNkzCvEbM5SHh03B9fqPwVTH-Gei_-0,4419
|
36
37
|
vellum_ee/workflows/display/nodes/vellum/code_execution_node.py,sha256=z00Z3L0d4PsUQo4S8FRDTtOFLtjdi17TJbatNVF4nM8,4288
|
37
38
|
vellum_ee/workflows/display/nodes/vellum/conditional_node.py,sha256=ybLIa4uclqVIy3VAQvI1ivg2tnK5Ug_1R5a69DFqL7E,11104
|
38
39
|
vellum_ee/workflows/display/nodes/vellum/error_node.py,sha256=I1Jkp2htRINJATtv1e-zs9BrReFX842djpiVgBPHDYg,2186
|
@@ -44,28 +45,28 @@ vellum_ee/workflows/display/nodes/vellum/map_node.py,sha256=8CPnn06HIBxBOiECevUf
|
|
44
45
|
vellum_ee/workflows/display/nodes/vellum/merge_node.py,sha256=HkNMgdQELiON42jdO-xDLmqrEKdGx1RVqrz2DXNTLS8,3239
|
45
46
|
vellum_ee/workflows/display/nodes/vellum/note_node.py,sha256=TMb8txILu2uWjzoxaghjgjlzeBAgzn4vkP_8zSh2qoE,1151
|
46
47
|
vellum_ee/workflows/display/nodes/vellum/prompt_deployment_node.py,sha256=LFjLUrH6sJ4czPnExdRqFr0PB_yKBMLXLvK5GAzIAgc,3273
|
47
|
-
vellum_ee/workflows/display/nodes/vellum/retry_node.py,sha256
|
48
|
+
vellum_ee/workflows/display/nodes/vellum/retry_node.py,sha256=LgokATi7sSS38Fil-XjqoR4t7AMOJ-GzXRw6p606Svo,3397
|
48
49
|
vellum_ee/workflows/display/nodes/vellum/search_node.py,sha256=TxcAGZDl_hvJ7Y1hUi9YVEVrj9Ie0hKkASdpfRL4_cs,9227
|
49
50
|
vellum_ee/workflows/display/nodes/vellum/subworkflow_deployment_node.py,sha256=62baAElKoRKIoba0lLhnrXGWWx96B73VxKGxh7BaIxc,2612
|
50
|
-
vellum_ee/workflows/display/nodes/vellum/templating_node.py,sha256=
|
51
|
+
vellum_ee/workflows/display/nodes/vellum/templating_node.py,sha256=wP-ZAZq6ZmkS1fj0WkFtRkYqi8c6MWKLh4CEw8JD9mg,3207
|
51
52
|
vellum_ee/workflows/display/nodes/vellum/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
53
|
vellum_ee/workflows/display/nodes/vellum/tests/test_error_node.py,sha256=ulrpoYUW-5kIxfG4Lf5F2p0k_EoYKhmahEbF3P_eruM,1648
|
53
54
|
vellum_ee/workflows/display/nodes/vellum/tests/test_prompt_node.py,sha256=bg9INsXiWfyK047u8TD1oEOFYrqDq8GC7Hvgz69n7BE,1988
|
54
55
|
vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=NuIw8Yb42KUdoGi3Ur8_7VPg50IC4hNrwAkCociwqNk,2091
|
55
56
|
vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=mtzB8LJlFCHVFM4H5AanLp29gQfaVmnN4A4iaRGJHoI,2427
|
56
57
|
vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=4YUaTeD_OWF-UaPMyOTBTu9skGC1jgSHlAYrzbH7Z04,5039
|
57
|
-
vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=
|
58
|
+
vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=0ipBZMYm521tuwefQFgHOvTyTgiWVTkzxpQtnnmOAI0,4203
|
58
59
|
vellum_ee/workflows/display/nodes/vellum/utils.py,sha256=F_0BrlSszllK_BhryPbojIleLq2dGXOfQD1rVp3fNFg,4733
|
59
60
|
vellum_ee/workflows/display/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
|
-
vellum_ee/workflows/display/tests/test_vellum_workflow_display.py,sha256=
|
61
|
+
vellum_ee/workflows/display/tests/test_vellum_workflow_display.py,sha256=VD-4USiRlCcdC3Qe9WfdkxwFdircai0vqvuZCbELR84,9556
|
61
62
|
vellum_ee/workflows/display/tests/workflow_serialization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
63
|
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
64
|
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py,sha256=A1-tIpC5KIKG9JA_rkd1nLS8zUG3Kb4QiVdvb3boFxE,2509
|
64
|
-
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_adornments_serialization.py,sha256=
|
65
|
-
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py,sha256=
|
66
|
-
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_outputs_serialization.py,sha256
|
67
|
-
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_ports_serialization.py,sha256=
|
68
|
-
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_trigger_serialization.py,sha256=
|
65
|
+
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_adornments_serialization.py,sha256=2ZDTmpiU2CcZe4ukxoQ79SJx8V8kDRQHgUxP5Vtesus,15605
|
66
|
+
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py,sha256=lScpUiz8fvUmJK18Cpygs9xQrfHQlkSIlmxapGYTS0g,18770
|
67
|
+
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_outputs_serialization.py,sha256=KgxSN8L5AWPL8EpQfSZiTqK428nAIElcWrV-sR17528,6456
|
68
|
+
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_ports_serialization.py,sha256=yS8GpjbH0objjcNYK73j8rDHbhqinIbG7CcoNjnolBg,40611
|
69
|
+
vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_trigger_serialization.py,sha256=_-ADur28OkVy4YEgMHkkVYqMbS1j3GcOtX9MTYmmvf0,4632
|
69
70
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_api_node_serialization.py,sha256=IRazH2QR6F8RGqNemEnHueyj5DtEa6rFTYhT16S4jI8,15917
|
70
71
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_code_execution_node_serialization.py,sha256=V__y7uu-dy6TJjPeu4UDvaoO2yYwBRbPiW9uJdzWRx4,29828
|
71
72
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_conditional_node_serialization.py,sha256=R8DW1DUb0DOSLtnF2E1HaCTmtpG-ski0LfcM2WeLVNo,47672
|
@@ -87,12 +88,12 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_n
|
|
87
88
|
vellum_ee/workflows/display/types.py,sha256=ixfmcQn51Rhsm4_0hWfG0_WpzLE89ZrDZpeYBklsP1Q,2592
|
88
89
|
vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
90
|
vellum_ee/workflows/display/utils/expressions.py,sha256=9FpOslDI-RCR5m4TgAu9KCHh4aTVnh7CHR2ykyMUDw0,1151
|
90
|
-
vellum_ee/workflows/display/utils/vellum.py,sha256=
|
91
|
+
vellum_ee/workflows/display/utils/vellum.py,sha256=EVPQUSsZ3OIeLTEbV6LHPor37t9fnj9kJxDqP4PmTLQ,8234
|
91
92
|
vellum_ee/workflows/display/vellum.py,sha256=7mqQaKZPPrLMcXSAQkPIxCy5x8HkKs5PbCu3GRaC2o8,8507
|
92
93
|
vellum_ee/workflows/display/workflows/__init__.py,sha256=kapXsC67VJcgSuiBMa86FdePG5A9kMB5Pi4Uy1O2ob4,207
|
93
|
-
vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=
|
94
|
+
vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=QKMSmV--UoE8L7pYmKvZqtaatygrxmSm9PDSH71Yr0Y,19937
|
94
95
|
vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py,sha256=kp0u8LN_2IwshLrhMImhpZx1hRyAcD5gXY-kDuuaGMQ,1269
|
95
|
-
vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=
|
96
|
+
vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=TzLziIh1fJ429LRUYoe88yd_HZflEQAw60TW8PAvvnk,6917
|
96
97
|
vellum_ee/workflows/display/workflows/vellum_workflow_display.py,sha256=mbAzCpswOek34ITeTkesbVreCXpulj4NFjIg3RcdVZ8,18243
|
97
98
|
vellum_ee/workflows/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
99
|
vellum_ee/workflows/server/virtual_file_loader.py,sha256=X_DdNK7MfyOjKWekk6YQpOSCT6klKcdjT6nVJcBH1sM,1481
|
@@ -123,12 +124,12 @@ vellum/client/README.md,sha256=JkCJjmMZl4jrPj46pkmL9dpK4gSzQQmP5I7z4aME4LY,4749
|
|
123
124
|
vellum/client/__init__.py,sha256=tKtdM1_GqmGq1gpi9ydWD_T-MM7fPn8QdHh8ww19cNI,117564
|
124
125
|
vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
125
126
|
vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
126
|
-
vellum/client/core/client_wrapper.py,sha256=
|
127
|
+
vellum/client/core/client_wrapper.py,sha256=0XmYpWbtLyEE04hBfhFVCncXeuj0BKKSGnpz2iz-nyA,1869
|
127
128
|
vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
128
129
|
vellum/client/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
|
129
130
|
vellum/client/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
|
130
131
|
vellum/client/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
|
131
|
-
vellum/client/core/pydantic_utilities.py,sha256=
|
132
|
+
vellum/client/core/pydantic_utilities.py,sha256=6ev3gtER-hjlq7PcPL9XT_YSCdgyCE8ZKHJ9Uc-gHIg,12071
|
132
133
|
vellum/client/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
133
134
|
vellum/client/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
134
135
|
vellum/client/core/request_options.py,sha256=5cCGt5AEGgtP5xifDl4oVQUmSjlIA8FmRItAlJawM18,1417
|
@@ -150,7 +151,7 @@ vellum/client/resources/deployments/types/__init__.py,sha256=29GVdoLOJsADSSSqZwb
|
|
150
151
|
vellum/client/resources/deployments/types/deployments_list_request_status.py,sha256=CxlQD16KZXme7x31YYCe_3aAgEueutDTeJo5A4Au-aU,174
|
151
152
|
vellum/client/resources/deployments/types/list_deployment_release_tags_request_source.py,sha256=hRGgWMYZL9uKCmD_2dU8-u9RCPUUGItpNn1tUY-NXKY,180
|
152
153
|
vellum/client/resources/document_indexes/__init__.py,sha256=YpOl_9IV7xOlH4OmusQxtAJB11kxQfCSMDyT1_UD0oM,165
|
153
|
-
vellum/client/resources/document_indexes/client.py,sha256=
|
154
|
+
vellum/client/resources/document_indexes/client.py,sha256=UcznU0NyvdNBpV4UCsTqG3Ejj6w4dK4UBmgrTWzZFtw,35438
|
154
155
|
vellum/client/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
|
155
156
|
vellum/client/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=sfUEB0cvOSmlE2iITqnMVyHv05Zy2fWP4QjCIYqMg0M,178
|
156
157
|
vellum/client/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -266,7 +267,7 @@ vellum/client/types/document_index_chunking.py,sha256=TU0Y7z0Xacm3dhzEDuDIG3ZKJC
|
|
266
267
|
vellum/client/types/document_index_chunking_request.py,sha256=g9BKCsHKg5kzjG7YYeMNQ_5R8TXLeSgumJlMXoSfBcs,435
|
267
268
|
vellum/client/types/document_index_indexing_config.py,sha256=xL1pCzUOkw5sSie1OrBpasE3bVnv0UyZBn7uZztbhbs,781
|
268
269
|
vellum/client/types/document_index_indexing_config_request.py,sha256=Wt-ys1o_acHNyLU0c1laG2PVT7rgCfwO54f5nudAxk4,832
|
269
|
-
vellum/client/types/document_index_read.py,sha256=
|
270
|
+
vellum/client/types/document_index_read.py,sha256=ePngiRszr65HLl9D0_FUdhAdMe84nRwyM3cKbr8rFpg,1177
|
270
271
|
vellum/client/types/document_processing_state.py,sha256=ISlurj7jQzwHzxPzDZTqeAIgSIIGMBBPgcOSoe04pTU,211
|
271
272
|
vellum/client/types/document_prompt_block.py,sha256=sgFxN48PILFuuF2KUIwks6PbJ3XH6sCE_8ydLEE_doU,1019
|
272
273
|
vellum/client/types/document_read.py,sha256=6nwEvVvVe-6y2vtPNYB7KtcFoaydH2ow-WhCmCAvMQ8,1713
|
@@ -367,7 +368,7 @@ vellum/client/types/json_input.py,sha256=ZUA2O9YueBCx0IMMdB8uYNSWJiSDZxMm5ogwbwC
|
|
367
368
|
vellum/client/types/json_input_request.py,sha256=x5sA-VXxF4QH-98xRcIKPZhsMVbnJNUQofiUQqyfGk4,768
|
368
369
|
vellum/client/types/json_vellum_value.py,sha256=8irlw6NkRRVafysfTc1Q5BFFhRrWJYzdwrDYTdJK4JY,689
|
369
370
|
vellum/client/types/json_vellum_value_request.py,sha256=IUlkdwFGgBeLl9sCmAJhoaxomWiEMpWgRcLa_WnlK8g,696
|
370
|
-
vellum/client/types/logical_operator.py,sha256=
|
371
|
+
vellum/client/types/logical_operator.py,sha256=_3-gBnfsz4g5-sw5_ThRuS0NdNLQ2n2vV2Dl1RqbXe4,617
|
371
372
|
vellum/client/types/logprobs_enum.py,sha256=D_458cZX2CAb6dX_ovrQ6HARlJkYcZRadKwsi1Cr-JM,151
|
372
373
|
vellum/client/types/map_node_result.py,sha256=e2YqEP-aKig2TbbZIlfn5LCeVEVhEJJBR7o7xTBKXaY,752
|
373
374
|
vellum/client/types/map_node_result_data.py,sha256=3xJXC1JrS9lo3-3_u1S79sYwLxMknNntDyspN24vQzY,699
|
@@ -719,7 +720,7 @@ vellum/evaluations/utils/env.py,sha256=Xj_nxsoU5ox06EOTjRopR4lrigQI6Le6qbWGltYoE
|
|
719
720
|
vellum/evaluations/utils/exceptions.py,sha256=dXMAkzqbHV_AP5FjjbegPlfUE0zQDlpA3qOsoOJUxfg,49
|
720
721
|
vellum/evaluations/utils/paginator.py,sha256=rEED_BJAXAM6tM1yMwHePNzszjq_tTq4NbQvi1jWQ_Q,697
|
721
722
|
vellum/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
722
|
-
vellum/plugins/pydantic.py,sha256=
|
723
|
+
vellum/plugins/pydantic.py,sha256=XpQQs_o8DQY_5gFFDzJzaXahUqR_l5TEI4b5ZoH9ob8,3528
|
723
724
|
vellum/plugins/utils.py,sha256=cPmxE9R2CK1bki2jKE8rB-G9zMf2pzHjSPDHFPXwd3Q,878
|
724
725
|
vellum/plugins/vellum_mypy.py,sha256=QTuMSq6PiZW1dyTUZ5Bf1d4XkgFj0TKAgZLP8f4UgL4,27914
|
725
726
|
vellum/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1380,7 +1381,7 @@ vellum/workflows/nodes/core/map_node/tests/test_node.py,sha256=uMR0AyIFn539LqTKH
|
|
1380
1381
|
vellum/workflows/nodes/core/retry_node/__init__.py,sha256=lN2bIy5a3Uzhs_FYCrooADyYU6ZGShtvLKFWpelwPvo,60
|
1381
1382
|
vellum/workflows/nodes/core/retry_node/node.py,sha256=Vt3fx4G-DRIb9a-IHIUfaAclgfbzOPEQVkcumwhl9HE,4355
|
1382
1383
|
vellum/workflows/nodes/core/retry_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1383
|
-
vellum/workflows/nodes/core/retry_node/tests/test_node.py,sha256=
|
1384
|
+
vellum/workflows/nodes/core/retry_node/tests/test_node.py,sha256=fNgDufkIsrTC-6ftvogqSpWhqqBj9iNESdfK19B1Yx0,5159
|
1384
1385
|
vellum/workflows/nodes/core/templating_node/__init__.py,sha256=GmyuYo81_A1_Bz6id69ozVFS6FKiuDsZTiA3I6MaL2U,70
|
1385
1386
|
vellum/workflows/nodes/core/templating_node/node.py,sha256=-JIqLUv6Xpx_LTVZt7whQ2X2VatgHDdTxjMrz64luEs,3721
|
1386
1387
|
vellum/workflows/nodes/core/templating_node/tests/test_templating_node.py,sha256=MHofz-BwAgt7EXkab8VIyacYznDEIJ7Er7MJUaxNQQo,9614
|
@@ -1392,10 +1393,10 @@ vellum/workflows/nodes/displayable/__init__.py,sha256=6F_4DlSwvHuilWnIalp8iDjjDX
|
|
1392
1393
|
vellum/workflows/nodes/displayable/api_node/__init__.py,sha256=MoxdQSnidIj1Nf_d-hTxlOxcZXaZnsWFDbE-PkTK24o,56
|
1393
1394
|
vellum/workflows/nodes/displayable/api_node/node.py,sha256=QdpsyGVxo5PcN8nwGZpcpW_YMKHr3_VvmbK1BlrdOFk,2547
|
1394
1395
|
vellum/workflows/nodes/displayable/api_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1395
|
-
vellum/workflows/nodes/displayable/api_node/tests/test_api_node.py,sha256=
|
1396
|
+
vellum/workflows/nodes/displayable/api_node/tests/test_api_node.py,sha256=fiskhfcI4c6CxFlbSWb1JKsuq-98zAeUWOExc848ALw,3130
|
1396
1397
|
vellum/workflows/nodes/displayable/bases/__init__.py,sha256=0mWIx3qUrzllV7jqt7wN03vWGMuI1WrrLZeMLT2Cl2c,304
|
1397
1398
|
vellum/workflows/nodes/displayable/bases/api_node/__init__.py,sha256=1jwx4WC358CLA1jgzl_UD-rZmdMm2v9Mps39ndwCD7U,64
|
1398
|
-
vellum/workflows/nodes/displayable/bases/api_node/node.py,sha256
|
1399
|
+
vellum/workflows/nodes/displayable/bases/api_node/node.py,sha256=Ev_So7D_4Qfvl2_E8veVfxAxWfbJIA2ujyW5istLg5I,4066
|
1399
1400
|
vellum/workflows/nodes/displayable/bases/base_prompt_node/__init__.py,sha256=Org3xTvgp1pA0uUXFfnJr29D3HzCey2lEdYF4zbIUgo,70
|
1400
1401
|
vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py,sha256=nvhoWb8EyRlgtyotYp-wh194n30yQP81UnOH_a8FghY,3140
|
1401
1402
|
vellum/workflows/nodes/displayable/bases/inline_prompt_node/__init__.py,sha256=Hl35IAoepRpE-j4cALaXVJIYTYOF3qszyVbxTj4kS1s,82
|
@@ -1505,15 +1506,15 @@ vellum/workflows/utils/tests/test_uuids.py,sha256=i77ABQ0M3S-aFLzDXHJq_yr5FPkJEW
|
|
1505
1506
|
vellum/workflows/utils/tests/test_vellum_variables.py,sha256=6H-BpmbIEmVRO75QQ3Rfy4bEUMMP2qwGzx2Gp1uXbfw,879
|
1506
1507
|
vellum/workflows/utils/uuids.py,sha256=DFzPv9RCvsKhvdTEIQyfSek2A31D6S_QcmeLPbgrgTY,739
|
1507
1508
|
vellum/workflows/utils/vellum_variables.py,sha256=fC2aSLvlS31D15dOWu43LBRR0QsgUKNXBiCUvvaLXSs,3231
|
1508
|
-
vellum/workflows/vellum_client.py,sha256=
|
1509
|
+
vellum/workflows/vellum_client.py,sha256=GxOy3dX6A04xiY69vPv1S4YGuQ_TMxwHi6WRMimQBBE,762
|
1509
1510
|
vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
|
1510
1511
|
vellum/workflows/workflows/base.py,sha256=TSS2BHC8LAi-N5GdEa75BeChwzwTzL7yldFnTlLINro,22665
|
1511
1512
|
vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
|
1512
1513
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1513
1514
|
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=NRteiICyJvDM5zrtUfq2fZoXcGQVaWC9xmNlLLVW0cU,7979
|
1514
1515
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
1515
|
-
vellum_ai-0.14.
|
1516
|
-
vellum_ai-0.14.
|
1517
|
-
vellum_ai-0.14.
|
1518
|
-
vellum_ai-0.14.
|
1519
|
-
vellum_ai-0.14.
|
1516
|
+
vellum_ai-0.14.16.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
1517
|
+
vellum_ai-0.14.16.dist-info/METADATA,sha256=yxCtedPJiwtcov54unW-4jIJErky44J7Mhs3BEedjW8,5408
|
1518
|
+
vellum_ai-0.14.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1519
|
+
vellum_ai-0.14.16.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
|
1520
|
+
vellum_ai-0.14.16.dist-info/RECORD,,
|