vellum-ai 1.11.2__py3-none-any.whl → 1.13.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of vellum-ai might be problematic. Click here for more details.
- vellum/__init__.py +18 -0
- vellum/client/README.md +1 -1
- vellum/client/core/client_wrapper.py +2 -2
- vellum/client/core/force_multipart.py +4 -2
- vellum/client/core/http_response.py +1 -1
- vellum/client/core/pydantic_utilities.py +7 -4
- vellum/client/errors/too_many_requests_error.py +1 -2
- vellum/client/reference.md +677 -76
- vellum/client/resources/container_images/client.py +299 -0
- vellum/client/resources/container_images/raw_client.py +286 -0
- vellum/client/resources/documents/client.py +20 -10
- vellum/client/resources/documents/raw_client.py +20 -10
- vellum/client/resources/events/raw_client.py +4 -4
- vellum/client/resources/integration_auth_configs/client.py +2 -0
- vellum/client/resources/integration_auth_configs/raw_client.py +2 -0
- vellum/client/resources/integration_providers/client.py +28 -2
- vellum/client/resources/integration_providers/raw_client.py +24 -0
- vellum/client/resources/integrations/client.py +52 -4
- vellum/client/resources/integrations/raw_client.py +61 -0
- vellum/client/resources/workflow_deployments/client.py +156 -0
- vellum/client/resources/workflow_deployments/raw_client.py +334 -0
- vellum/client/resources/workflows/client.py +212 -8
- vellum/client/resources/workflows/raw_client.py +343 -6
- vellum/client/types/__init__.py +18 -0
- vellum/client/types/api_actor_type_enum.py +1 -1
- vellum/client/types/check_workflow_execution_status_error.py +21 -0
- vellum/client/types/check_workflow_execution_status_response.py +29 -0
- vellum/client/types/code_execution_package_request.py +21 -0
- vellum/client/types/composio_execute_tool_request.py +5 -0
- vellum/client/types/composio_tool_definition.py +1 -0
- vellum/client/types/container_image_build_config.py +1 -0
- vellum/client/types/container_image_container_image_tag.py +1 -0
- vellum/client/types/dataset_row_push_request.py +3 -0
- vellum/client/types/document_document_to_document_index.py +1 -0
- vellum/client/types/integration_name.py +24 -0
- vellum/client/types/node_execution_fulfilled_body.py +1 -0
- vellum/client/types/node_execution_log_body.py +24 -0
- vellum/client/types/node_execution_log_event.py +47 -0
- vellum/client/types/prompt_deployment_release_prompt_deployment.py +1 -0
- vellum/client/types/runner_config_request.py +24 -0
- vellum/client/types/severity_enum.py +5 -0
- vellum/client/types/slim_composio_tool_definition.py +1 -0
- vellum/client/types/slim_document_document_to_document_index.py +2 -0
- vellum/client/types/type_checker_enum.py +5 -0
- vellum/client/types/vellum_audio.py +5 -1
- vellum/client/types/vellum_audio_request.py +5 -1
- vellum/client/types/vellum_document.py +5 -1
- vellum/client/types/vellum_document_request.py +5 -1
- vellum/client/types/vellum_image.py +5 -1
- vellum/client/types/vellum_image_request.py +5 -1
- vellum/client/types/vellum_node_execution_event.py +2 -0
- vellum/client/types/vellum_variable.py +5 -0
- vellum/client/types/vellum_variable_extensions.py +1 -0
- vellum/client/types/vellum_variable_type.py +1 -0
- vellum/client/types/vellum_video.py +5 -1
- vellum/client/types/vellum_video_request.py +5 -1
- vellum/client/types/workflow_deployment_release_workflow_deployment.py +1 -0
- vellum/client/types/workflow_event.py +2 -0
- vellum/client/types/workflow_execution_fulfilled_body.py +1 -0
- vellum/client/types/workflow_result_event_output_data_array.py +1 -1
- vellum/client/types/workflow_result_event_output_data_chat_history.py +1 -1
- vellum/client/types/workflow_result_event_output_data_error.py +1 -1
- vellum/client/types/workflow_result_event_output_data_function_call.py +1 -1
- vellum/client/types/workflow_result_event_output_data_json.py +1 -1
- vellum/client/types/workflow_result_event_output_data_number.py +1 -1
- vellum/client/types/workflow_result_event_output_data_search_results.py +1 -1
- vellum/client/types/workflow_result_event_output_data_string.py +1 -1
- vellum/client/types/workflow_sandbox_execute_node_response.py +8 -0
- vellum/plugins/vellum_mypy.py +37 -2
- vellum/types/check_workflow_execution_status_error.py +3 -0
- vellum/types/check_workflow_execution_status_response.py +3 -0
- vellum/types/code_execution_package_request.py +3 -0
- vellum/types/node_execution_log_body.py +3 -0
- vellum/types/node_execution_log_event.py +3 -0
- vellum/types/runner_config_request.py +3 -0
- vellum/types/severity_enum.py +3 -0
- vellum/types/type_checker_enum.py +3 -0
- vellum/types/workflow_sandbox_execute_node_response.py +3 -0
- vellum/utils/files/mixin.py +26 -0
- vellum/utils/files/tests/test_mixin.py +62 -0
- vellum/utils/tests/test_vellum_client.py +95 -0
- vellum/utils/uuid.py +19 -2
- vellum/utils/vellum_client.py +10 -3
- vellum/workflows/__init__.py +7 -1
- vellum/workflows/descriptors/base.py +86 -0
- vellum/workflows/descriptors/tests/test_utils.py +9 -0
- vellum/workflows/errors/tests/__init__.py +0 -0
- vellum/workflows/errors/tests/test_types.py +52 -0
- vellum/workflows/errors/types.py +1 -0
- vellum/workflows/events/node.py +24 -0
- vellum/workflows/events/tests/test_event.py +123 -0
- vellum/workflows/events/types.py +2 -1
- vellum/workflows/events/workflow.py +28 -2
- vellum/workflows/expressions/add.py +3 -0
- vellum/workflows/expressions/tests/test_add.py +24 -0
- vellum/workflows/graph/graph.py +26 -5
- vellum/workflows/graph/tests/test_graph.py +228 -1
- vellum/workflows/inputs/base.py +22 -6
- vellum/workflows/inputs/dataset_row.py +121 -16
- vellum/workflows/inputs/tests/test_inputs.py +3 -3
- vellum/workflows/integrations/tests/test_vellum_integration_service.py +84 -0
- vellum/workflows/integrations/vellum_integration_service.py +12 -1
- vellum/workflows/loaders/base.py +2 -0
- vellum/workflows/nodes/bases/base.py +37 -16
- vellum/workflows/nodes/bases/tests/test_base_node.py +104 -1
- vellum/workflows/nodes/core/inline_subworkflow_node/node.py +1 -0
- vellum/workflows/nodes/core/inline_subworkflow_node/tests/test_node.py +1 -1
- vellum/workflows/nodes/core/map_node/node.py +7 -5
- vellum/workflows/nodes/core/map_node/tests/test_node.py +33 -0
- vellum/workflows/nodes/core/retry_node/node.py +1 -0
- vellum/workflows/nodes/core/try_node/node.py +1 -0
- vellum/workflows/nodes/displayable/api_node/node.py +3 -2
- vellum/workflows/nodes/displayable/api_node/tests/test_api_node.py +38 -0
- vellum/workflows/nodes/displayable/bases/api_node/node.py +1 -1
- vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py +18 -1
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py +109 -2
- vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py +13 -2
- vellum/workflows/nodes/displayable/code_execution_node/node.py +9 -15
- vellum/workflows/nodes/displayable/code_execution_node/tests/test_node.py +65 -24
- vellum/workflows/nodes/displayable/code_execution_node/utils.py +3 -0
- vellum/workflows/nodes/displayable/final_output_node/node.py +24 -69
- vellum/workflows/nodes/displayable/final_output_node/tests/test_node.py +53 -3
- vellum/workflows/nodes/displayable/note_node/node.py +4 -1
- vellum/workflows/nodes/displayable/subworkflow_deployment_node/node.py +16 -5
- vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py +47 -0
- vellum/workflows/nodes/displayable/tool_calling_node/node.py +74 -34
- vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py +204 -8
- vellum/workflows/nodes/displayable/tool_calling_node/utils.py +92 -71
- vellum/workflows/nodes/mocks.py +47 -213
- vellum/workflows/nodes/tests/test_mocks.py +0 -177
- vellum/workflows/nodes/utils.py +23 -8
- vellum/workflows/outputs/base.py +36 -3
- vellum/workflows/references/environment_variable.py +1 -11
- vellum/workflows/references/lazy.py +8 -0
- vellum/workflows/references/state_value.py +24 -1
- vellum/workflows/references/tests/test_lazy.py +58 -0
- vellum/workflows/references/trigger.py +8 -3
- vellum/workflows/references/workflow_input.py +8 -0
- vellum/workflows/resolvers/resolver.py +13 -3
- vellum/workflows/resolvers/tests/test_resolver.py +31 -0
- vellum/workflows/runner/runner.py +159 -14
- vellum/workflows/runner/tests/__init__.py +0 -0
- vellum/workflows/runner/tests/test_runner.py +170 -0
- vellum/workflows/sandbox.py +7 -8
- vellum/workflows/state/base.py +89 -30
- vellum/workflows/state/context.py +74 -3
- vellum/workflows/state/tests/test_state.py +269 -1
- vellum/workflows/tests/test_dataset_row.py +8 -7
- vellum/workflows/tests/test_sandbox.py +97 -8
- vellum/workflows/triggers/__init__.py +2 -1
- vellum/workflows/triggers/base.py +160 -28
- vellum/workflows/triggers/chat_message.py +141 -0
- vellum/workflows/triggers/integration.py +12 -0
- vellum/workflows/triggers/manual.py +3 -1
- vellum/workflows/triggers/schedule.py +3 -1
- vellum/workflows/triggers/tests/test_chat_message.py +257 -0
- vellum/workflows/types/core.py +18 -0
- vellum/workflows/types/definition.py +6 -13
- vellum/workflows/types/generics.py +12 -0
- vellum/workflows/types/tests/test_utils.py +12 -0
- vellum/workflows/types/utils.py +32 -2
- vellum/workflows/types/workflow_metadata.py +124 -0
- vellum/workflows/utils/functions.py +152 -16
- vellum/workflows/utils/pydantic_schema.py +19 -1
- vellum/workflows/utils/tests/test_functions.py +123 -8
- vellum/workflows/utils/tests/test_validate.py +79 -0
- vellum/workflows/utils/tests/test_vellum_variables.py +62 -2
- vellum/workflows/utils/uuids.py +90 -0
- vellum/workflows/utils/validate.py +108 -0
- vellum/workflows/utils/vellum_variables.py +96 -16
- vellum/workflows/workflows/base.py +177 -35
- vellum/workflows/workflows/tests/test_base_workflow.py +51 -0
- {vellum_ai-1.11.2.dist-info → vellum_ai-1.13.5.dist-info}/METADATA +6 -1
- {vellum_ai-1.11.2.dist-info → vellum_ai-1.13.5.dist-info}/RECORD +274 -227
- vellum_cli/__init__.py +21 -0
- vellum_cli/config.py +16 -2
- vellum_cli/pull.py +2 -0
- vellum_cli/push.py +23 -10
- vellum_cli/tests/conftest.py +8 -13
- vellum_cli/tests/test_image_push.py +4 -11
- vellum_cli/tests/test_pull.py +83 -68
- vellum_cli/tests/test_push.py +251 -2
- vellum_ee/assets/node-definitions.json +225 -12
- vellum_ee/scripts/generate_node_definitions.py +15 -3
- vellum_ee/workflows/display/base.py +4 -3
- vellum_ee/workflows/display/nodes/base_node_display.py +44 -11
- vellum_ee/workflows/display/nodes/tests/test_base_node_display.py +93 -0
- vellum_ee/workflows/display/nodes/types.py +1 -0
- vellum_ee/workflows/display/nodes/vellum/__init__.py +0 -2
- vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py +5 -2
- vellum_ee/workflows/display/nodes/vellum/code_execution_node.py +1 -1
- vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py +10 -2
- vellum_ee/workflows/display/nodes/vellum/inline_subworkflow_node.py +17 -14
- vellum_ee/workflows/display/nodes/vellum/map_node.py +2 -0
- vellum_ee/workflows/display/nodes/vellum/note_node.py +18 -3
- vellum_ee/workflows/display/nodes/vellum/subworkflow_deployment_node.py +37 -14
- vellum_ee/workflows/display/nodes/vellum/tests/test_code_execution_node.py +62 -2
- vellum_ee/workflows/display/nodes/vellum/tests/test_final_output_node.py +136 -0
- vellum_ee/workflows/display/nodes/vellum/tests/test_note_node.py +44 -7
- vellum_ee/workflows/display/nodes/vellum/tests/test_prompt_node.py +5 -13
- vellum_ee/workflows/display/nodes/vellum/tests/test_subworkflow_deployment_node.py +27 -17
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +145 -22
- vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py +107 -2
- vellum_ee/workflows/display/nodes/vellum/utils.py +54 -12
- vellum_ee/workflows/display/tests/test_base_workflow_display.py +13 -16
- vellum_ee/workflows/display/tests/test_json_schema_validation.py +190 -0
- vellum_ee/workflows/display/tests/test_mocks.py +912 -0
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_adornments_serialization.py +14 -2
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py +109 -0
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_outputs_serialization.py +3 -0
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_ports_serialization.py +187 -1
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_api_node_serialization.py +34 -325
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_code_execution_node_serialization.py +42 -393
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_conditional_node_serialization.py +13 -315
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_default_state_serialization.py +2 -122
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_error_node_serialization.py +24 -115
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_generic_node_serialization.py +4 -93
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_guardrail_node_serialization.py +7 -80
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_inline_prompt_node_serialization.py +9 -101
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_inline_subworkflow_serialization.py +77 -308
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_map_node_serialization.py +62 -324
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_merge_node_serialization.py +3 -82
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_prompt_deployment_serialization.py +4 -142
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_search_node_serialization.py +1 -61
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_set_state_node_serialization.py +4 -4
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py +205 -134
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_node_serialization.py +34 -146
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py +2 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_composio_serialization.py +8 -6
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py +137 -266
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_tool_wrapper_serialization.py +84 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py +55 -16
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py +15 -1
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_tool_wrapper_serialization.py +71 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_vellum_integration_serialization.py +119 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py +1 -1
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py +0 -2
- vellum_ee/workflows/display/tests/workflow_serialization/test_chat_message_dict_reference_serialization.py +22 -1
- vellum_ee/workflows/display/tests/workflow_serialization/test_chat_message_trigger_serialization.py +412 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_code_tool_node_reference_error.py +106 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py +9 -41
- vellum_ee/workflows/display/tests/workflow_serialization/test_duplicate_trigger_name_validation.py +208 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_final_output_node_not_referenced_by_workflow_outputs.py +45 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_infinite_loop_validation.py +66 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_int_input_serialization.py +40 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_integration_trigger_serialization.py +8 -14
- vellum_ee/workflows/display/tests/workflow_serialization/test_integration_trigger_validation.py +173 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_integration_trigger_with_entrypoint_node_id.py +16 -13
- vellum_ee/workflows/display/tests/workflow_serialization/test_list_vellum_document_serialization.py +5 -1
- vellum_ee/workflows/display/tests/workflow_serialization/test_manual_trigger_serialization.py +12 -2
- vellum_ee/workflows/display/tests/workflow_serialization/test_multi_trigger_same_node_serialization.py +111 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_no_triggers_no_entrypoint_validation.py +64 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_partial_workflow_meta_display_override.py +55 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_sandbox_dataset_mocks_serialization.py +268 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_sandbox_invalid_pdf_data_url.py +49 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_sandbox_validation_errors.py +112 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_scheduled_trigger_serialization.py +25 -16
- vellum_ee/workflows/display/tests/workflow_serialization/test_terminal_node_in_unused_graphs_serialization.py +53 -0
- vellum_ee/workflows/display/utils/exceptions.py +34 -0
- vellum_ee/workflows/display/utils/expressions.py +463 -52
- vellum_ee/workflows/display/utils/metadata.py +98 -33
- vellum_ee/workflows/display/utils/tests/test_metadata.py +31 -0
- vellum_ee/workflows/display/utils/triggers.py +153 -0
- vellum_ee/workflows/display/utils/vellum.py +59 -5
- vellum_ee/workflows/display/workflows/base_workflow_display.py +656 -254
- vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py +26 -0
- vellum_ee/workflows/display/workflows/tests/test_workflow_display.py +77 -29
- vellum_ee/workflows/server/namespaces.py +18 -0
- vellum_ee/workflows/tests/test_display_meta.py +2 -0
- vellum_ee/workflows/tests/test_serialize_module.py +174 -7
- vellum_ee/workflows/tests/test_server.py +0 -3
- vellum_ee/workflows/display/nodes/vellum/function_node.py +0 -14
- {vellum_ai-1.11.2.dist-info → vellum_ai-1.13.5.dist-info}/LICENSE +0 -0
- {vellum_ai-1.11.2.dist-info → vellum_ai-1.13.5.dist-info}/WHEEL +0 -0
- {vellum_ai-1.11.2.dist-info → vellum_ai-1.13.5.dist-info}/entry_points.txt +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from unittest.mock import ANY
|
|
2
|
+
|
|
1
3
|
from deepdiff import DeepDiff
|
|
2
4
|
|
|
3
5
|
from vellum_ee.workflows.display.workflows.get_vellum_workflow_display_class import get_workflow_display
|
|
@@ -31,6 +33,7 @@ def test_serialize_workflow():
|
|
|
31
33
|
"required": True,
|
|
32
34
|
"default": None,
|
|
33
35
|
"extensions": {"color": None},
|
|
36
|
+
"schema": {"type": "string"},
|
|
34
37
|
},
|
|
35
38
|
{
|
|
36
39
|
"id": "aba1e6e0-dfa7-4c15-a4e6-aec6feebfaca",
|
|
@@ -39,6 +42,7 @@ def test_serialize_workflow():
|
|
|
39
42
|
"required": True,
|
|
40
43
|
"default": None,
|
|
41
44
|
"extensions": {"color": None},
|
|
45
|
+
"schema": {"type": "string"},
|
|
42
46
|
},
|
|
43
47
|
],
|
|
44
48
|
input_variables,
|
|
@@ -67,8 +71,6 @@ def test_serialize_workflow():
|
|
|
67
71
|
|
|
68
72
|
# AND its raw data should be what we expect
|
|
69
73
|
workflow_raw_data = serialized_workflow["workflow_raw_data"]
|
|
70
|
-
assert len(workflow_raw_data["edges"]) == 3
|
|
71
|
-
assert len(workflow_raw_data["nodes"]) == 4
|
|
72
74
|
|
|
73
75
|
# AND each node should be serialized correctly
|
|
74
76
|
entrypoint_node = workflow_raw_data["nodes"][0]
|
|
@@ -113,195 +115,7 @@ def test_serialize_workflow():
|
|
|
113
115
|
"source_handle_id": "4e6146c9-05f1-4494-b48c-7ff02224cf5a",
|
|
114
116
|
"target_handle_id": "955e83a5-6a19-4dfa-ab19-9a6fd63d017d",
|
|
115
117
|
"variant": "INLINE",
|
|
116
|
-
"workflow_raw_data":
|
|
117
|
-
"nodes": [
|
|
118
|
-
{
|
|
119
|
-
"id": "afa49a0f-db35-4552-9217-5b8f237e84bc",
|
|
120
|
-
"type": "ENTRYPOINT",
|
|
121
|
-
"inputs": [],
|
|
122
|
-
"data": {
|
|
123
|
-
"label": "Entrypoint Node",
|
|
124
|
-
"source_handle_id": "9914a6a0-9a99-430d-8ddd-f7c13847fe1a",
|
|
125
|
-
},
|
|
126
|
-
"display_data": {"position": {"x": 0.0, "y": -50.0}},
|
|
127
|
-
"base": None,
|
|
128
|
-
"definition": None,
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
132
|
-
"label": "Start Node",
|
|
133
|
-
"type": "GENERIC",
|
|
134
|
-
"should_file_merge": True,
|
|
135
|
-
"display_data": {"position": {"x": 200.0, "y": -50.0}},
|
|
136
|
-
"base": {"name": "BaseNode", "module": ["vellum", "workflows", "nodes", "bases", "base"]},
|
|
137
|
-
"definition": {
|
|
138
|
-
"name": "StartNode",
|
|
139
|
-
"module": ["tests", "workflows", "basic_inline_subworkflow", "workflow"],
|
|
140
|
-
},
|
|
141
|
-
"trigger": {
|
|
142
|
-
"id": "ab273dfa-6719-427c-9054-dd2c03d90d5d",
|
|
143
|
-
"merge_behavior": "AWAIT_ATTRIBUTES",
|
|
144
|
-
},
|
|
145
|
-
"ports": [
|
|
146
|
-
{"id": "37a41308-2f6c-443d-a832-5859cef231e8", "name": "default", "type": "DEFAULT"}
|
|
147
|
-
],
|
|
148
|
-
"adornments": None,
|
|
149
|
-
"attributes": [
|
|
150
|
-
{
|
|
151
|
-
"id": "47970f44-eafc-4526-bd81-b1419b0a787a",
|
|
152
|
-
"name": "metro",
|
|
153
|
-
"value": {
|
|
154
|
-
"type": "WORKFLOW_INPUT",
|
|
155
|
-
"input_variable_id": "f2f5da15-026d-4905-bfe7-7d16bda20eed",
|
|
156
|
-
},
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"id": "6d933d5e-84a2-434a-baf8-25315c9469af",
|
|
160
|
-
"name": "date",
|
|
161
|
-
"value": {
|
|
162
|
-
"type": "WORKFLOW_INPUT",
|
|
163
|
-
"input_variable_id": "aba1e6e0-dfa7-4c15-a4e6-aec6feebfaca",
|
|
164
|
-
},
|
|
165
|
-
},
|
|
166
|
-
],
|
|
167
|
-
"outputs": [
|
|
168
|
-
{
|
|
169
|
-
"id": "1162f98c-fc51-49c3-a634-120ccbf2ddc2",
|
|
170
|
-
"name": "temperature",
|
|
171
|
-
"type": "NUMBER",
|
|
172
|
-
"value": None,
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"id": "4d13651c-3c74-4bf4-8595-2339de83c59a",
|
|
176
|
-
"name": "reasoning",
|
|
177
|
-
"type": "STRING",
|
|
178
|
-
"value": None,
|
|
179
|
-
},
|
|
180
|
-
],
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"id": "a773c3a5-78cb-4250-8d29-7282e8a579d3",
|
|
184
|
-
"type": "TERMINAL",
|
|
185
|
-
"data": {
|
|
186
|
-
"label": "Final Output",
|
|
187
|
-
"name": "temperature",
|
|
188
|
-
"target_handle_id": "804bb543-9cf4-457f-acf1-fb4b8b7d9259",
|
|
189
|
-
"output_id": "2fc57139-7420-49e5-96a6-dcbb3ff5d622",
|
|
190
|
-
"output_type": "NUMBER",
|
|
191
|
-
"node_input_id": "712eaeec-9e1e-41bd-9217-9caec8b6ade7",
|
|
192
|
-
},
|
|
193
|
-
"inputs": [
|
|
194
|
-
{
|
|
195
|
-
"id": "712eaeec-9e1e-41bd-9217-9caec8b6ade7",
|
|
196
|
-
"key": "node_input",
|
|
197
|
-
"value": {
|
|
198
|
-
"rules": [
|
|
199
|
-
{
|
|
200
|
-
"type": "NODE_OUTPUT",
|
|
201
|
-
"data": {
|
|
202
|
-
"node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
203
|
-
"output_id": "1162f98c-fc51-49c3-a634-120ccbf2ddc2",
|
|
204
|
-
},
|
|
205
|
-
}
|
|
206
|
-
],
|
|
207
|
-
"combinator": "OR",
|
|
208
|
-
},
|
|
209
|
-
}
|
|
210
|
-
],
|
|
211
|
-
"display_data": {"position": {"x": 400.0, "y": 75.0}},
|
|
212
|
-
"base": {
|
|
213
|
-
"name": "FinalOutputNode",
|
|
214
|
-
"module": ["vellum", "workflows", "nodes", "displayable", "final_output_node", "node"],
|
|
215
|
-
},
|
|
216
|
-
"definition": None,
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"id": "570f4d12-69ff-49f1-ba98-ade6283dd7c2",
|
|
220
|
-
"type": "TERMINAL",
|
|
221
|
-
"data": {
|
|
222
|
-
"label": "Final Output",
|
|
223
|
-
"name": "reasoning",
|
|
224
|
-
"target_handle_id": "6d4c4a14-c388-4c7a-b223-eb39baf5c080",
|
|
225
|
-
"output_id": "fad5dd9f-3328-4e70-ad55-65a5325a4a82",
|
|
226
|
-
"output_type": "STRING",
|
|
227
|
-
"node_input_id": "8fd4279a-4f13-4257-9577-1b55e964cdf1",
|
|
228
|
-
},
|
|
229
|
-
"inputs": [
|
|
230
|
-
{
|
|
231
|
-
"id": "8fd4279a-4f13-4257-9577-1b55e964cdf1",
|
|
232
|
-
"key": "node_input",
|
|
233
|
-
"value": {
|
|
234
|
-
"rules": [
|
|
235
|
-
{
|
|
236
|
-
"type": "NODE_OUTPUT",
|
|
237
|
-
"data": {
|
|
238
|
-
"node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
239
|
-
"output_id": "4d13651c-3c74-4bf4-8595-2339de83c59a",
|
|
240
|
-
},
|
|
241
|
-
}
|
|
242
|
-
],
|
|
243
|
-
"combinator": "OR",
|
|
244
|
-
},
|
|
245
|
-
}
|
|
246
|
-
],
|
|
247
|
-
"display_data": {"position": {"x": 400.0, "y": -175.0}},
|
|
248
|
-
"base": {
|
|
249
|
-
"name": "FinalOutputNode",
|
|
250
|
-
"module": ["vellum", "workflows", "nodes", "displayable", "final_output_node", "node"],
|
|
251
|
-
},
|
|
252
|
-
"definition": None,
|
|
253
|
-
},
|
|
254
|
-
],
|
|
255
|
-
"edges": [
|
|
256
|
-
{
|
|
257
|
-
"id": "85ac167b-dc92-4197-b364-64e630cab237",
|
|
258
|
-
"source_node_id": "afa49a0f-db35-4552-9217-5b8f237e84bc",
|
|
259
|
-
"source_handle_id": "9914a6a0-9a99-430d-8ddd-f7c13847fe1a",
|
|
260
|
-
"target_node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
261
|
-
"target_handle_id": "ab273dfa-6719-427c-9054-dd2c03d90d5d",
|
|
262
|
-
"type": "DEFAULT",
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"id": "6f16dfb8-d794-4be8-8860-6ea34f0b9e7c",
|
|
266
|
-
"source_node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
267
|
-
"source_handle_id": "37a41308-2f6c-443d-a832-5859cef231e8",
|
|
268
|
-
"target_node_id": "a773c3a5-78cb-4250-8d29-7282e8a579d3",
|
|
269
|
-
"target_handle_id": "804bb543-9cf4-457f-acf1-fb4b8b7d9259",
|
|
270
|
-
"type": "DEFAULT",
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"id": "63b77ff0-5282-46ce-8da9-37ced05ac61c",
|
|
274
|
-
"source_node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
275
|
-
"source_handle_id": "37a41308-2f6c-443d-a832-5859cef231e8",
|
|
276
|
-
"target_node_id": "570f4d12-69ff-49f1-ba98-ade6283dd7c2",
|
|
277
|
-
"target_handle_id": "6d4c4a14-c388-4c7a-b223-eb39baf5c080",
|
|
278
|
-
"type": "DEFAULT",
|
|
279
|
-
},
|
|
280
|
-
],
|
|
281
|
-
"display_data": {"viewport": {"x": 0.0, "y": 0.0, "zoom": 1.0}},
|
|
282
|
-
"definition": {
|
|
283
|
-
"name": "NestedWorkflow",
|
|
284
|
-
"module": ["tests", "workflows", "basic_inline_subworkflow", "workflow"],
|
|
285
|
-
},
|
|
286
|
-
"output_values": [
|
|
287
|
-
{
|
|
288
|
-
"output_variable_id": "2fc57139-7420-49e5-96a6-dcbb3ff5d622",
|
|
289
|
-
"value": {
|
|
290
|
-
"type": "NODE_OUTPUT",
|
|
291
|
-
"node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
292
|
-
"node_output_id": "1162f98c-fc51-49c3-a634-120ccbf2ddc2",
|
|
293
|
-
},
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"output_variable_id": "fad5dd9f-3328-4e70-ad55-65a5325a4a82",
|
|
297
|
-
"value": {
|
|
298
|
-
"type": "NODE_OUTPUT",
|
|
299
|
-
"node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
300
|
-
"node_output_id": "4d13651c-3c74-4bf4-8595-2339de83c59a",
|
|
301
|
-
},
|
|
302
|
-
},
|
|
303
|
-
],
|
|
304
|
-
},
|
|
118
|
+
"workflow_raw_data": ANY,
|
|
305
119
|
"input_variables": [
|
|
306
120
|
{
|
|
307
121
|
"id": "9ae1bf55-2024-48e4-b7fa-29c189545dc8",
|
|
@@ -309,6 +123,7 @@ def test_serialize_workflow():
|
|
|
309
123
|
"type": "STRING",
|
|
310
124
|
"required": True,
|
|
311
125
|
"default": None,
|
|
126
|
+
"schema": {"type": "string"},
|
|
312
127
|
}
|
|
313
128
|
],
|
|
314
129
|
"output_variables": [
|
|
@@ -332,135 +147,89 @@ def test_serialize_workflow():
|
|
|
332
147
|
"ports": [{"id": "4e6146c9-05f1-4494-b48c-7ff02224cf5a", "name": "default", "type": "DEFAULT"}],
|
|
333
148
|
},
|
|
334
149
|
subworkflow_node,
|
|
150
|
+
exclude_regex_paths=r"root\['data'\]\['workflow_raw_data'\]",
|
|
335
151
|
)
|
|
336
152
|
|
|
337
|
-
|
|
338
|
-
|
|
153
|
+
nested_workflow_data = subworkflow_node["data"]["workflow_raw_data"]
|
|
154
|
+
nested_start_node = next(
|
|
155
|
+
node for node in nested_workflow_data["nodes"] if node["type"] == "GENERIC" and node["label"] == "Start Node"
|
|
339
156
|
)
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
{
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
"
|
|
349
|
-
|
|
350
|
-
"name": "reasoning",
|
|
351
|
-
"target_handle_id": "8b525943-6c27-414b-a329-e29c0b217f72",
|
|
352
|
-
"output_id": "7444a019-081a-4e10-a528-3249299159f7",
|
|
353
|
-
"output_type": "STRING",
|
|
354
|
-
"node_input_id": "c1833b54-95b6-4365-8e57-51b09c8e2606",
|
|
355
|
-
},
|
|
356
|
-
"inputs": [
|
|
357
|
-
{
|
|
358
|
-
"id": "c1833b54-95b6-4365-8e57-51b09c8e2606",
|
|
359
|
-
"key": "node_input",
|
|
360
|
-
"value": {
|
|
361
|
-
"rules": [
|
|
362
|
-
{
|
|
363
|
-
"type": "NODE_OUTPUT",
|
|
364
|
-
"data": {
|
|
365
|
-
"node_id": "cc246984-82bb-4da3-b447-ea66aa1cffe4",
|
|
366
|
-
"output_id": "0a7192da-5576-4933-bba4-de8adf5d7996",
|
|
367
|
-
},
|
|
368
|
-
}
|
|
369
|
-
],
|
|
370
|
-
"combinator": "OR",
|
|
371
|
-
},
|
|
372
|
-
}
|
|
373
|
-
],
|
|
374
|
-
"display_data": {"position": {"x": 400.0, "y": 75.0}},
|
|
375
|
-
"base": {
|
|
376
|
-
"name": "FinalOutputNode",
|
|
377
|
-
"module": ["vellum", "workflows", "nodes", "displayable", "final_output_node", "node"],
|
|
378
|
-
},
|
|
379
|
-
"definition": None,
|
|
157
|
+
assert nested_start_node == {
|
|
158
|
+
"id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
159
|
+
"label": "Start Node",
|
|
160
|
+
"type": "GENERIC",
|
|
161
|
+
"should_file_merge": True,
|
|
162
|
+
"display_data": {"position": {"x": 200.0, "y": -50.0}},
|
|
163
|
+
"base": {"name": "BaseNode", "module": ["vellum", "workflows", "nodes", "bases", "base"]},
|
|
164
|
+
"definition": {
|
|
165
|
+
"name": "StartNode",
|
|
166
|
+
"module": ["tests", "workflows", "basic_inline_subworkflow", "workflow"],
|
|
380
167
|
},
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
# https://app.shortcut.com/vellum/story/5660/fix-output-id-in-subworkflow-nodes
|
|
385
|
-
exclude_regex_paths=r"root\['inputs'\]\[0\]\['value'\]\['rules'\]\[0\]\['data'\]\['output_id'\]",
|
|
386
|
-
)
|
|
387
|
-
|
|
388
|
-
assert not DeepDiff(
|
|
389
|
-
{
|
|
390
|
-
"id": "0779b232-82ab-4dbe-a340-6a85e6ab3368",
|
|
391
|
-
"type": "TERMINAL",
|
|
392
|
-
"data": {
|
|
393
|
-
"label": "Final Output",
|
|
394
|
-
"name": "temperature",
|
|
395
|
-
"target_handle_id": "9e077063-c394-4c7b-b0c6-e6686df67984",
|
|
396
|
-
"output_id": "99afb757-2782-465d-ab55-80ccf50552b9",
|
|
397
|
-
"output_type": "NUMBER",
|
|
398
|
-
"node_input_id": "7761c5e1-cc2e-43ab-bfd2-f66c3d47b3b9",
|
|
399
|
-
},
|
|
400
|
-
"inputs": [
|
|
401
|
-
{
|
|
402
|
-
"id": "7761c5e1-cc2e-43ab-bfd2-f66c3d47b3b9",
|
|
403
|
-
"key": "node_input",
|
|
404
|
-
"value": {
|
|
405
|
-
"rules": [
|
|
406
|
-
{
|
|
407
|
-
"type": "NODE_OUTPUT",
|
|
408
|
-
"data": {
|
|
409
|
-
"node_id": "cc246984-82bb-4da3-b447-ea66aa1cffe4",
|
|
410
|
-
"output_id": "86dd0202-c141-48a3-8382-2da60372e77c",
|
|
411
|
-
},
|
|
412
|
-
}
|
|
413
|
-
],
|
|
414
|
-
"combinator": "OR",
|
|
415
|
-
},
|
|
416
|
-
}
|
|
417
|
-
],
|
|
418
|
-
"display_data": {"position": {"x": 400.0, "y": -175.0}},
|
|
419
|
-
"base": {
|
|
420
|
-
"name": "FinalOutputNode",
|
|
421
|
-
"module": ["vellum", "workflows", "nodes", "displayable", "final_output_node", "node"],
|
|
422
|
-
},
|
|
423
|
-
"definition": None,
|
|
168
|
+
"trigger": {
|
|
169
|
+
"id": "ab273dfa-6719-427c-9054-dd2c03d90d5d",
|
|
170
|
+
"merge_behavior": "AWAIT_ATTRIBUTES",
|
|
424
171
|
},
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
# https://app.shortcut.com/vellum/story/5660/fix-output-id-in-subworkflow-nodes
|
|
429
|
-
exclude_regex_paths=r"root\['inputs'\]\[0\]\['value'\]\['rules'\]\[0\]\['data'\]\['output_id'\]",
|
|
430
|
-
)
|
|
431
|
-
|
|
432
|
-
# AND each edge should be serialized correctly
|
|
433
|
-
serialized_edges = workflow_raw_data["edges"]
|
|
434
|
-
assert not DeepDiff(
|
|
435
|
-
[
|
|
172
|
+
"ports": [{"id": "37a41308-2f6c-443d-a832-5859cef231e8", "name": "default", "type": "DEFAULT"}],
|
|
173
|
+
"adornments": None,
|
|
174
|
+
"attributes": [
|
|
436
175
|
{
|
|
437
|
-
"id": "
|
|
438
|
-
"
|
|
439
|
-
"
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
176
|
+
"id": "47970f44-eafc-4526-bd81-b1419b0a787a",
|
|
177
|
+
"name": "metro",
|
|
178
|
+
"value": {
|
|
179
|
+
"type": "WORKFLOW_INPUT",
|
|
180
|
+
"input_variable_id": "f2f5da15-026d-4905-bfe7-7d16bda20eed",
|
|
181
|
+
},
|
|
443
182
|
},
|
|
444
183
|
{
|
|
445
|
-
"id": "
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
184
|
+
"id": "6d933d5e-84a2-434a-baf8-25315c9469af",
|
|
185
|
+
"name": "date",
|
|
186
|
+
"value": {
|
|
187
|
+
"type": "WORKFLOW_INPUT",
|
|
188
|
+
"input_variable_id": "aba1e6e0-dfa7-4c15-a4e6-aec6feebfaca",
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
"outputs": [
|
|
193
|
+
{
|
|
194
|
+
"id": "1162f98c-fc51-49c3-a634-120ccbf2ddc2",
|
|
195
|
+
"name": "temperature",
|
|
196
|
+
"type": "NUMBER",
|
|
197
|
+
"value": None,
|
|
198
|
+
"schema": {"type": "number"},
|
|
451
199
|
},
|
|
452
200
|
{
|
|
453
|
-
"id": "
|
|
454
|
-
"
|
|
455
|
-
"
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
"type": "DEFAULT",
|
|
201
|
+
"id": "4d13651c-3c74-4bf4-8595-2339de83c59a",
|
|
202
|
+
"name": "reasoning",
|
|
203
|
+
"type": "STRING",
|
|
204
|
+
"value": None,
|
|
205
|
+
"schema": {"type": "string"},
|
|
459
206
|
},
|
|
460
207
|
],
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
assert nested_workflow_data["display_data"] == {"viewport": {"x": 0.0, "y": 0.0, "zoom": 1.0}}
|
|
211
|
+
assert nested_workflow_data["definition"] == {
|
|
212
|
+
"name": "NestedWorkflow",
|
|
213
|
+
"module": ["tests", "workflows", "basic_inline_subworkflow", "workflow"],
|
|
214
|
+
}
|
|
215
|
+
assert nested_workflow_data["output_values"] == [
|
|
216
|
+
{
|
|
217
|
+
"output_variable_id": "2fc57139-7420-49e5-96a6-dcbb3ff5d622",
|
|
218
|
+
"value": {
|
|
219
|
+
"type": "NODE_OUTPUT",
|
|
220
|
+
"node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
221
|
+
"node_output_id": "1162f98c-fc51-49c3-a634-120ccbf2ddc2",
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"output_variable_id": "fad5dd9f-3328-4e70-ad55-65a5325a4a82",
|
|
226
|
+
"value": {
|
|
227
|
+
"type": "NODE_OUTPUT",
|
|
228
|
+
"node_id": "45ba1e29-611f-4a6f-9f51-7cf6fe47141e",
|
|
229
|
+
"node_output_id": "4d13651c-3c74-4bf4-8595-2339de83c59a",
|
|
230
|
+
},
|
|
231
|
+
},
|
|
232
|
+
]
|
|
464
233
|
|
|
465
234
|
# AND the display data should be what we expect
|
|
466
235
|
display_data = workflow_raw_data["display_data"]
|