vellum-ai 0.12.16__py3-none-any.whl → 0.13.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- vellum/__init__.py +10 -22
- vellum/client/__init__.py +8 -0
- vellum/client/core/client_wrapper.py +1 -1
- vellum/client/resources/__init__.py +4 -0
- vellum/client/resources/organizations/__init__.py +2 -0
- vellum/client/resources/organizations/client.py +116 -0
- vellum/client/resources/workspaces/__init__.py +2 -0
- vellum/client/resources/workspaces/client.py +114 -0
- vellum/client/types/__init__.py +6 -22
- vellum/client/types/new_member_join_behavior_enum.py +8 -0
- vellum/client/types/{function_call_variable_value.py → organization_read.py} +6 -4
- vellum/client/types/workflow_execution_workflow_result_event.py +0 -2
- vellum/client/types/workflow_result_event.py +0 -2
- vellum/client/types/workflow_result_event_output_data_array.py +4 -4
- vellum/client/types/{string_variable_value.py → workspace_read.py} +12 -5
- vellum/plugins/vellum_mypy.py +80 -11
- vellum/{types/json_variable_value.py → resources/organizations/__init__.py} +1 -1
- vellum/resources/organizations/client.py +3 -0
- vellum/{types/image_variable_value.py → resources/workspaces/__init__.py} +1 -1
- vellum/{types/array_variable_value.py → resources/workspaces/client.py} +1 -1
- vellum/types/{array_variable_value_item.py → new_member_join_behavior_enum.py} +1 -1
- vellum/types/{audio_variable_value.py → organization_read.py} +1 -1
- vellum/types/{error_variable_value.py → workspace_read.py} +1 -1
- vellum/utils/templating/render.py +3 -0
- vellum/workflows/nodes/bases/base.py +4 -0
- vellum/workflows/nodes/core/retry_node/node.py +24 -3
- vellum/workflows/nodes/core/retry_node/tests/test_node.py +40 -0
- vellum/workflows/nodes/core/templating_node/tests/test_templating_node.py +20 -1
- vellum/workflows/nodes/displayable/api_node/node.py +3 -3
- vellum/workflows/workflows/base.py +0 -32
- {vellum_ai-0.12.16.dist-info → vellum_ai-0.13.0.dist-info}/METADATA +1 -1
- {vellum_ai-0.12.16.dist-info → vellum_ai-0.13.0.dist-info}/RECORD +79 -86
- vellum_cli/pull.py +7 -4
- vellum_cli/tests/conftest.py +4 -2
- vellum_cli/tests/test_push.py +13 -5
- vellum_ee/workflows/display/nodes/base_node_display.py +17 -10
- vellum_ee/workflows/display/nodes/vellum/api_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/base_node.py +97 -2
- vellum_ee/workflows/display/nodes/vellum/code_execution_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/conditional_node.py +5 -62
- vellum_ee/workflows/display/nodes/vellum/error_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/final_output_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/guardrail_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/inline_subworkflow_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/map_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/merge_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/note_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/prompt_deployment_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/search_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/subworkflow_deployment_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/templating_node.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/utils.py +63 -0
- vellum_ee/workflows/display/tests/test_vellum_workflow_display.py +2 -5
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py +18 -2
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_ports_serialization.py +355 -0
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_trigger_serialization.py +37 -22
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_api_node_serialization.py +12 -56
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_code_execution_node_serialization.py +43 -93
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_conditional_node_serialization.py +31 -151
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_error_node_serialization.py +8 -26
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_generic_node_serialization.py +4 -15
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_guardrail_node_serialization.py +9 -44
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_inline_subworkflow_serialization.py +19 -101
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_map_node_serialization.py +19 -73
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_merge_node_serialization.py +9 -44
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_prompt_deployment_serialization.py +9 -44
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_search_node_serialization.py +8 -6
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py +11 -58
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_node_serialization.py +8 -11
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py +7 -30
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py +2 -11
- vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py +9 -44
- vellum_ee/workflows/display/vellum.py +2 -7
- vellum_ee/workflows/display/workflows/vellum_workflow_display.py +5 -9
- vellum_ee/workflows/server/virtual_file_loader.py +3 -3
- vellum/client/types/array_variable_value.py +0 -27
- vellum/client/types/array_variable_value_item.py +0 -29
- vellum/client/types/audio_variable_value.py +0 -25
- vellum/client/types/chat_history_variable_value.py +0 -21
- vellum/client/types/error_variable_value.py +0 -21
- vellum/client/types/image_variable_value.py +0 -25
- vellum/client/types/json_variable_value.py +0 -20
- vellum/client/types/number_variable_value.py +0 -20
- vellum/client/types/search_results_variable_value.py +0 -21
- vellum/types/chat_history_variable_value.py +0 -3
- vellum/types/function_call_variable_value.py +0 -3
- vellum/types/number_variable_value.py +0 -3
- vellum/types/search_results_variable_value.py +0 -3
- vellum/types/string_variable_value.py +0 -3
- {vellum_ai-0.12.16.dist-info → vellum_ai-0.13.0.dist-info}/LICENSE +0 -0
- {vellum_ai-0.12.16.dist-info → vellum_ai-0.13.0.dist-info}/WHEEL +0 -0
- {vellum_ai-0.12.16.dist-info → vellum_ai-0.13.0.dist-info}/entry_points.txt +0 -0
vellum_cli/pull.py
CHANGED
@@ -173,10 +173,13 @@ def pull_command(
|
|
173
173
|
target.write(content)
|
174
174
|
|
175
175
|
if metadata_json:
|
176
|
-
|
177
|
-
|
178
|
-
if
|
179
|
-
workflow_config.
|
176
|
+
runner_config = metadata_json.get("runner_config")
|
177
|
+
|
178
|
+
if runner_config:
|
179
|
+
workflow_config.container_image_name = runner_config.get("container_image_name")
|
180
|
+
workflow_config.container_image_tag = runner_config.get("container_image_tag")
|
181
|
+
if workflow_config.container_image_name and not workflow_config.container_image_tag:
|
182
|
+
workflow_config.container_image_tag = "latest"
|
180
183
|
|
181
184
|
if include_json:
|
182
185
|
logger.warning(
|
vellum_cli/tests/conftest.py
CHANGED
@@ -18,11 +18,13 @@ class MockModuleResult:
|
|
18
18
|
|
19
19
|
|
20
20
|
@pytest.fixture
|
21
|
-
def mock_module() -> Generator[MockModuleResult, None, None]:
|
21
|
+
def mock_module(request) -> Generator[MockModuleResult, None, None]:
|
22
22
|
current_dir = os.getcwd()
|
23
23
|
temp_dir = tempfile.mkdtemp()
|
24
24
|
os.chdir(temp_dir)
|
25
|
-
|
25
|
+
|
26
|
+
# Use the test name to create a unique module path
|
27
|
+
module = f"examples.mock.{request.node.name}"
|
26
28
|
workflow_sandbox_id = str(uuid4())
|
27
29
|
|
28
30
|
def set_pyproject_toml(vellum_config: Dict[str, Any]) -> None:
|
vellum_cli/tests/test_push.py
CHANGED
@@ -110,13 +110,17 @@ class ExampleWorkflow(BaseWorkflow):
|
|
110
110
|
# THEN it should succeed
|
111
111
|
assert result.exit_code == 0
|
112
112
|
|
113
|
+
# Get the last part of the module path and format it
|
114
|
+
expected_label = mock_module.module.split(".")[-1].replace("_", " ").title()
|
115
|
+
expected_artifact_name = f"{mock_module.module.replace('.', '__')}.tar.gz"
|
116
|
+
|
113
117
|
# AND we should have called the push API with the correct args
|
114
118
|
vellum_client.workflows.push.assert_called_once()
|
115
119
|
call_args = vellum_client.workflows.push.call_args.kwargs
|
116
120
|
assert json.loads(call_args["exec_config"])["workflow_raw_data"]["definition"]["name"] == "ExampleWorkflow"
|
117
|
-
assert call_args["label"] ==
|
121
|
+
assert call_args["label"] == expected_label
|
118
122
|
assert is_valid_uuid(call_args["workflow_sandbox_id"])
|
119
|
-
assert call_args["artifact"].name ==
|
123
|
+
assert call_args["artifact"].name == expected_artifact_name
|
120
124
|
assert "deplyment_config" not in call_args
|
121
125
|
|
122
126
|
extracted_files = _extract_tar_gz(call_args["artifact"].read())
|
@@ -160,13 +164,17 @@ class ExampleWorkflow(BaseWorkflow):
|
|
160
164
|
# THEN it should succeed
|
161
165
|
assert result.exit_code == 0
|
162
166
|
|
167
|
+
# Get the last part of the module path and format it
|
168
|
+
expected_label = mock_module.module.split(".")[-1].replace("_", " ").title()
|
169
|
+
expected_artifact_name = f"{mock_module.module.replace('.', '__')}.tar.gz"
|
170
|
+
|
163
171
|
# AND we should have called the push API with the correct args
|
164
172
|
vellum_client.workflows.push.assert_called_once()
|
165
173
|
call_args = vellum_client.workflows.push.call_args.kwargs
|
166
174
|
assert json.loads(call_args["exec_config"])["workflow_raw_data"]["definition"]["name"] == "ExampleWorkflow"
|
167
|
-
assert call_args["label"] ==
|
175
|
+
assert call_args["label"] == expected_label
|
168
176
|
assert is_valid_uuid(call_args["workflow_sandbox_id"])
|
169
|
-
assert call_args["artifact"].name ==
|
177
|
+
assert call_args["artifact"].name == expected_artifact_name
|
170
178
|
assert call_args["deployment_config"] == "{}"
|
171
179
|
|
172
180
|
extracted_files = _extract_tar_gz(call_args["artifact"].read())
|
@@ -231,6 +239,6 @@ class ExampleWorkflow(BaseWorkflow):
|
|
231
239
|
|
232
240
|
# AND the report should be in the output
|
233
241
|
assert "## Errors" in result.output
|
234
|
-
|
242
|
+
assert "Serialization is not supported." in result.output
|
235
243
|
assert "## Proposed Diffs" in result.output
|
236
244
|
assert "iterable_item_added" in result.output
|
@@ -25,7 +25,7 @@ from vellum.workflows.types.utils import get_original_base
|
|
25
25
|
from vellum.workflows.utils.names import pascal_to_title_case
|
26
26
|
from vellum.workflows.utils.uuids import uuid4_from_hash
|
27
27
|
from vellum_ee.workflows.display.nodes.types import NodeOutputDisplay, PortDisplay, PortDisplayOverrides
|
28
|
-
from vellum_ee.workflows.display.vellum import CodeResourceDefinition
|
28
|
+
from vellum_ee.workflows.display.vellum import CodeResourceDefinition
|
29
29
|
|
30
30
|
if TYPE_CHECKING:
|
31
31
|
from vellum_ee.workflows.display.types import WorkflowDisplayContext
|
@@ -54,18 +54,25 @@ class BaseNodeDisplay(Generic[NodeType], metaclass=BaseNodeDisplayMeta):
|
|
54
54
|
def serialize(self, display_context: "WorkflowDisplayContext", **kwargs: Any) -> JsonObject:
|
55
55
|
raise NotImplementedError(f"Serialization for nodes of type {self._node.__name__} is not supported.")
|
56
56
|
|
57
|
-
def
|
57
|
+
def get_base(self) -> CodeResourceDefinition:
|
58
58
|
node = self._node
|
59
|
-
|
59
|
+
|
60
|
+
base_node_classes = [base for base in node.__bases__ if issubclass(base, BaseNode)]
|
61
|
+
if len(base_node_classes) != 1:
|
62
|
+
raise ValueError(f"Node {node.__name__} must extend from exactly one parent node class.")
|
63
|
+
|
64
|
+
base_node_class = base_node_classes[0]
|
65
|
+
|
66
|
+
return CodeResourceDefinition(
|
67
|
+
name=base_node_class.__name__,
|
68
|
+
module=base_node_class.__module__.split("."),
|
69
|
+
)
|
70
|
+
|
71
|
+
def get_definition(self) -> CodeResourceDefinition:
|
72
|
+
node = self._node
|
73
|
+
node_definition = CodeResourceDefinition(
|
60
74
|
name=node.__name__,
|
61
75
|
module=node.__module__.split("."),
|
62
|
-
bases=[
|
63
|
-
CodeResourceDefinition(
|
64
|
-
name=base.__name__,
|
65
|
-
module=base.__module__.split("."),
|
66
|
-
)
|
67
|
-
for base in node.__bases__
|
68
|
-
],
|
69
76
|
)
|
70
77
|
return node_definition
|
71
78
|
|
@@ -197,5 +197,6 @@ class BaseAPINodeDisplay(BaseNodeVellumDisplay[_APINodeType], Generic[_APINodeTy
|
|
197
197
|
"status_code_output_id": str(status_code_output_display.id),
|
198
198
|
},
|
199
199
|
"display_data": self.get_display_data().dict(),
|
200
|
+
"base": self.get_base().dict(),
|
200
201
|
"definition": self.get_definition().dict(),
|
201
202
|
}
|
@@ -1,10 +1,23 @@
|
|
1
1
|
from typing import Any, Generic, TypeVar
|
2
2
|
|
3
|
+
from vellum.workflows.descriptors.base import BaseDescriptor
|
4
|
+
from vellum.workflows.expressions.and_ import AndExpression
|
5
|
+
from vellum.workflows.expressions.between import BetweenExpression
|
6
|
+
from vellum.workflows.expressions.is_not_null import IsNotNullExpression
|
7
|
+
from vellum.workflows.expressions.is_null import IsNullExpression
|
8
|
+
from vellum.workflows.expressions.not_between import NotBetweenExpression
|
9
|
+
from vellum.workflows.expressions.or_ import OrExpression
|
3
10
|
from vellum.workflows.nodes.bases.base import BaseNode
|
4
|
-
from vellum.workflows.
|
11
|
+
from vellum.workflows.references.execution_count import ExecutionCountReference
|
12
|
+
from vellum.workflows.references.output import OutputReference
|
13
|
+
from vellum.workflows.references.vellum_secret import VellumSecretReference
|
14
|
+
from vellum.workflows.references.workflow_input import WorkflowInputReference
|
15
|
+
from vellum.workflows.types.core import JsonArray, JsonObject
|
5
16
|
from vellum.workflows.utils.uuids import uuid4_from_hash
|
6
17
|
from vellum_ee.workflows.display.nodes.base_node_vellum_display import BaseNodeVellumDisplay
|
18
|
+
from vellum_ee.workflows.display.nodes.vellum.utils import convert_descriptor_to_operator
|
7
19
|
from vellum_ee.workflows.display.types import WorkflowDisplayContext
|
20
|
+
from vellum_ee.workflows.display.utils.vellum import primitive_to_vellum_value
|
8
21
|
from vellum_ee.workflows.display.vellum import GenericNodeDisplayData
|
9
22
|
|
10
23
|
_BaseNodeType = TypeVar("_BaseNodeType", bound=BaseNode)
|
@@ -15,17 +28,40 @@ class BaseNodeDisplay(BaseNodeVellumDisplay[_BaseNodeType], Generic[_BaseNodeTyp
|
|
15
28
|
node = self._node
|
16
29
|
node_id = self.node_id
|
17
30
|
|
31
|
+
ports: JsonArray = []
|
32
|
+
for idx, port in enumerate(node.Ports):
|
33
|
+
id = str(uuid4_from_hash(f"{node_id}|{idx}"))
|
34
|
+
|
35
|
+
if port._condition_type:
|
36
|
+
ports.append(
|
37
|
+
{
|
38
|
+
"id": id,
|
39
|
+
"type": port._condition_type.value,
|
40
|
+
"expression": (
|
41
|
+
self.serialize_condition(display_context, port._condition) if port._condition else None
|
42
|
+
),
|
43
|
+
}
|
44
|
+
)
|
45
|
+
else:
|
46
|
+
ports.append(
|
47
|
+
{
|
48
|
+
"id": id,
|
49
|
+
"type": "DEFAULT",
|
50
|
+
}
|
51
|
+
)
|
52
|
+
|
18
53
|
return {
|
19
54
|
"id": str(node_id),
|
20
55
|
"label": node.__qualname__,
|
21
56
|
"type": "GENERIC",
|
22
57
|
"display_data": self.get_generic_node_display_data().dict(),
|
58
|
+
"base": self.get_base().dict(),
|
23
59
|
"definition": self.get_definition().dict(),
|
24
60
|
"trigger": {
|
25
61
|
"id": str(uuid4_from_hash(f"{node_id}|trigger")),
|
26
62
|
"merge_behavior": node.Trigger.merge_behavior.value,
|
27
63
|
},
|
28
|
-
"ports":
|
64
|
+
"ports": ports,
|
29
65
|
"adornments": None,
|
30
66
|
"attributes": [],
|
31
67
|
}
|
@@ -33,3 +69,62 @@ class BaseNodeDisplay(BaseNodeVellumDisplay[_BaseNodeType], Generic[_BaseNodeTyp
|
|
33
69
|
def get_generic_node_display_data(self) -> GenericNodeDisplayData:
|
34
70
|
explicit_value = self._get_explicit_node_display_attr("display_data", GenericNodeDisplayData)
|
35
71
|
return explicit_value if explicit_value else GenericNodeDisplayData()
|
72
|
+
|
73
|
+
def serialize_condition(self, display_context: WorkflowDisplayContext, condition: BaseDescriptor) -> JsonObject:
|
74
|
+
if isinstance(condition, (AndExpression, OrExpression)):
|
75
|
+
return {}
|
76
|
+
elif isinstance(condition, (IsNullExpression, IsNotNullExpression)):
|
77
|
+
return {}
|
78
|
+
elif isinstance(condition, (BetweenExpression, NotBetweenExpression)):
|
79
|
+
return {}
|
80
|
+
else:
|
81
|
+
lhs = self.serialize_value(display_context, condition._lhs) # type: ignore[attr-defined]
|
82
|
+
rhs = self.serialize_value(display_context, condition._rhs) # type: ignore[attr-defined]
|
83
|
+
|
84
|
+
return {
|
85
|
+
"type": "BINARY_EXPRESSION",
|
86
|
+
"lhs": lhs,
|
87
|
+
"operator": convert_descriptor_to_operator(condition),
|
88
|
+
"rhs": rhs,
|
89
|
+
}
|
90
|
+
|
91
|
+
def serialize_value(self, display_context: WorkflowDisplayContext, value: BaseDescriptor) -> JsonObject:
|
92
|
+
if isinstance(value, WorkflowInputReference):
|
93
|
+
workflow_input_display = display_context.global_workflow_input_displays[value]
|
94
|
+
return {
|
95
|
+
"type": "WORKFLOW_INPUT",
|
96
|
+
"input_variable_id": str(workflow_input_display.id),
|
97
|
+
}
|
98
|
+
|
99
|
+
if isinstance(value, OutputReference):
|
100
|
+
upstream_node, output_display = display_context.global_node_output_displays[value]
|
101
|
+
upstream_node_display = display_context.global_node_displays[upstream_node]
|
102
|
+
|
103
|
+
return {
|
104
|
+
"type": "NODE_OUTPUT",
|
105
|
+
"node_id": str(upstream_node_display.node_id),
|
106
|
+
"node_output_id": str(output_display.id),
|
107
|
+
}
|
108
|
+
|
109
|
+
if isinstance(value, VellumSecretReference):
|
110
|
+
return {
|
111
|
+
"type": "VELLUM_SECRET",
|
112
|
+
"vellum_secret_name": value.name,
|
113
|
+
}
|
114
|
+
|
115
|
+
if isinstance(value, ExecutionCountReference):
|
116
|
+
node_class_display = display_context.node_displays[value.node_class]
|
117
|
+
|
118
|
+
return {
|
119
|
+
"type": "EXECUTION_COUNTER",
|
120
|
+
"node_id": str(node_class_display.node_id),
|
121
|
+
}
|
122
|
+
|
123
|
+
if not isinstance(value, BaseDescriptor):
|
124
|
+
vellum_value = primitive_to_vellum_value(value)
|
125
|
+
return {
|
126
|
+
"type": "CONSTANT_VALUE",
|
127
|
+
"value": vellum_value.dict(),
|
128
|
+
}
|
129
|
+
|
130
|
+
raise ValueError(f"Unsupported descriptor type: {value.__class__.__name__}")
|
@@ -92,5 +92,6 @@ class BaseCodeExecutionNodeDisplay(BaseNodeVellumDisplay[_CodeExecutionNodeType]
|
|
92
92
|
"log_output_id": str(self.log_output_id) if self.log_output_id else str(log_output_display.id),
|
93
93
|
},
|
94
94
|
"display_data": self.get_display_data().dict(),
|
95
|
+
"base": self.get_base().dict(),
|
95
96
|
"definition": self.get_definition().dict(),
|
96
97
|
}
|
@@ -4,34 +4,16 @@ from typing import Any, ClassVar, Dict, Generic, List, Optional, Tuple, TypeVar,
|
|
4
4
|
|
5
5
|
from vellum.workflows.descriptors.base import BaseDescriptor
|
6
6
|
from vellum.workflows.expressions.and_ import AndExpression
|
7
|
-
from vellum.workflows.expressions.begins_with import BeginsWithExpression
|
8
7
|
from vellum.workflows.expressions.between import BetweenExpression
|
9
|
-
from vellum.workflows.expressions.contains import ContainsExpression
|
10
|
-
from vellum.workflows.expressions.does_not_begin_with import DoesNotBeginWithExpression
|
11
|
-
from vellum.workflows.expressions.does_not_contain import DoesNotContainExpression
|
12
|
-
from vellum.workflows.expressions.does_not_end_with import DoesNotEndWithExpression
|
13
|
-
from vellum.workflows.expressions.does_not_equal import DoesNotEqualExpression
|
14
|
-
from vellum.workflows.expressions.ends_with import EndsWithExpression
|
15
|
-
from vellum.workflows.expressions.equals import EqualsExpression
|
16
|
-
from vellum.workflows.expressions.greater_than import GreaterThanExpression
|
17
|
-
from vellum.workflows.expressions.greater_than_or_equal_to import GreaterThanOrEqualToExpression
|
18
|
-
from vellum.workflows.expressions.in_ import InExpression
|
19
|
-
from vellum.workflows.expressions.is_nil import IsNilExpression
|
20
|
-
from vellum.workflows.expressions.is_not_nil import IsNotNilExpression
|
21
8
|
from vellum.workflows.expressions.is_not_null import IsNotNullExpression
|
22
|
-
from vellum.workflows.expressions.is_not_undefined import IsNotUndefinedExpression
|
23
9
|
from vellum.workflows.expressions.is_null import IsNullExpression
|
24
|
-
from vellum.workflows.expressions.is_undefined import IsUndefinedExpression
|
25
|
-
from vellum.workflows.expressions.less_than import LessThanExpression
|
26
|
-
from vellum.workflows.expressions.less_than_or_equal_to import LessThanOrEqualToExpression
|
27
10
|
from vellum.workflows.expressions.not_between import NotBetweenExpression
|
28
|
-
from vellum.workflows.expressions.not_in import NotInExpression
|
29
11
|
from vellum.workflows.expressions.or_ import OrExpression
|
30
12
|
from vellum.workflows.nodes.displayable import ConditionalNode
|
31
13
|
from vellum.workflows.types.core import ConditionType, JsonObject
|
32
14
|
from vellum.workflows.utils.uuids import uuid4_from_hash
|
33
15
|
from vellum_ee.workflows.display.nodes.base_node_vellum_display import BaseNodeVellumDisplay
|
34
|
-
from vellum_ee.workflows.display.nodes.vellum.utils import create_node_input
|
16
|
+
from vellum_ee.workflows.display.nodes.vellum.utils import convert_descriptor_to_operator, create_node_input
|
35
17
|
from vellum_ee.workflows.display.types import WorkflowDisplayContext
|
36
18
|
from vellum_ee.workflows.display.vellum import NodeInput
|
37
19
|
|
@@ -113,7 +95,7 @@ but the defined conditions have length {len(condition_ids)}"""
|
|
113
95
|
)
|
114
96
|
node_inputs.append(expression_node_input)
|
115
97
|
field_node_input_id = expression_node_input.id
|
116
|
-
operator =
|
98
|
+
operator = convert_descriptor_to_operator(descriptor)
|
117
99
|
|
118
100
|
elif isinstance(descriptor, (BetweenExpression, NotBetweenExpression)):
|
119
101
|
field_node_input = create_node_input(
|
@@ -127,7 +109,7 @@ but the defined conditions have length {len(condition_ids)}"""
|
|
127
109
|
value_node_input_id,
|
128
110
|
)
|
129
111
|
node_inputs.extend([field_node_input, value_node_input])
|
130
|
-
operator =
|
112
|
+
operator = convert_descriptor_to_operator(descriptor)
|
131
113
|
field_node_input_id = field_node_input.id
|
132
114
|
value_node_input_id = value_node_input.id
|
133
115
|
|
@@ -147,7 +129,7 @@ but the defined conditions have length {len(condition_ids)}"""
|
|
147
129
|
node_inputs.append(rhs_node_input)
|
148
130
|
value_node_input_id = rhs_node_input.id
|
149
131
|
|
150
|
-
operator =
|
132
|
+
operator = convert_descriptor_to_operator(descriptor)
|
151
133
|
field_node_input_id = lhs_node_input.id
|
152
134
|
|
153
135
|
return {
|
@@ -218,49 +200,10 @@ but the defined conditions have length {len(condition_ids)}"""
|
|
218
200
|
"version": "2",
|
219
201
|
},
|
220
202
|
"display_data": self.get_display_data().dict(),
|
203
|
+
"base": self.get_base().dict(),
|
221
204
|
"definition": self.get_definition().dict(),
|
222
205
|
}
|
223
206
|
|
224
|
-
def _convert_descriptor_to_operator(self, descriptor: BaseDescriptor) -> str:
|
225
|
-
if isinstance(descriptor, EqualsExpression):
|
226
|
-
return "="
|
227
|
-
elif isinstance(descriptor, DoesNotEqualExpression):
|
228
|
-
return "!="
|
229
|
-
elif isinstance(descriptor, LessThanExpression):
|
230
|
-
return "<"
|
231
|
-
elif isinstance(descriptor, GreaterThanExpression):
|
232
|
-
return ">"
|
233
|
-
elif isinstance(descriptor, LessThanOrEqualToExpression):
|
234
|
-
return "<="
|
235
|
-
elif isinstance(descriptor, GreaterThanOrEqualToExpression):
|
236
|
-
return ">="
|
237
|
-
elif isinstance(descriptor, ContainsExpression):
|
238
|
-
return "contains"
|
239
|
-
elif isinstance(descriptor, BeginsWithExpression):
|
240
|
-
return "beginsWith"
|
241
|
-
elif isinstance(descriptor, EndsWithExpression):
|
242
|
-
return "endsWith"
|
243
|
-
elif isinstance(descriptor, DoesNotContainExpression):
|
244
|
-
return "doesNotContain"
|
245
|
-
elif isinstance(descriptor, DoesNotBeginWithExpression):
|
246
|
-
return "doesNotBeginWith"
|
247
|
-
elif isinstance(descriptor, DoesNotEndWithExpression):
|
248
|
-
return "doesNotEndWith"
|
249
|
-
elif isinstance(descriptor, (IsNullExpression, IsNilExpression, IsUndefinedExpression)):
|
250
|
-
return "null"
|
251
|
-
elif isinstance(descriptor, (IsNotNullExpression, IsNotNilExpression, IsNotUndefinedExpression)):
|
252
|
-
return "notNull"
|
253
|
-
elif isinstance(descriptor, InExpression):
|
254
|
-
return "in"
|
255
|
-
elif isinstance(descriptor, NotInExpression):
|
256
|
-
return "notIn"
|
257
|
-
elif isinstance(descriptor, BetweenExpression):
|
258
|
-
return "between"
|
259
|
-
elif isinstance(descriptor, NotBetweenExpression):
|
260
|
-
return "notBetween"
|
261
|
-
else:
|
262
|
-
raise ValueError(f"Unsupported descriptor type: {descriptor}")
|
263
|
-
|
264
207
|
def get_nested_rule_details_by_path(
|
265
208
|
self, rule_ids: List[RuleIdMap], path: List[int]
|
266
209
|
) -> Union[Tuple[str, Optional[str], Optional[str]], None]:
|
@@ -44,5 +44,6 @@ class BaseErrorNodeDisplay(BaseNodeVellumDisplay[_ErrorNodeType], Generic[_Error
|
|
44
44
|
"error_output_id": str(self.error_output_id),
|
45
45
|
},
|
46
46
|
"display_data": self.get_display_data().dict(),
|
47
|
+
"base": self.get_base().dict(),
|
47
48
|
"definition": self.get_definition().dict(),
|
48
49
|
}
|
@@ -45,5 +45,6 @@ class BaseGuardrailNodeDisplay(BaseNodeVellumDisplay[_GuardrailNodeType], Generi
|
|
45
45
|
"release_tag": raise_if_descriptor(node.release_tag),
|
46
46
|
},
|
47
47
|
"display_data": self.get_display_data().dict(),
|
48
|
+
"base": self.get_base().dict(),
|
48
49
|
"definition": self.get_definition().dict(),
|
49
50
|
}
|
@@ -59,6 +59,7 @@ class BaseInlinePromptNodeDisplay(BaseNodeVellumDisplay[_InlinePromptNodeType],
|
|
59
59
|
"ml_model_name": raise_if_descriptor(node.ml_model),
|
60
60
|
},
|
61
61
|
"display_data": self.get_display_data().dict(),
|
62
|
+
"base": self.get_base().dict(),
|
62
63
|
"definition": self.get_definition().dict(),
|
63
64
|
}
|
64
65
|
|
@@ -52,6 +52,7 @@ class BaseInlineSubworkflowNodeDisplay(
|
|
52
52
|
"output_variables": [workflow_output.dict() for workflow_output in workflow_outputs],
|
53
53
|
},
|
54
54
|
"display_data": self.get_display_data().dict(),
|
55
|
+
"base": self.get_base().dict(),
|
55
56
|
"definition": self.get_definition().dict(),
|
56
57
|
}
|
57
58
|
|
@@ -75,5 +75,6 @@ class BaseMapNodeDisplay(BaseNodeVellumDisplay[_MapNodeType], Generic[_MapNodeTy
|
|
75
75
|
"index_input_id": index_workflow_input_id,
|
76
76
|
},
|
77
77
|
"display_data": self.get_display_data().dict(),
|
78
|
+
"base": self.get_base().dict(),
|
78
79
|
"definition": self.get_definition().dict(),
|
79
80
|
}
|
@@ -45,6 +45,7 @@ class BaseMergeNodeDisplay(BaseNodeVellumDisplay[_MergeNodeType], Generic[_Merge
|
|
45
45
|
"source_handle_id": str(self.get_source_handle_id(display_context.port_displays)),
|
46
46
|
},
|
47
47
|
"display_data": self.get_display_data().dict(),
|
48
|
+
"base": self.get_base().dict(),
|
48
49
|
"definition": self.get_definition().dict(),
|
49
50
|
}
|
50
51
|
|
@@ -26,5 +26,6 @@ class BaseNoteNodeDisplay(BaseNodeVellumDisplay[_NoteNodeType], Generic[_NoteNod
|
|
26
26
|
"style": json.dumps(self.style) if self.style else None,
|
27
27
|
},
|
28
28
|
"display_data": self.get_display_data().dict(),
|
29
|
+
"base": self.get_base().dict(),
|
29
30
|
"definition": self.get_definition().dict(),
|
30
31
|
}
|
@@ -65,6 +65,7 @@ class BaseSearchNodeDisplay(BaseNodeVellumDisplay[_SearchNodeType], Generic[_Sea
|
|
65
65
|
"metadata_filters_node_input_id": str(node_inputs["metadata_filters"].id),
|
66
66
|
},
|
67
67
|
"display_data": self.get_display_data().dict(),
|
68
|
+
"base": self.get_base().dict(),
|
68
69
|
"definition": self.get_definition().dict(),
|
69
70
|
}
|
70
71
|
|
@@ -2,7 +2,29 @@ from uuid import UUID
|
|
2
2
|
from typing import Any, List, Optional, Type, Union, cast
|
3
3
|
|
4
4
|
from vellum.workflows.descriptors.base import BaseDescriptor
|
5
|
+
from vellum.workflows.expressions.begins_with import BeginsWithExpression
|
6
|
+
from vellum.workflows.expressions.between import BetweenExpression
|
5
7
|
from vellum.workflows.expressions.coalesce_expression import CoalesceExpression
|
8
|
+
from vellum.workflows.expressions.contains import ContainsExpression
|
9
|
+
from vellum.workflows.expressions.does_not_begin_with import DoesNotBeginWithExpression
|
10
|
+
from vellum.workflows.expressions.does_not_contain import DoesNotContainExpression
|
11
|
+
from vellum.workflows.expressions.does_not_end_with import DoesNotEndWithExpression
|
12
|
+
from vellum.workflows.expressions.does_not_equal import DoesNotEqualExpression
|
13
|
+
from vellum.workflows.expressions.ends_with import EndsWithExpression
|
14
|
+
from vellum.workflows.expressions.equals import EqualsExpression
|
15
|
+
from vellum.workflows.expressions.greater_than import GreaterThanExpression
|
16
|
+
from vellum.workflows.expressions.greater_than_or_equal_to import GreaterThanOrEqualToExpression
|
17
|
+
from vellum.workflows.expressions.in_ import InExpression
|
18
|
+
from vellum.workflows.expressions.is_nil import IsNilExpression
|
19
|
+
from vellum.workflows.expressions.is_not_nil import IsNotNilExpression
|
20
|
+
from vellum.workflows.expressions.is_not_null import IsNotNullExpression
|
21
|
+
from vellum.workflows.expressions.is_not_undefined import IsNotUndefinedExpression
|
22
|
+
from vellum.workflows.expressions.is_null import IsNullExpression
|
23
|
+
from vellum.workflows.expressions.is_undefined import IsUndefinedExpression
|
24
|
+
from vellum.workflows.expressions.less_than import LessThanExpression
|
25
|
+
from vellum.workflows.expressions.less_than_or_equal_to import LessThanOrEqualToExpression
|
26
|
+
from vellum.workflows.expressions.not_between import NotBetweenExpression
|
27
|
+
from vellum.workflows.expressions.not_in import NotInExpression
|
6
28
|
from vellum.workflows.nodes.utils import get_wrapped_node, has_wrapped_node
|
7
29
|
from vellum.workflows.references import NodeReference, OutputReference
|
8
30
|
from vellum.workflows.utils.uuids import uuid4_from_hash
|
@@ -109,3 +131,44 @@ def create_pointer(
|
|
109
131
|
return ConstantValuePointer(type="CONSTANT_VALUE", data=vellum_variable_value)
|
110
132
|
else:
|
111
133
|
raise ValueError(f"Pointer type {pointer_type} not supported")
|
134
|
+
|
135
|
+
|
136
|
+
def convert_descriptor_to_operator(descriptor: BaseDescriptor) -> str:
|
137
|
+
if isinstance(descriptor, EqualsExpression):
|
138
|
+
return "="
|
139
|
+
elif isinstance(descriptor, DoesNotEqualExpression):
|
140
|
+
return "!="
|
141
|
+
elif isinstance(descriptor, LessThanExpression):
|
142
|
+
return "<"
|
143
|
+
elif isinstance(descriptor, GreaterThanExpression):
|
144
|
+
return ">"
|
145
|
+
elif isinstance(descriptor, LessThanOrEqualToExpression):
|
146
|
+
return "<="
|
147
|
+
elif isinstance(descriptor, GreaterThanOrEqualToExpression):
|
148
|
+
return ">="
|
149
|
+
elif isinstance(descriptor, ContainsExpression):
|
150
|
+
return "contains"
|
151
|
+
elif isinstance(descriptor, BeginsWithExpression):
|
152
|
+
return "beginsWith"
|
153
|
+
elif isinstance(descriptor, EndsWithExpression):
|
154
|
+
return "endsWith"
|
155
|
+
elif isinstance(descriptor, DoesNotContainExpression):
|
156
|
+
return "doesNotContain"
|
157
|
+
elif isinstance(descriptor, DoesNotBeginWithExpression):
|
158
|
+
return "doesNotBeginWith"
|
159
|
+
elif isinstance(descriptor, DoesNotEndWithExpression):
|
160
|
+
return "doesNotEndWith"
|
161
|
+
elif isinstance(descriptor, (IsNullExpression, IsNilExpression, IsUndefinedExpression)):
|
162
|
+
return "null"
|
163
|
+
elif isinstance(descriptor, (IsNotNullExpression, IsNotNilExpression, IsNotUndefinedExpression)):
|
164
|
+
return "notNull"
|
165
|
+
elif isinstance(descriptor, InExpression):
|
166
|
+
return "in"
|
167
|
+
elif isinstance(descriptor, NotInExpression):
|
168
|
+
return "notIn"
|
169
|
+
elif isinstance(descriptor, BetweenExpression):
|
170
|
+
return "between"
|
171
|
+
elif isinstance(descriptor, NotBetweenExpression):
|
172
|
+
return "notBetween"
|
173
|
+
else:
|
174
|
+
raise ValueError(f"Unsupported descriptor type: {descriptor}")
|
@@ -30,11 +30,8 @@ def test_vellum_workflow_display__serialize_empty_workflow():
|
|
30
30
|
"nodes": [
|
31
31
|
{
|
32
32
|
"data": {"label": "Entrypoint Node", "source_handle_id": "508b8b82-3517-4672-a155-18c9c7b9c545"},
|
33
|
-
"
|
34
|
-
|
35
|
-
"module": ["vellum", "workflows", "nodes", "bases", "base"],
|
36
|
-
"name": "BaseNode",
|
37
|
-
},
|
33
|
+
"base": None,
|
34
|
+
"definition": None,
|
38
35
|
"display_data": {"position": {"x": 0.0, "y": 0.0}},
|
39
36
|
"id": "9eef0c18-f322-4d56-aa89-f088d3e53f6a",
|
40
37
|
"inputs": [],
|
@@ -1,16 +1,29 @@
|
|
1
1
|
import pytest
|
2
2
|
from uuid import uuid4
|
3
|
+
from typing import Dict, Tuple, Type
|
3
4
|
|
5
|
+
from vellum.workflows.nodes.bases.base import BaseNode
|
6
|
+
from vellum.workflows.references.output import OutputReference
|
7
|
+
from vellum.workflows.references.workflow_input import WorkflowInputReference
|
8
|
+
from vellum.workflows.types.core import JsonObject
|
9
|
+
from vellum.workflows.types.generics import NodeType
|
10
|
+
from vellum_ee.workflows.display.base import WorkflowInputsDisplayType
|
4
11
|
from vellum_ee.workflows.display.nodes.get_node_display_class import get_node_display_class
|
12
|
+
from vellum_ee.workflows.display.nodes.types import NodeOutputDisplay
|
5
13
|
from vellum_ee.workflows.display.nodes.vellum.base_node import BaseNodeDisplay
|
6
|
-
from vellum_ee.workflows.display.types import WorkflowDisplayContext
|
14
|
+
from vellum_ee.workflows.display.types import NodeDisplayType, WorkflowDisplayContext
|
7
15
|
from vellum_ee.workflows.display.vellum import NodeDisplayData, WorkflowMetaVellumDisplay
|
8
16
|
from vellum_ee.workflows.display.workflows.vellum_workflow_display import VellumWorkflowDisplay
|
9
17
|
|
10
18
|
|
11
19
|
@pytest.fixture()
|
12
20
|
def serialize_node():
|
13
|
-
def _serialize_node(
|
21
|
+
def _serialize_node(
|
22
|
+
node_class: Type[NodeType],
|
23
|
+
global_workflow_input_displays: Dict[WorkflowInputReference, WorkflowInputsDisplayType] = {},
|
24
|
+
global_node_displays: Dict[Type[BaseNode], NodeDisplayType] = {},
|
25
|
+
global_node_output_displays: Dict[OutputReference, Tuple[Type[BaseNode], NodeOutputDisplay]] = {},
|
26
|
+
) -> JsonObject:
|
14
27
|
node_display_class = get_node_display_class(BaseNodeDisplay, node_class)
|
15
28
|
node_display = node_display_class()
|
16
29
|
|
@@ -22,6 +35,9 @@ def serialize_node():
|
|
22
35
|
entrypoint_node_display=NodeDisplayData(),
|
23
36
|
),
|
24
37
|
node_displays={node_class: node_display},
|
38
|
+
global_workflow_input_displays=global_workflow_input_displays,
|
39
|
+
global_node_displays=global_node_displays,
|
40
|
+
global_node_output_displays=global_node_output_displays,
|
25
41
|
)
|
26
42
|
return node_display.serialize(context)
|
27
43
|
|