vellum-ai 0.14.22__py3-none-any.whl → 0.14.24__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.
Files changed (157) hide show
  1. vellum/__init__.py +122 -0
  2. vellum/client/core/client_wrapper.py +1 -1
  3. vellum/client/resources/workflow_deployments/client.py +250 -0
  4. vellum/client/types/__init__.py +122 -0
  5. vellum/client/types/api_request_parent_context.py +41 -0
  6. vellum/client/types/api_version_enum.py +5 -0
  7. vellum/client/types/base_output.py +21 -0
  8. vellum/client/types/code_resource_definition.py +31 -0
  9. vellum/client/types/external_input_descriptor.py +23 -0
  10. vellum/client/types/invoked_port.py +19 -0
  11. vellum/client/types/ml_model_usage_wrapper.py +21 -0
  12. vellum/client/types/node_event_display_context.py +30 -0
  13. vellum/client/types/node_execution_fulfilled_body.py +24 -0
  14. vellum/client/types/node_execution_fulfilled_event.py +49 -0
  15. vellum/client/types/node_execution_initiated_body.py +21 -0
  16. vellum/client/types/node_execution_initiated_event.py +49 -0
  17. vellum/client/types/node_execution_paused_body.py +20 -0
  18. vellum/client/types/node_execution_paused_event.py +49 -0
  19. vellum/client/types/node_execution_rejected_body.py +22 -0
  20. vellum/client/types/node_execution_rejected_event.py +49 -0
  21. vellum/client/types/node_execution_resumed_body.py +20 -0
  22. vellum/client/types/node_execution_resumed_event.py +49 -0
  23. vellum/client/types/node_execution_span.py +46 -0
  24. vellum/client/types/node_execution_span_attributes.py +19 -0
  25. vellum/client/types/node_execution_streaming_body.py +22 -0
  26. vellum/client/types/node_execution_streaming_event.py +49 -0
  27. vellum/client/types/node_parent_context.py +43 -0
  28. vellum/client/types/parent_context.py +21 -0
  29. vellum/client/types/prompt_deployment_parent_context.py +49 -0
  30. vellum/client/types/slim_workflow_execution_read.py +54 -0
  31. vellum/client/types/span_link.py +41 -0
  32. vellum/client/types/span_link_type_enum.py +5 -0
  33. vellum/client/types/vellum_code_resource_definition.py +25 -0
  34. vellum/client/types/vellum_node_execution_event.py +18 -0
  35. vellum/client/types/vellum_sdk_error.py +21 -0
  36. vellum/client/types/vellum_sdk_error_code_enum.py +20 -0
  37. vellum/client/types/vellum_span.py +7 -0
  38. vellum/client/types/vellum_workflow_execution_event.py +20 -0
  39. vellum/client/types/workflow_deployment_event_executions_response.py +55 -0
  40. vellum/client/types/workflow_deployment_parent_context.py +49 -0
  41. vellum/client/types/workflow_error.py +7 -0
  42. vellum/client/types/workflow_event_display_context.py +28 -0
  43. vellum/client/types/workflow_event_execution_read.py +60 -0
  44. vellum/client/types/workflow_execution_actual.py +30 -0
  45. vellum/client/types/workflow_execution_fulfilled_body.py +21 -0
  46. vellum/client/types/workflow_execution_fulfilled_event.py +49 -0
  47. vellum/client/types/workflow_execution_initiated_body.py +30 -0
  48. vellum/client/types/workflow_execution_initiated_event.py +53 -0
  49. vellum/client/types/workflow_execution_paused_body.py +22 -0
  50. vellum/client/types/workflow_execution_paused_event.py +49 -0
  51. vellum/client/types/workflow_execution_rejected_body.py +22 -0
  52. vellum/client/types/workflow_execution_rejected_event.py +49 -0
  53. vellum/client/types/workflow_execution_resumed_body.py +20 -0
  54. vellum/client/types/workflow_execution_resumed_event.py +49 -0
  55. vellum/client/types/workflow_execution_snapshotted_body.py +21 -0
  56. vellum/client/types/workflow_execution_snapshotted_event.py +51 -0
  57. vellum/client/types/workflow_execution_span.py +50 -0
  58. vellum/client/types/workflow_execution_span_attributes.py +19 -0
  59. vellum/client/types/workflow_execution_streaming_body.py +22 -0
  60. vellum/client/types/workflow_execution_streaming_event.py +49 -0
  61. vellum/client/types/workflow_execution_usage_calculation_fulfilled_body.py +22 -0
  62. vellum/client/types/workflow_execution_view_online_eval_metric_result.py +30 -0
  63. vellum/client/types/workflow_initialization_error.py +24 -0
  64. vellum/client/types/workflow_parent_context.py +43 -0
  65. vellum/client/types/workflow_sandbox_parent_context.py +44 -0
  66. vellum/plugins/pydantic.py +2 -0
  67. vellum/types/api_request_parent_context.py +3 -0
  68. vellum/types/api_version_enum.py +3 -0
  69. vellum/types/base_output.py +3 -0
  70. vellum/types/code_resource_definition.py +3 -0
  71. vellum/types/external_input_descriptor.py +3 -0
  72. vellum/types/invoked_port.py +3 -0
  73. vellum/types/ml_model_usage_wrapper.py +3 -0
  74. vellum/types/node_event_display_context.py +3 -0
  75. vellum/types/node_execution_fulfilled_body.py +3 -0
  76. vellum/types/node_execution_fulfilled_event.py +3 -0
  77. vellum/types/node_execution_initiated_body.py +3 -0
  78. vellum/types/node_execution_initiated_event.py +3 -0
  79. vellum/types/node_execution_paused_body.py +3 -0
  80. vellum/types/node_execution_paused_event.py +3 -0
  81. vellum/types/node_execution_rejected_body.py +3 -0
  82. vellum/types/node_execution_rejected_event.py +3 -0
  83. vellum/types/node_execution_resumed_body.py +3 -0
  84. vellum/types/node_execution_resumed_event.py +3 -0
  85. vellum/types/node_execution_span.py +3 -0
  86. vellum/types/node_execution_span_attributes.py +3 -0
  87. vellum/types/node_execution_streaming_body.py +3 -0
  88. vellum/types/node_execution_streaming_event.py +3 -0
  89. vellum/types/node_parent_context.py +3 -0
  90. vellum/types/parent_context.py +3 -0
  91. vellum/types/prompt_deployment_parent_context.py +3 -0
  92. vellum/types/slim_workflow_execution_read.py +3 -0
  93. vellum/types/span_link.py +3 -0
  94. vellum/types/span_link_type_enum.py +3 -0
  95. vellum/types/vellum_code_resource_definition.py +3 -0
  96. vellum/types/vellum_node_execution_event.py +3 -0
  97. vellum/types/vellum_sdk_error.py +3 -0
  98. vellum/types/vellum_sdk_error_code_enum.py +3 -0
  99. vellum/types/vellum_span.py +3 -0
  100. vellum/types/vellum_workflow_execution_event.py +3 -0
  101. vellum/types/workflow_deployment_event_executions_response.py +3 -0
  102. vellum/types/workflow_deployment_parent_context.py +3 -0
  103. vellum/types/workflow_error.py +3 -0
  104. vellum/types/workflow_event_display_context.py +3 -0
  105. vellum/types/workflow_event_execution_read.py +3 -0
  106. vellum/types/workflow_execution_actual.py +3 -0
  107. vellum/types/workflow_execution_fulfilled_body.py +3 -0
  108. vellum/types/workflow_execution_fulfilled_event.py +3 -0
  109. vellum/types/workflow_execution_initiated_body.py +3 -0
  110. vellum/types/workflow_execution_initiated_event.py +3 -0
  111. vellum/types/workflow_execution_paused_body.py +3 -0
  112. vellum/types/workflow_execution_paused_event.py +3 -0
  113. vellum/types/workflow_execution_rejected_body.py +3 -0
  114. vellum/types/workflow_execution_rejected_event.py +3 -0
  115. vellum/types/workflow_execution_resumed_body.py +3 -0
  116. vellum/types/workflow_execution_resumed_event.py +3 -0
  117. vellum/types/workflow_execution_snapshotted_body.py +3 -0
  118. vellum/types/workflow_execution_snapshotted_event.py +3 -0
  119. vellum/types/workflow_execution_span.py +3 -0
  120. vellum/types/workflow_execution_span_attributes.py +3 -0
  121. vellum/types/workflow_execution_streaming_body.py +3 -0
  122. vellum/types/workflow_execution_streaming_event.py +3 -0
  123. vellum/types/workflow_execution_usage_calculation_fulfilled_body.py +3 -0
  124. vellum/types/workflow_execution_view_online_eval_metric_result.py +3 -0
  125. vellum/types/workflow_initialization_error.py +3 -0
  126. vellum/types/workflow_parent_context.py +3 -0
  127. vellum/types/workflow_sandbox_parent_context.py +3 -0
  128. vellum/workflows/nodes/core/inline_subworkflow_node/node.py +6 -0
  129. vellum/workflows/nodes/core/inline_subworkflow_node/tests/test_node.py +27 -0
  130. vellum/workflows/nodes/core/retry_node/tests/test_node.py +0 -23
  131. vellum/workflows/workflows/base.py +2 -2
  132. vellum/workflows/workflows/tests/test_base_workflow.py +10 -0
  133. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.24.dist-info}/METADATA +1 -1
  134. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.24.dist-info}/RECORD +157 -33
  135. vellum_ee/workflows/display/base.py +26 -4
  136. vellum_ee/workflows/display/editor/__init__.py +7 -0
  137. vellum_ee/workflows/display/editor/types.py +22 -0
  138. vellum_ee/workflows/display/nodes/base_node_display.py +2 -1
  139. vellum_ee/workflows/display/nodes/base_node_vellum_display.py +1 -1
  140. vellum_ee/workflows/display/nodes/vellum/api_node.py +1 -1
  141. vellum_ee/workflows/display/nodes/vellum/final_output_node.py +8 -0
  142. vellum_ee/workflows/display/nodes/vellum/search_node.py +2 -1
  143. vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py +5 -11
  144. vellum_ee/workflows/display/nodes/vellum/utils.py +3 -4
  145. vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py +2 -1
  146. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py +8 -0
  147. vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py +12 -8
  148. vellum_ee/workflows/display/types.py +16 -13
  149. vellum_ee/workflows/display/utils/expressions.py +6 -2
  150. vellum_ee/workflows/display/utils/vellum.py +59 -13
  151. vellum_ee/workflows/display/vellum.py +18 -95
  152. vellum_ee/workflows/display/workflows/base_workflow_display.py +54 -46
  153. vellum_ee/workflows/display/workflows/tests/test_workflow_display.py +15 -1
  154. vellum_ee/workflows/display/workflows/vellum_workflow_display.py +2 -4
  155. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.24.dist-info}/LICENSE +0 -0
  156. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.24.dist-info}/WHEEL +0 -0
  157. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.24.dist-info}/entry_points.txt +0 -0
@@ -22,22 +22,24 @@ vellum_ee/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  vellum_ee/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  vellum_ee/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  vellum_ee/workflows/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- vellum_ee/workflows/display/base.py,sha256=xhrMfirVLBuIeDuxdOUmtJ6CcfCx8DChFo-4HfMY6uc,1883
25
+ vellum_ee/workflows/display/base.py,sha256=rIycT9p18XWng7cpJwcjXXNvJq3bPObQ0GN4fuQO_Wk,2633
26
+ vellum_ee/workflows/display/editor/__init__.py,sha256=MSAgY91xCEg2neH5d8jXx5wRdR962ftZVa6vO9BGq9k,167
27
+ vellum_ee/workflows/display/editor/types.py,sha256=x-tOOCJ6CF4HmiKDfCmcc3bOVfc1EBlP5o6u5WEfLoY,567
26
28
  vellum_ee/workflows/display/nodes/__init__.py,sha256=436iSAh_Ex5tC68oEYvNgPu05ZVIAVXnS4PKGrQeZ0Y,321
27
- vellum_ee/workflows/display/nodes/base_node_display.py,sha256=4xIkrKXVryaD0fPd7RxSpzIqPg6Y14NEB7j7m0DrJvM,18974
28
- vellum_ee/workflows/display/nodes/base_node_vellum_display.py,sha256=rhbWYBQSXkpEPIvTa--LPwhsl8RnX4KyU6Ax0M0A0pU,1701
29
+ vellum_ee/workflows/display/nodes/base_node_display.py,sha256=APdax1M8isohM-B8j2E0OFL-4v2L17scZ0ynpkYgVek,19036
30
+ vellum_ee/workflows/display/nodes/base_node_vellum_display.py,sha256=WXbfVoGHTfl_owas2WKHwcRhfLeu0cAI4qLmKxfxjOs,1707
29
31
  vellum_ee/workflows/display/nodes/get_node_display_class.py,sha256=59Nht1XAxMcNESFV1VmECrF01lZMnGkB_9JWaTAFnv0,2214
30
32
  vellum_ee/workflows/display/nodes/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
33
  vellum_ee/workflows/display/nodes/tests/test_base_node_display.py,sha256=QqR3Ly0RNrXwOeLdW5nERDFt0gRPf76n1bPES6o5UN4,1093
32
34
  vellum_ee/workflows/display/nodes/types.py,sha256=St1BB6no528OyELGiyRabWao0GGw6mLhstQAvEACbGk,247
33
35
  vellum_ee/workflows/display/nodes/utils.py,sha256=sloya5TpXsnot1HURc9L51INwflRqUzHxRVnCS9Cd-4,973
34
36
  vellum_ee/workflows/display/nodes/vellum/__init__.py,sha256=nUIgH2s0-7IbQRNrBhLPyRNe8YIrx3Yo9HeeW-aXXFk,1668
35
- vellum_ee/workflows/display/nodes/vellum/api_node.py,sha256=lumtypr0JEZfiA32hcs_olTmnT0wIUzPBy0pnZVfyU4,8532
37
+ vellum_ee/workflows/display/nodes/vellum/api_node.py,sha256=RDsxyubod_zYc72_VaHUTfOZXsgrKv8g3fqZFS2_j8Y,8538
36
38
  vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py,sha256=Bzqplrnx-bDIRD1JgU7036m8pSWSO45zEReNv8RJTu4,6379
37
39
  vellum_ee/workflows/display/nodes/vellum/code_execution_node.py,sha256=IYx0nll0t-tsPcjfgpfHMZE4FJgMFIsOiaQanGLYF0Q,4410
38
40
  vellum_ee/workflows/display/nodes/vellum/conditional_node.py,sha256=ybLIa4uclqVIy3VAQvI1ivg2tnK5Ug_1R5a69DFqL7E,11104
39
41
  vellum_ee/workflows/display/nodes/vellum/error_node.py,sha256=I1Jkp2htRINJATtv1e-zs9BrReFX842djpiVgBPHDYg,2186
40
- vellum_ee/workflows/display/nodes/vellum/final_output_node.py,sha256=p-PvlnxpBQ7IKskZi2A19jKAtKnSxJ8LPbGMA83VkFk,2805
42
+ vellum_ee/workflows/display/nodes/vellum/final_output_node.py,sha256=BJ--Y-LCbGFJve3OFEKHVxrw8TKvgb342opYLJibToc,3128
41
43
  vellum_ee/workflows/display/nodes/vellum/guardrail_node.py,sha256=aYZSJTxknU4LMiQdWk9LcK6CkhdozeDEMiRxfAyUNEc,2202
42
44
  vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py,sha256=3fJzrFoGJX_igzWKgXp7f7-owdVBG6xuy-kBSWNbNxc,8734
43
45
  vellum_ee/workflows/display/nodes/vellum/inline_subworkflow_node.py,sha256=MU9I8CB1X1TgL1aa1eT6DHWwNJ-2v79t74xl0oy-fBo,5510
@@ -46,7 +48,7 @@ vellum_ee/workflows/display/nodes/vellum/merge_node.py,sha256=xtyecs9mJ_WEwVpP12
46
48
  vellum_ee/workflows/display/nodes/vellum/note_node.py,sha256=TMb8txILu2uWjzoxaghjgjlzeBAgzn4vkP_8zSh2qoE,1151
47
49
  vellum_ee/workflows/display/nodes/vellum/prompt_deployment_node.py,sha256=9YR6MtxVq8Bavb0ud2lZX0t2Y_NUd-dY9kRgq8WBz-Y,3093
48
50
  vellum_ee/workflows/display/nodes/vellum/retry_node.py,sha256=LgokATi7sSS38Fil-XjqoR4t7AMOJ-GzXRw6p606Svo,3397
49
- vellum_ee/workflows/display/nodes/vellum/search_node.py,sha256=TxcAGZDl_hvJ7Y1hUi9YVEVrj9Ie0hKkASdpfRL4_cs,9227
51
+ vellum_ee/workflows/display/nodes/vellum/search_node.py,sha256=Hn55mKO1Q6BBspQtbsurvJJqX7RjSSuEyRjUW29xvg0,9279
50
52
  vellum_ee/workflows/display/nodes/vellum/subworkflow_deployment_node.py,sha256=62baAElKoRKIoba0lLhnrXGWWx96B73VxKGxh7BaIxc,2612
51
53
  vellum_ee/workflows/display/nodes/vellum/templating_node.py,sha256=5EWzdA3TSUPlbJhs4uo1KGH6eGtDXZucVhlUoc_xpl4,3242
52
54
  vellum_ee/workflows/display/nodes/vellum/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -56,14 +58,14 @@ vellum_ee/workflows/display/nodes/vellum/tests/test_prompt_node.py,sha256=bg9INs
56
58
  vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=NuIw8Yb42KUdoGi3Ur8_7VPg50IC4hNrwAkCociwqNk,2091
57
59
  vellum_ee/workflows/display/nodes/vellum/tests/test_templating_node.py,sha256=Us32jf_FQnLuT4Bs2o5JyHxihCTAN8ozZghWIR0pl9k,3459
58
60
  vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=mtzB8LJlFCHVFM4H5AanLp29gQfaVmnN4A4iaRGJHoI,2427
59
- vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=4YUaTeD_OWF-UaPMyOTBTu9skGC1jgSHlAYrzbH7Z04,5039
61
+ vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=8_4b_U2l60b3TPLTHiDd_lzk6gi-30FmNJreDVeG0oM,4876
60
62
  vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=0ipBZMYm521tuwefQFgHOvTyTgiWVTkzxpQtnnmOAI0,4203
61
- vellum_ee/workflows/display/nodes/vellum/utils.py,sha256=lY3YsvzawDy15-8w3Brb4oSnVpVaMe5FQtgMi3BE3Mo,4737
63
+ vellum_ee/workflows/display/nodes/vellum/utils.py,sha256=MAoHDSURlLRJ9V8D6I6icclqGq2hExU_h7ABx6BWuJY,4733
62
64
  vellum_ee/workflows/display/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
65
  vellum_ee/workflows/display/tests/test_vellum_workflow_display.py,sha256=VD-4USiRlCcdC3Qe9WfdkxwFdircai0vqvuZCbELR84,9556
64
66
  vellum_ee/workflows/display/tests/workflow_serialization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
67
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py,sha256=iR9vt-Xf8NSLHptrp1uTd_qbhHz-LrWkrRyKN96aqGM,2492
68
+ vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py,sha256=lXw_Zvhlf7b1z3dsZoDznDweF1O-AStibV7BYrEtr0M,2544
67
69
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_adornments_serialization.py,sha256=4R8cZ98JsGmIq-kmt3q519c4nCI7wCy5ynAUCUNnvuI,15605
68
70
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py,sha256=PXoNUAgqfyNCAoYGWoo5D-_5SLEannn7SD08nxZmVe8,19781
69
71
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_outputs_serialization.py,sha256=s6_mnk0pkztU59wYpSfOFpMhAJaRjmyfxM6WJGtnD4Y,6456
@@ -84,19 +86,19 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_prompt_deplo
84
86
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_search_node_serialization.py,sha256=elc4ak2OyI4y5P6GPnK2RwuZLcx4FL6hHlmhY3ARk6k,13008
85
87
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py,sha256=BzFNl9ECeGh0krm-CUjbBQQq0g7krANsp0Sh-j5dAkc,11322
86
88
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_node_serialization.py,sha256=qjaXGw0JTnPnQmDAFm7jkB3bVkApf-WQ0Gd6kptqdPA,7818
87
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=NdhE3lm7RMQ8DqkraPSq24IbOxNla9unbs4tsMWRzm4,3781
89
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=UrueKI15Ez-DRfZpZH82o127v0LRXLP-s308kjDTPMI,4084
88
90
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py,sha256=eD5686C9nWC5s6t08vbAnm9qf9t53gYQM-E1FwAa75c,3035
89
- vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=huKAOeMJ2MKmp6XtbvMJTUadqynoV40Ypoz9jsBEBEQ,7431
90
- vellum_ee/workflows/display/types.py,sha256=UZ23Hv2ULWFrMaG1mRSbVnPEa9YvuLlv0dOMkA2j5_Y,2466
91
+ vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=zXTjfjUdji0WBu6ZhocvM4UiXEWFJIpds24sxV9TZT0,7714
92
+ vellum_ee/workflows/display/types.py,sha256=13gGBga5p1Tufe2h3aKBmr2mXlnGDtL8RqWKhW9LaDk,2543
91
93
  vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
- vellum_ee/workflows/display/utils/expressions.py,sha256=9FpOslDI-RCR5m4TgAu9KCHh4aTVnh7CHR2ykyMUDw0,1151
93
- vellum_ee/workflows/display/utils/vellum.py,sha256=EVPQUSsZ3OIeLTEbV6LHPor37t9fnj9kJxDqP4PmTLQ,8234
94
- vellum_ee/workflows/display/vellum.py,sha256=bevbLCd2KqJBKqJ3lQayeRfjY7x1Djf57F9iJ-6KBJw,5162
94
+ vellum_ee/workflows/display/utils/expressions.py,sha256=2u2o8Fqr-2C45FII01ej5rt6i8n2EEGiliXugK7buVw,1210
95
+ vellum_ee/workflows/display/utils/vellum.py,sha256=Pzmg9Xiq-hRaYxbOSDaJhIAQ4A0apQN6dURn_h5DnWI,9364
96
+ vellum_ee/workflows/display/vellum.py,sha256=3Hri8-MGNhRSoNBC-u6hiot_9-k92a_NzrYgYJVY1CQ,3547
95
97
  vellum_ee/workflows/display/workflows/__init__.py,sha256=kapXsC67VJcgSuiBMa86FdePG5A9kMB5Pi4Uy1O2ob4,207
96
- vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=cvpDj5gDzoO1Sdt8BCo1acvZsNb30bpX-xGftl3u0xE,19940
98
+ vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=rYpvUVGnQNFOnsk6OUhh_2GXDojQtKmuRElNjwQujDk,19486
97
99
  vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py,sha256=kp0u8LN_2IwshLrhMImhpZx1hRyAcD5gXY-kDuuaGMQ,1269
98
- vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=TwxfmIpCL1xrJOjA54d52q5Ko0CFUT2bW60DVD0wrlY,10095
99
- vellum_ee/workflows/display/workflows/vellum_workflow_display.py,sha256=AS-vMrM93KEjb02-ye0Il29l3bX74o0Q8P2Nvf9NIZ0,16683
100
+ vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=nD6_lZnNp56siVJwhlWzSEHdMaSKjvWlsJa31SqfQAE,10623
101
+ vellum_ee/workflows/display/workflows/vellum_workflow_display.py,sha256=cSQybNy6qBiEv2WtPRh1-hSNuwvdWQtjvAGW6vNBSmU,16623
100
102
  vellum_ee/workflows/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
103
  vellum_ee/workflows/server/virtual_file_loader.py,sha256=ET-Q83W5Cgqzqz3qtFNwtS2nJEIcm3VtvR5kffsT3VY,2262
102
104
  vellum_ee/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -121,12 +123,12 @@ vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIP
121
123
  vellum_ee/workflows/tests/test_display_meta.py,sha256=C25dErwghPNXio49pvSRxyOuc96srH6eYEwTAWdE2zY,2258
122
124
  vellum_ee/workflows/tests/test_server.py,sha256=IWqjJXSbVFuV3w6b9lB3N6yoVAHJicmJuubASvw5QQM,2276
123
125
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
124
- vellum/__init__.py,sha256=qJRjommzKdcsfZUNkqN2k1BuOwVVSuX4Nuv9ITCz1AM,36536
126
+ vellum/__init__.py,sha256=rrAlrZ6a7m7t8FTl5cPkoAPl3He9_SHwkG5V2QR0K1I,40442
125
127
  vellum/client/README.md,sha256=JkCJjmMZl4jrPj46pkmL9dpK4gSzQQmP5I7z4aME4LY,4749
126
128
  vellum/client/__init__.py,sha256=tKtdM1_GqmGq1gpi9ydWD_T-MM7fPn8QdHh8ww19cNI,117564
127
129
  vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
128
130
  vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
129
- vellum/client/core/client_wrapper.py,sha256=DpiUwVloITIZTAtfFwbXdgMJxWZ-qVWlr-Qx6Kc1pZc,1869
131
+ vellum/client/core/client_wrapper.py,sha256=8wv6fQx1EwJtvzVuLS-i7sPo_b87mIrTj43SWrHA6fM,1869
130
132
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
131
133
  vellum/client/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
132
134
  vellum/client/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
@@ -175,7 +177,7 @@ vellum/client/resources/test_suite_runs/client.py,sha256=tU-N1fEfXQPomt2f058PUNI
175
177
  vellum/client/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
176
178
  vellum/client/resources/test_suites/client.py,sha256=SlO-IXyhddm1U6WtrLIUUvlImf2vXC22bX2n9fpp6-c,25969
177
179
  vellum/client/resources/workflow_deployments/__init__.py,sha256=_duH6m1CDWcfqX6DTBNjO3ar4Xrl-f5PozMaTcT4Kow,251
178
- vellum/client/resources/workflow_deployments/client.py,sha256=H9MhGYZVx1WLHE5j83Sl5HmX-CF6aJFCwQAGDG1n2oI,27149
180
+ vellum/client/resources/workflow_deployments/client.py,sha256=6ET6qbuMSwWWWu_q-PUcS10CVIWVEUjvYppZ_F3qfXc,35220
179
181
  vellum/client/resources/workflow_deployments/types/__init__.py,sha256=W7DKJ1nduwhRckYLvH7wHLdaGH9MXHTZkxwG7FdTngY,340
180
182
  vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
181
183
  vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
@@ -191,7 +193,7 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
191
193
  vellum/client/resources/workspace_secrets/client.py,sha256=h7UzXLyTttPq1t-JZGMg1BWxypxJvBGUdqg7KGT7MK4,8027
192
194
  vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
193
195
  vellum/client/resources/workspaces/client.py,sha256=RthwzN1o-Jxwg5yyNNodavFyNUSxfLoTv26w3mRR5g8,3595
194
- vellum/client/types/__init__.py,sha256=H2K-qwJM2gg5ZOMIXT56gwK1Vr0iV45hb11ON5z_dL4,55005
196
+ vellum/client/types/__init__.py,sha256=cS2OoTCLARsxyRef9i2mt_WgggGQG28eTl-sTYaIhfU,61154
195
197
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
196
198
  vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
197
199
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
@@ -201,6 +203,8 @@ vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=OVSyUL81lpk
201
203
  vellum/client/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
202
204
  vellum/client/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
203
205
  vellum/client/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
206
+ vellum/client/types/api_request_parent_context.py,sha256=pHEo3pxzQHSsIf34MRQ1dFfpHBvYREphIdbTBM-hKs0,1949
207
+ vellum/client/types/api_version_enum.py,sha256=CfNOk0cJ_VfIlKwD4ORH-v8z0KHP3u0Xolu_8ze86To,126
204
208
  vellum/client/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
205
209
  vellum/client/types/array_chat_message_content_item.py,sha256=udxHZTZLQ1Ekg6X1D616a61crYxlQDz8QU6-CAHznrQ,625
206
210
  vellum/client/types/array_chat_message_content_item_request.py,sha256=3ULz8jtWvJIGl2SaGfw_hX9sKJxZaM4uUrZXyORlMhQ,742
@@ -213,6 +217,7 @@ vellum/client/types/audio_chat_message_content_request.py,sha256=0iy-fv_AYp_3FIJ
213
217
  vellum/client/types/audio_prompt_block.py,sha256=4gbzRmZfT_crv3YcGTq265LE-HnzB_bxxtK0aUKzEJY,1013
214
218
  vellum/client/types/audio_vellum_value.py,sha256=8tbwNkj5UtnjZhFIQZ18O233yCt4fK3BhXpR7S5VEt4,745
215
219
  vellum/client/types/audio_vellum_value_request.py,sha256=KnEyYDvTVqNdYcb4v2AGs5nLbcWFSj351_A9nM2ad8Y,774
220
+ vellum/client/types/base_output.py,sha256=WsCnB8EYCuGp96pKIFaOFWPmvRcJkg2I4ihM2zcPYL4,715
216
221
  vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
217
222
  vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
218
223
  vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
@@ -245,6 +250,7 @@ vellum/client/types/code_execution_runtime.py,sha256=ucMXj7mUYl9-B_KentTfRuRIeDq
245
250
  vellum/client/types/code_executor_input.py,sha256=Dj6XRaIRHjbXDZ-wR_XusJkrxYD_lJ1-UZY0Ga4xeqI,694
246
251
  vellum/client/types/code_executor_response.py,sha256=iG3q95G7sXABhdkh81DhBYKHKrgZAFK1SvOa3Su6giM,849
247
252
  vellum/client/types/code_executor_secret_input.py,sha256=GmQG38-iQ6wTIvRw3fglOLepuw3LDL2I3joNXn3z-WA,766
253
+ vellum/client/types/code_resource_definition.py,sha256=Yuw7osTazRMK3fsVSpLl8DUFq9M9Xzu7yRkGQEv-ats,835
248
254
  vellum/client/types/compile_prompt_deployment_expand_meta_request.py,sha256=z0iMR9nLGz5h2MbqamIwUxB8EiXGvqdf0tlYAQsBFbA,1136
249
255
  vellum/client/types/compile_prompt_meta.py,sha256=lQOFdrhMpzMOf_hasn4vb1AKnX2VuASr-1evaugJ4ro,848
250
256
  vellum/client/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R6zLakrJMMn_1z9FIylBcxencQ6JHVPs7HSg,206
@@ -302,6 +308,7 @@ vellum/client/types/execution_number_vellum_value.py,sha256=b2TpqyafRHCdl6EhgctN
302
308
  vellum/client/types/execution_search_results_vellum_value.py,sha256=HkxoXaUF6pMbfXd5wLk5VKmcXed2IRfEzkxsoGpwmg0,898
303
309
  vellum/client/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBggP7XkcdE_D2lGmEobkXWY7o,807
304
310
  vellum/client/types/execution_vellum_value.py,sha256=PpbrbJdSioqaqT2gZ6mx2Ht0Oy8XGyxBDcLFfPqUBIA,980
311
+ vellum/client/types/external_input_descriptor.py,sha256=ErOW2OfFMz1FDGmVY6NgiUBPsleaWhdJBekwFp4ru7o,805
305
312
  vellum/client/types/external_test_case_execution.py,sha256=CzO7IM3uINXQfOHWjEVvRqwRcp5_JWWtyXVxMQGHl_c,1063
306
313
  vellum/client/types/external_test_case_execution_request.py,sha256=5nZWMZnDPqQSmmcnIM5Cz6VxA6YQrcfmdWw7d2Da3cY,1128
307
314
  vellum/client/types/finish_reason_enum.py,sha256=KoNjzvXMHDCT0AUhhwGoZ1_7bi4h3fZEFvvHyGyoTP8,169
@@ -364,6 +371,7 @@ vellum/client/types/initiated_prompt_execution_meta.py,sha256=pnRjcPnVRp650k0W7k
364
371
  vellum/client/types/initiated_workflow_node_result_event.py,sha256=Nu1J4iQYsW2HHjQFzQq-ZQAQtEmS95pPnHOZZDdPrcU,1407
365
372
  vellum/client/types/instructor_vectorizer_config.py,sha256=7udlosXv4CUWTW_Q9m0mz3VRi1FKSbBhDIOhtxRd0-U,731
366
373
  vellum/client/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqEMVdr3KJHEps0oDp2bNmqWbM,738
374
+ vellum/client/types/invoked_port.py,sha256=N1O7b1HyBGhkUdcAbKdEWlzVE-UPA14B762cNGU5qhA,554
367
375
  vellum/client/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
368
376
  vellum/client/types/jinja_prompt_block.py,sha256=-wukO4TaDvGlrbkg9ZtDOPEfoLmaoX7830ktLGHRrvI,939
369
377
  vellum/client/types/json_input.py,sha256=ZUA2O9YueBCx0IMMdB8uYNSWJiSDZxMm5ogwbwCmz_g,761
@@ -387,6 +395,7 @@ vellum/client/types/metric_definition_input.py,sha256=4nmwpPqbeNQYCzLkXCkc-FGV5K
387
395
  vellum/client/types/metric_node_result.py,sha256=YdKq1DZiBD1RBtjyMejImylv3BqrwY8B_UF4Ij-6_64,660
388
396
  vellum/client/types/ml_model_read.py,sha256=Vr5KjaS2Tca0GXsltfSYQpuyGYpgIahPEFfS6HfFGSo,706
389
397
  vellum/client/types/ml_model_usage.py,sha256=WcZ2F1hfxyTwe-spOVwv-qJYDjs4hf9sn7BF2abawPo,910
398
+ vellum/client/types/ml_model_usage_wrapper.py,sha256=K0V5O-NqB12FAKUcBb9r3b25u4x-4jFcef2-V1PQhMU,645
390
399
  vellum/client/types/named_scenario_input_chat_history_variable_value_request.py,sha256=aVZmAxu-47c34NyhSkfi9tQqIPy29cdJ7Pb4MIgKeNw,862
391
400
  vellum/client/types/named_scenario_input_json_variable_value_request.py,sha256=UgnKv70zFviv1kl4nM7aM7IFA-7xyDOtglW4Y3GBZ28,757
392
401
  vellum/client/types/named_scenario_input_request.py,sha256=Pi8l377OHvKBwvPu9slZ1omf_NJ9S1mCQ5Wr-Ux5KVg,611
@@ -410,6 +419,21 @@ vellum/client/types/named_test_case_string_variable_value_request.py,sha256=Bv7L
410
419
  vellum/client/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
411
420
  vellum/client/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
412
421
  vellum/client/types/new_member_join_behavior_enum.py,sha256=s9Z_6JKM6R4gPNtIJYCe84_DNBHucj6dHOx6bdFPoLo,258
422
+ vellum/client/types/node_event_display_context.py,sha256=5pAeD9kbSqUYYVz-v67-n8LhKsXRVUnjH19HIimJs-Y,1079
423
+ vellum/client/types/node_execution_fulfilled_body.py,sha256=lK9XgCT0d94DByMfMyMdBaLa2CvxLQ10f71y6hBic5c,885
424
+ vellum/client/types/node_execution_fulfilled_event.py,sha256=U0k343TyZXztihM1oLH63yQdWo5P_Nk7jcHkDMTu7JU,2332
425
+ vellum/client/types/node_execution_initiated_body.py,sha256=SFHnxmbHC_NWDyIjIkT8JPuTsaRpYIywQsTDUReqvkQ,737
426
+ vellum/client/types/node_execution_initiated_event.py,sha256=yRDccy6cE6b1C825mzGkNiN9sKq9HGEjRv4WAtsPERE,2332
427
+ vellum/client/types/node_execution_paused_body.py,sha256=JwGYfmQ1g9jCDM36wLgM6xkYo1YY7M4VIvCowzaNb5A,676
428
+ vellum/client/types/node_execution_paused_event.py,sha256=m7WHAp2OuQMyNO0mU8xl_u_4Pi9wTdL5Eyuejheq_fM,2272
429
+ vellum/client/types/node_execution_rejected_body.py,sha256=lJhWcRzQHFyps5CZd3umO-_zKSdI0z7uf2anLKC8WtE,749
430
+ vellum/client/types/node_execution_rejected_event.py,sha256=xky5b181368IqsSqRrTqjEyBYJBQQlOmh3SOQGThKb8,2312
431
+ vellum/client/types/node_execution_resumed_body.py,sha256=wJqWB_6VWY8BPMNWonr5bsgtmRjD3MyIqeV8jqKEYRQ,677
432
+ vellum/client/types/node_execution_resumed_event.py,sha256=zLt1EQF-PzJ3PEZSRnpRji5WgnHZnq0iv0c3iUJLrAA,2292
433
+ vellum/client/types/node_execution_span.py,sha256=jGY_46s6Ws6mjTYu-f0h15xRZWkYHFeZijV71eJVRE4,2078
434
+ vellum/client/types/node_execution_span_attributes.py,sha256=yYVg7Hn-LhhDEQktnLCsZOPjxgd8jwks314MQB0Js8M,573
435
+ vellum/client/types/node_execution_streaming_body.py,sha256=cTFTydzZ0-iI08T2XMcQWuIkkcCvqttGkksroSagF34,738
436
+ vellum/client/types/node_execution_streaming_event.py,sha256=JiCoRwSo6vp5YFNqBJ-0GpgZ3_owcNzFu2_xnTYu3AM,2332
413
437
  vellum/client/types/node_input_compiled_array_value.py,sha256=-UO10E0Lx_f0ISmuHfQ3V0mJbyCOL--rqm_tTsv2aiQ,973
414
438
  vellum/client/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
415
439
  vellum/client/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
@@ -429,6 +453,7 @@ vellum/client/types/node_output_compiled_number_value.py,sha256=iBwBcPQuE0PZ50Q3
429
453
  vellum/client/types/node_output_compiled_search_results_value.py,sha256=oHKSncqdhE3q3SDjHqhRRSePvF24XRiwecZoTMdM_Uo,973
430
454
  vellum/client/types/node_output_compiled_string_value.py,sha256=pR_ku51KL_gwplMCiy6oT4sARnKP_0gZsTcLbVtOk_Y,880
431
455
  vellum/client/types/node_output_compiled_value.py,sha256=ADqSZuj1Gk0OdV9xrAfV--cW-6VrbBSZ7YZ_qFa0REs,1063
456
+ vellum/client/types/node_parent_context.py,sha256=22ONoA6b0-2lteNPYppmV4FSHrTp9iuKlUJwa_0pGTc,2012
432
457
  vellum/client/types/normalized_log_probs.py,sha256=XNfwhKgK9vPlJQh9dcup2Rl5mTlmV154rrIRsf3dYx8,706
433
458
  vellum/client/types/normalized_token_log_probs.py,sha256=C0VHuRQbbcCFzQ9fJNbNjXAc2aUMUT5MxIt929-KMEA,714
434
459
  vellum/client/types/number_input.py,sha256=e5hNmwXv-rBfkJ-SdwbJzU6UKY0ej2m6jO7uEKJ_n4M,739
@@ -454,6 +479,7 @@ vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=_NCKlKzs-8
454
479
  vellum/client/types/paginated_test_suite_test_case_list.py,sha256=9KrCCQKy0egMmVx5U2k6o1GjNrUYpVvGG_hm2cHqIzc,995
455
480
  vellum/client/types/paginated_workflow_release_tag_read_list.py,sha256=dH24ESWyAMVtyHsBkxG8kJ9oORY04Wn3IN-7jvV7Lu4,818
456
481
  vellum/client/types/paginated_workflow_sandbox_example_list.py,sha256=rCivuKp5fzVV8PdRwyiet7bEmLxX_1hv8N0vn0xaT70,817
482
+ vellum/client/types/parent_context.py,sha256=b9oAuC8P7mw5Ii_7sF93m-xOspp9NVGn2dZJwrttgZM,811
457
483
  vellum/client/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
458
484
  vellum/client/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
459
485
  vellum/client/types/plain_text_prompt_block.py,sha256=cqEN-B4mcvMw_9lBN7FQG8pk9b5LBJ9xpM6PTgkGiqs,930
@@ -463,6 +489,7 @@ vellum/client/types/prompt_block.py,sha256=quAME4X2doCO_DQ-U7v0Py-ZZy1Z5qypVVq2f
463
489
  vellum/client/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
464
490
  vellum/client/types/prompt_deployment_expand_meta_request.py,sha256=agsiAaHB6lDoZPlnfJ2nmhB4Ud4EiJJTX05YmduyCPo,1910
465
491
  vellum/client/types/prompt_deployment_input_request.py,sha256=KrT4-Ew2VvTWXEkYQz2oyHn5EDOgrMW7FzRFaPH3ARg,353
492
+ vellum/client/types/prompt_deployment_parent_context.py,sha256=eu8dYmRb789uZeFVzbRkJrErDYZXo35f2qaNBcY0wOQ,2319
466
493
  vellum/client/types/prompt_execution_meta.py,sha256=3hhMZgdAR5mKfnh2e_eVN3oKfT0E9w26khVPrpjn7jk,1141
467
494
  vellum/client/types/prompt_node_execution_meta.py,sha256=IyWH__nCp5uwS0N32b2ZEsA-Fv7AZDB4nnlRZayU2Gc,888
468
495
  vellum/client/types/prompt_node_result.py,sha256=3jewO-nPodoXTq_5RxgwhKfDZrvoPjRZ_vUXLeqiuHY,749
@@ -520,6 +547,9 @@ vellum/client/types/slim_deployment_read.py,sha256=Xqwjx1QSpWzEXx5QPrBv5UT1QrwTr
520
547
  vellum/client/types/slim_document.py,sha256=HJiymYPvRxfxhBUkD8epW0hQ2Vt9PQtv398QsRb4DsI,2395
521
548
  vellum/client/types/slim_document_document_to_document_index.py,sha256=vo7WbRRzbApQxT0MZu_NkjQmsFD8LoezmyeKBeGZpI8,1346
522
549
  vellum/client/types/slim_workflow_deployment.py,sha256=p8nVtnAjPYZArkuVZE40qDjXRXHPpEKvIngKE2NAmLE,2189
550
+ vellum/client/types/slim_workflow_execution_read.py,sha256=MvBIOlqunAYVmG-SUu4dIsz2LycBEE29WtHWmzpfPmw,2836
551
+ vellum/client/types/span_link.py,sha256=jVuwL7ki3UtoIRpcshXO1zGa_sGj2N5b8vPNKCqlto0,1748
552
+ vellum/client/types/span_link_type_enum.py,sha256=NaBXnHnOKMZvgHfjhwJJNqM4wuTOxtGkMIXjN2hU-6A,130
523
553
  vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
524
554
  vellum/client/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
525
555
  vellum/client/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQDe2n7YVLqxbhOaf6Ytc,736
@@ -633,6 +663,7 @@ vellum/client/types/upsert_test_suite_test_case_request.py,sha256=iB38vx4mo4yNLV
633
663
  vellum/client/types/variable_prompt_block.py,sha256=PZxTq_zu7wa5r2eTBbwCRL7hwDKaLaBT3URB1RR2WKw,946
634
664
  vellum/client/types/vellum_audio.py,sha256=oPm1bcxk7fTfWfHWOPSLvrZrRBjCyPDVDRMACPoWmMI,721
635
665
  vellum/client/types/vellum_audio_request.py,sha256=y9CZgQ1TteW0AHNk8GuAZLNVFa981rh7P9vyV8bfgys,728
666
+ vellum/client/types/vellum_code_resource_definition.py,sha256=-Y7pbKPBZv0CBrqOvnxHmXeRjy0908G0xXfoCpbpIwc,697
636
667
  vellum/client/types/vellum_document.py,sha256=DCTb0N-Y5bI9SHi8ykGiFCVT5WR1wucPN0VZV5MKitU,640
637
668
  vellum/client/types/vellum_document_request.py,sha256=FrokE5NWvTqSKoCKbBLiKq_4iqYaJC5WOwFJyYLdLFI,647
638
669
  vellum/client/types/vellum_error.py,sha256=jCKfuCkDTiyFb1-QyP2cg0wReja6wMuooKPAjNhBA0M,643
@@ -640,7 +671,11 @@ vellum/client/types/vellum_error_code_enum.py,sha256=OtW7fuM3RrRIDHbbJtk2FxPf70J
640
671
  vellum/client/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
641
672
  vellum/client/types/vellum_image.py,sha256=wkFRgxOkxFPrmRdWTO58_41_vk0HYn5k4xsc-5ywxEs,637
642
673
  vellum/client/types/vellum_image_request.py,sha256=_Gr4L7PSY8PNQINyTy04hPdwLc8_bR1RTUWZ73RQRYM,644
674
+ vellum/client/types/vellum_node_execution_event.py,sha256=64a6Gw9pGD5andcz1VOXI3fRjpoA_xiwv2T9GK6HLpA,735
675
+ vellum/client/types/vellum_sdk_error.py,sha256=_KG40V-1N8oQrSKAdalwmSd_7JXA0LUdEXtj5yPqx_I,656
676
+ vellum/client/types/vellum_sdk_error_code_enum.py,sha256=9lqUnPRvUW9tk5GASIE57FO3bc1RJoBTGcuFk5mGMA8,460
643
677
  vellum/client/types/vellum_secret.py,sha256=jru3nBCquZHZ3wEdpgKZNmy2WFh26PVKrTNaXeVSsZQ,555
678
+ vellum/client/types/vellum_span.py,sha256=V5P1z-OFqgQQAZjek2toYudlh-fCu0NTt5uKuKm9hd0,258
644
679
  vellum/client/types/vellum_value.py,sha256=Un9AeNlx0QZA9-eIGgA5nEdZU0_0vHfibiafJR0q8V4,1049
645
680
  vellum/client/types/vellum_value_logical_condition_group_request.py,sha256=vyr6lhHuS-6YtcFL5TTmPGtKRoNI9w63N7N2RPQwKVQ,1402
646
681
  vellum/client/types/vellum_value_logical_condition_request.py,sha256=HkZfj4X48UHFrPDHgUi3lp0MUGBMfroC0noNqZ_rW8o,1177
@@ -649,17 +684,43 @@ vellum/client/types/vellum_value_request.py,sha256=WAUV4RnyAG6t0k94QTY1FE4F8Hvpq
649
684
  vellum/client/types/vellum_variable.py,sha256=LNNNlYbT1VqadO6aUmeir9cXirtxgrIl-R2EalYZ5Uo,1123
650
685
  vellum/client/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
651
686
  vellum/client/types/vellum_variable_type.py,sha256=XUBG699lv7iXtpG3vUeBmTGfKE9u164IuJfzHeXWKJ8,391
687
+ vellum/client/types/vellum_workflow_execution_event.py,sha256=H8rP3_6a6LTvemoHfsmI2THpTRf8PYrZQcjoeTzf-44,934
688
+ vellum/client/types/workflow_deployment_event_executions_response.py,sha256=x7mZ4FWnOiqQ2rwaHtjCOnBLdlxfDKBGus4a5cRdfYA,2356
652
689
  vellum/client/types/workflow_deployment_history_item.py,sha256=4WUPzcthBvEZ7iaisKfEg0soUtHjcTEnL_VUVaKpTyw,1420
690
+ vellum/client/types/workflow_deployment_parent_context.py,sha256=QNyPj2o-jauaC48KrRjCWan1IKIbDgyuxLxURmhXsXM,2347
653
691
  vellum/client/types/workflow_deployment_read.py,sha256=tp1WaojTVE_dz1oiZ97h8ixMbIWDgy2yRu08A7wPMpw,2363
692
+ vellum/client/types/workflow_error.py,sha256=EQajkEmLS64T0wYm0goHQl0rT7Lguurk8pLwkhjsgAI,282
693
+ vellum/client/types/workflow_event_display_context.py,sha256=tnO9lgIJKnLtuS6xum_QilI83LjOmnWCLtnSHLn1oNo,929
654
694
  vellum/client/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
695
+ vellum/client/types/workflow_event_execution_read.py,sha256=Vrv2CmYWoIDbSkV1XGJWm04Ef6u_A85bJLSfWRmhPFc,3264
696
+ vellum/client/types/workflow_execution_actual.py,sha256=8-eGI91UTAw2g3EpSC-axH_OiIu3iKrm2ep5AkjoO2E,1025
655
697
  vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
656
698
  vellum/client/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB2bTznTMFExSZdBhTkmelf1h4Q,1931
657
699
  vellum/client/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
658
700
  vellum/client/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDHSdtwGgg0LWvM5yVQfnXYc4,425
659
701
  vellum/client/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
702
+ vellum/client/types/workflow_execution_fulfilled_body.py,sha256=4M9fQdJy7nH5Y1HLq9VVlfTNW4F9jlj4k5SWty9fFqQ,746
703
+ vellum/client/types/workflow_execution_fulfilled_event.py,sha256=ud3jxSpoo3D85vyEewsf4Eqv1AdBfwclOGmJu9lfOv8,2412
704
+ vellum/client/types/workflow_execution_initiated_body.py,sha256=KJQotYHEYD-_eiG2RAvZaxs4SetrFUtj6rDRh0pkaqQ,1269
705
+ vellum/client/types/workflow_execution_initiated_event.py,sha256=omvKr64bAXDE7u9dACOj95h6hcEGKrs1XNmLEYjUtiE,2772
660
706
  vellum/client/types/workflow_execution_node_result_event.py,sha256=wJNwOPwqOl1fBim9Y1rtHiNMoWBZ2xausdSddQI5Mg8,1136
707
+ vellum/client/types/workflow_execution_paused_body.py,sha256=35Q7Bs671cjHKJfQT0reZ7bsuKG3oaiBsb_QytjIWUU,805
708
+ vellum/client/types/workflow_execution_paused_event.py,sha256=LmXJZaE5pfMRjtrdVmxbH92SUrhogMmiHrmLgfkQ9Tc,2352
709
+ vellum/client/types/workflow_execution_rejected_body.py,sha256=9lrF3CdU3MaXMcaNP5UzEQGAnTW9hpcHA38zvzh3zgk,757
710
+ vellum/client/types/workflow_execution_rejected_event.py,sha256=SXjIqKfA-yLS_gCEy28f7j8d-cmbkhE596yPjnUKqNA,2392
711
+ vellum/client/types/workflow_execution_resumed_body.py,sha256=j8lwN0Bj3A3J4G9Nr2GoJ8ae28vNXnRNUemKgeBT7M8,685
712
+ vellum/client/types/workflow_execution_resumed_event.py,sha256=AFT6sH2AlsLT_uS4h_h7eF7tTI1kydPO-HDNkljzAoU,2372
713
+ vellum/client/types/workflow_execution_snapshotted_body.py,sha256=TByTfAwY20jS7tItCDl-4KAKCmvpycNN22pjJGoBFc4,746
714
+ vellum/client/types/workflow_execution_snapshotted_event.py,sha256=IwTW-1_iZuNOxTg_scppEMaxcW4zTGjsOGAejb858hA,2458
715
+ vellum/client/types/workflow_execution_span.py,sha256=n6NuDcQpjBJHOBQp8ymMjT65dm9r6TxFQjNxuui-_EI,2490
716
+ vellum/client/types/workflow_execution_span_attributes.py,sha256=SRW7mD-6uS8eA57EU6q2thBqSFfJSH4tXI9H3szZwYQ,575
717
+ vellum/client/types/workflow_execution_streaming_body.py,sha256=phni9pJKkFGsQ5IcS4ogtG1EjBzpdBiYpN9CPbkjxH8,746
718
+ vellum/client/types/workflow_execution_streaming_event.py,sha256=7kqgPJvfFmO3ZLMsvWCfID9ZnDXks09rwM_-2JnY4dc,2412
719
+ vellum/client/types/workflow_execution_usage_calculation_fulfilled_body.py,sha256=TyEIbdTWfvRjS3TGx44Mwttc274gRzLB9YjvkE0BmTw,729
720
+ vellum/client/types/workflow_execution_view_online_eval_metric_result.py,sha256=hMlGgmzLuO2pf7SK6jWoyqA4r-OUPkNFj8mN2vsGScU,987
661
721
  vellum/client/types/workflow_execution_workflow_result_event.py,sha256=rkv-qaiFEywtb_uSzyClGmq9jSgq-c7-mUznROhCAMU,1147
662
722
  vellum/client/types/workflow_expand_meta_request.py,sha256=-6I1Zveo3wFJEWbmSsN9OiOI7ekCJxF4xEL_ApB6XE8,1151
723
+ vellum/client/types/workflow_initialization_error.py,sha256=lXStuWnDb6yfOAMudRzVOxT1Nb-Moc7AB2gNcfwk8OU,639
663
724
  vellum/client/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx-RZYcx5W32Hs,951
664
725
  vellum/client/types/workflow_node_result_event.py,sha256=qnhruqkIcKRqP8uB-o-27shcruiT2pjgD7wdrPcp0NE,603
665
726
  vellum/client/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
@@ -673,6 +734,7 @@ vellum/client/types/workflow_output_json.py,sha256=MiCF-mq121YKZmYeaVpb3Tgh4XYqW
673
734
  vellum/client/types/workflow_output_number.py,sha256=p8APNBpl6c3e3dxCFvZtL0jyKOmu9s6LkY3vgXwhTMw,812
674
735
  vellum/client/types/workflow_output_search_results.py,sha256=r3RRGVVrH2H9NAuxA7qmG8lponyeLHHhCx6AUiMYWzc,903
675
736
  vellum/client/types/workflow_output_string.py,sha256=_jclzbQ-Wlf-7FEVTWXhs9h5FWfj4xGpiODZBOzT43w,810
737
+ vellum/client/types/workflow_parent_context.py,sha256=BexSLcTd9yKbp2rqnjMaAEsRqK3jq9HwN18fD4VMWrE,2050
676
738
  vellum/client/types/workflow_push_deployment_config_request.py,sha256=pG6bZtlw7S0TcXtNRQNa7y_2NodZe7dp5SchIrgRUVU,745
677
739
  vellum/client/types/workflow_push_exec_config.py,sha256=6TaVMVqhSOz4DnY46l8axPDtytSioXDl9nHvFXSxH1g,94
678
740
  vellum/client/types/workflow_push_response.py,sha256=1vUSZmZ1GK1242dAkNwJnJI0rL3pBT3_0HOLLjdiutw,724
@@ -694,6 +756,7 @@ vellum/client/types/workflow_result_event_output_data_number.py,sha256=OZYYUF3ay
694
756
  vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7ZvBG70ZBO4SEqbaNzIrV9Zn1NXabNh3M9v_hg,1172
695
757
  vellum/client/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
696
758
  vellum/client/types/workflow_sandbox_example.py,sha256=ZYFI7ZahyRYMNVmF8LZcF-_lkhqt95WiWXT6SpxnFHk,666
759
+ vellum/client/types/workflow_sandbox_parent_context.py,sha256=HZeVIHtsacv-SWWlHkBYM6mhADSTYSMUh6I9SizQyNw,2088
697
760
  vellum/client/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
698
761
  vellum/client/types/workspace_read.py,sha256=ocPtWvOwadqkU3z21bJgE4JeLYTAkOqBlKkc9lDDFFg,697
699
762
  vellum/client/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
@@ -724,7 +787,7 @@ vellum/evaluations/utils/env.py,sha256=Xj_nxsoU5ox06EOTjRopR4lrigQI6Le6qbWGltYoE
724
787
  vellum/evaluations/utils/exceptions.py,sha256=dXMAkzqbHV_AP5FjjbegPlfUE0zQDlpA3qOsoOJUxfg,49
725
788
  vellum/evaluations/utils/paginator.py,sha256=rEED_BJAXAM6tM1yMwHePNzszjq_tTq4NbQvi1jWQ_Q,697
726
789
  vellum/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
727
- vellum/plugins/pydantic.py,sha256=XpQQs_o8DQY_5gFFDzJzaXahUqR_l5TEI4b5ZoH9ob8,3528
790
+ vellum/plugins/pydantic.py,sha256=_kx82JIA050R67QAimgR7NQTuweSP7xLGW4qHLIepo4,3609
728
791
  vellum/plugins/utils.py,sha256=cPmxE9R2CK1bki2jKE8rB-G9zMf2pzHjSPDHFPXwd3Q,878
729
792
  vellum/plugins/vellum_mypy.py,sha256=QTuMSq6PiZW1dyTUZ5Bf1d4XkgFj0TKAgZLP8f4UgL4,27914
730
793
  vellum/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -794,6 +857,8 @@ vellum/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=bjLXbYHIiDaJrkzHJe
794
857
  vellum/types/add_openai_api_key_enum.py,sha256=d7yf_J3uFBltfE5wwQR_JH31NCXjzkRSpW0bXOF0FAM,161
795
858
  vellum/types/api_node_result.py,sha256=VrpkInL6qGJgQUmxo2-M90_Qsucc18qYVKao-QRE6lM,153
796
859
  vellum/types/api_node_result_data.py,sha256=lYRxTwl8hFRoGKlWP6PEuWaMD4me6nNUS0nc1GJaISU,158
860
+ vellum/types/api_request_parent_context.py,sha256=dY3ISQe4zsLyNR_8gziC3sR_cfY_IDDhfW85OJarvDA,164
861
+ vellum/types/api_version_enum.py,sha256=k_tKHRfbOMl4CF4-TT3DeefsATscBARoqSGQxu7MBp4,154
797
862
  vellum/types/array_chat_message_content.py,sha256=9W17tm_BVferYCWwx5kuY402zdTYBm1DWsnUwfkUb_U,164
798
863
  vellum/types/array_chat_message_content_item.py,sha256=g1m1y4X0sB19fBHdUWWAsnKhQ_G7cJZesUZBhpCWoXo,169
799
864
  vellum/types/array_chat_message_content_item_request.py,sha256=Vvq6GlBIfebQ-PbOyai_m5fVs_OsLYt6wMhHv0Urors,177
@@ -806,6 +871,7 @@ vellum/types/audio_chat_message_content_request.py,sha256=ySZZ8IARXUocjczLZ27CHE
806
871
  vellum/types/audio_prompt_block.py,sha256=zpQcvY3Fic82mPlPyOLCjZBBq0dFyCyKuGRkYNDWQko,156
807
872
  vellum/types/audio_vellum_value.py,sha256=-9HkLXeBD-IMh_TwKdmQVfAD_F0et2gYKT2ykb_jaAM,156
808
873
  vellum/types/audio_vellum_value_request.py,sha256=YuwrbVZK1EuUKkir5H9-ipeLTPfSF8h6Yy5lS_pAZg4,164
874
+ vellum/types/base_output.py,sha256=5fBRPScgqh4m13rbbfxszK03o8zg-Sa_bGp2kTmacMo,149
809
875
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=4PC3AVVZh7r0zbeY4pV-tpAFkt1EAuRjI0Rsc-s6WX0,186
810
876
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=NQd8lYb9HnO2UXOuri-8CdmN5lFdaRpXMdN3BJOm9JA,194
811
877
  vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=dgfImEIEWZKRWactZHRUnlmZrCSPh8Li5zfXxJUwfTY,204
@@ -838,6 +904,7 @@ vellum/types/code_execution_runtime.py,sha256=oiCjh4G4audj0XRb0jxgqz1jOTBieaYiGQ
838
904
  vellum/types/code_executor_input.py,sha256=LsuWE9ZcyktJFNd03ZQ0KCVVsqHT2EzUc8SAyjGMFcA,157
839
905
  vellum/types/code_executor_response.py,sha256=qW23-kF8gy_IoIfaVC-551k9tlC6M3KWFabnDJlWP9M,160
840
906
  vellum/types/code_executor_secret_input.py,sha256=k4F3TvZ0bm_vawTFOlFWjSwVML7t1UujL6LxhP5eiU4,164
907
+ vellum/types/code_resource_definition.py,sha256=TFRKiSa9II7QX7w3LBRK7Spuqm5jU5S3-N7kDASi0kw,162
841
908
  vellum/types/compile_prompt_deployment_expand_meta_request.py,sha256=gXZJpYawKJ2z5hAAxaSWGueyRPnUOQ4HsdC8RC_LbJc,183
842
909
  vellum/types/compile_prompt_meta.py,sha256=3WBjvEVnAqbIf-TajGtEWm0D-L_ZHm7MHo5_dD4N8jc,157
843
910
  vellum/types/components_schemas_pdf_search_result_meta_source.py,sha256=JuW2DXM7vd33IEpbrFF3NBVucydn_Lb96PqRbO5khsk,186
@@ -895,6 +962,7 @@ vellum/types/execution_number_vellum_value.py,sha256=rs7w_72tN3TFVpx-tlD-IGrap25
895
962
  vellum/types/execution_search_results_vellum_value.py,sha256=of3CXBuKUjHW0ZU3SeOe5XZKrSNz7HFnKwBVaPa7Lzg,175
896
963
  vellum/types/execution_string_vellum_value.py,sha256=MY47d3IJQj9PPThKsCZUFS8y80f3so3kDDaSW5pJYsA,167
897
964
  vellum/types/execution_vellum_value.py,sha256=VRe64r540rkdVWjWijd7Y5JsYM_9zw09QUUuorKHeXU,160
965
+ vellum/types/external_input_descriptor.py,sha256=-r6xPo7-1Ioq4XZ2nwcrg8OBoyVItKr-BeXspJwDWDQ,163
898
966
  vellum/types/external_test_case_execution.py,sha256=Av4H59SBBCZ9CZtT-eKD3n05lgljTqdtSZSjtsDpbc4,166
899
967
  vellum/types/external_test_case_execution_request.py,sha256=oJx3JSLU9aponZ53dY78ymcSZbQbHpAwnch9aq0F7ws,174
900
968
  vellum/types/finish_reason_enum.py,sha256=CIomSWB4DFcwnO92nIjQsI_TWMtJTxBFwnFSWVoATsY,156
@@ -957,6 +1025,7 @@ vellum/types/initiated_prompt_execution_meta.py,sha256=1p5PTDKhyQWGfO02w5XuxsLEW
957
1025
  vellum/types/initiated_workflow_node_result_event.py,sha256=t2ZG_qAz7aHjm881EIOwzcm-Pub2Dyn4CrdNy2nXVsk,174
958
1026
  vellum/types/instructor_vectorizer_config.py,sha256=-ydrbzjBMhDkV198rN6rEJsxkViplv1xkTTWk6OxP68,166
959
1027
  vellum/types/instructor_vectorizer_config_request.py,sha256=WVughx2NMndzE7lyE8gph7M_LoaJdHet9IJUH8rUb0Y,174
1028
+ vellum/types/invoked_port.py,sha256=vZUOhbmvydZyxm-dvjh-cVAY4F55Xc7TNEhNLwep7R8,150
960
1029
  vellum/types/iteration_state_enum.py,sha256=782UXz90fWfEkSxo9iJ1PYXB2UcmV_SgpjqZrI9ZrEc,158
961
1030
  vellum/types/jinja_prompt_block.py,sha256=PzJdqnRYhHn958T61ycJPJkggbpbuJ12JCBAztKZAj8,156
962
1031
  vellum/types/json_input.py,sha256=YGZLeWgoZzhrjEVfox1MLH9kD_EnBDTyFsalJRdsKtE,148
@@ -980,6 +1049,7 @@ vellum/types/metric_definition_input.py,sha256=TwMwjC_MNiLdodsvT52D7aa_wRY-0kT04
980
1049
  vellum/types/metric_node_result.py,sha256=Q_bUgbdRnSP26nEcJ-vZD7k2oLIcThN3JjW9hXTRfZo,156
981
1050
  vellum/types/ml_model_read.py,sha256=d_CPwZ3bhXtC8c5jwXkuNVvobDqPI-I_byZ6WnVla1Q,151
982
1051
  vellum/types/ml_model_usage.py,sha256=Q-7_W6GfL8rMnqjhSiZirw8oB60GFc0p_mNYdZdlMjY,152
1052
+ vellum/types/ml_model_usage_wrapper.py,sha256=anoup7KWug4Mrt-JhsB_S1zuKcdq9ncXsz3y8t_I52g,160
983
1053
  vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=Sfwba1cvocP8UR6CCDEjE7HsI5Xs6Dopk1W88Zf1ng8,194
984
1054
  vellum/types/named_scenario_input_json_variable_value_request.py,sha256=1kZ4Y7TttH8O897rmtkEIMraql5dTIyEVvFZn0I5Py8,186
985
1055
  vellum/types/named_scenario_input_request.py,sha256=E7TcL4YRw7dcEyMEws3AsiCw7GSHnrXpktBKOoVSytA,166
@@ -1003,6 +1073,21 @@ vellum/types/named_test_case_string_variable_value_request.py,sha256=yMc4MHFYQxp
1003
1073
  vellum/types/named_test_case_variable_value.py,sha256=IQUDNPYT5IDTaAE85Ux-IZOCfPXhkX6Q6THSYwuKDDM,168
1004
1074
  vellum/types/named_test_case_variable_value_request.py,sha256=6F5TyadMY5Syh0DlRjnQ2nHW5fzWR7WecKMqswF9Xl4,176
1005
1075
  vellum/types/new_member_join_behavior_enum.py,sha256=sXTcMrRvSzdLnDRrwQSeHdvZHwjDTW7ciHCX2SgGaVc,167
1076
+ vellum/types/node_event_display_context.py,sha256=6iO7mhcl3I_jmmIKz0-lk3oLgc5QkgA01-UJwDrbdWo,164
1077
+ vellum/types/node_execution_fulfilled_body.py,sha256=5q7mgPXXOJfg4MkEAwitpCmg7pRMJav3nkULeJtS9i8,167
1078
+ vellum/types/node_execution_fulfilled_event.py,sha256=jtCNpRkOaBk-RZAWFdM4_OpP7z8VYVqpEprGDF-4NPI,168
1079
+ vellum/types/node_execution_initiated_body.py,sha256=OWVhA7u8RZJw6YBcycDiViR8tx9BLbUCzi7DaBwhwP0,167
1080
+ vellum/types/node_execution_initiated_event.py,sha256=pCBzBmp7b4nThrx34EW7XIT17bwmsmsCrM_o9HrcYaY,168
1081
+ vellum/types/node_execution_paused_body.py,sha256=TxwzZ5jBhFzjNi0J-dzCNkM_CyAoVMgrDZdo5AA-W7s,164
1082
+ vellum/types/node_execution_paused_event.py,sha256=YlRrUkBCGKI4napj0S2b7IKekZahz-W-kLlGGmcbayE,165
1083
+ vellum/types/node_execution_rejected_body.py,sha256=dz7vLZI-lz_Uar6WYlQI-Q5-yIUQRrLURoRDN2867ys,166
1084
+ vellum/types/node_execution_rejected_event.py,sha256=ahA3RNUngkimHCyIqyGOpgq3nhixBAQ-va19B4nLpJI,167
1085
+ vellum/types/node_execution_resumed_body.py,sha256=sUpK7KOMxSvTKoOi_LoEX16RqHuT-WPtPnfBEvUbvrg,165
1086
+ vellum/types/node_execution_resumed_event.py,sha256=Dy7f9W1lU_iZZ-d8lPwkAhrrBIDw7BaMgfFCYTs4JFs,166
1087
+ vellum/types/node_execution_span.py,sha256=G9uHuCotgdhRr9VjSgTWe-ToFvJ1aHdru1JG6MLOtyE,157
1088
+ vellum/types/node_execution_span_attributes.py,sha256=rVzi3xFtYwnwf-rH72pVDHboa37Rgxe993aekDtmf-A,168
1089
+ vellum/types/node_execution_streaming_body.py,sha256=_H8iY2YJMISaHj3VgbgP5ouikbbf2I3coeILH_yazsc,167
1090
+ vellum/types/node_execution_streaming_event.py,sha256=4pELEdsFvwNB98V6dGVx6eR-AMFJrTxTgBayCM1jU_E,168
1006
1091
  vellum/types/node_input_compiled_array_value.py,sha256=o51UHGQsFz5RjPeI32LhYFIh8CZuSigoUlKCJzyqDk8,169
1007
1092
  vellum/types/node_input_compiled_chat_history_value.py,sha256=kRLGiBScTK2UGiSM67BeBRJNLGh_VZILbYDYZg-dLaM,176
1008
1093
  vellum/types/node_input_compiled_error_value.py,sha256=tQWYMhDOhZ8Cxo7HXzlEfgIiLXMnE8u7AeuwD3-oADM,169
@@ -1022,6 +1107,7 @@ vellum/types/node_output_compiled_number_value.py,sha256=5QBcXuHAe6KlfRalCkxI3WU
1022
1107
  vellum/types/node_output_compiled_search_results_value.py,sha256=ZeVjL9kMa_SvDkvtEvSgBpD1GQDQlSEjJejgcf5E6SM,179
1023
1108
  vellum/types/node_output_compiled_string_value.py,sha256=fC_Rsxv21-uWZDpkPvq64tVJnT99u_2neMv2H2HD0x8,171
1024
1109
  vellum/types/node_output_compiled_value.py,sha256=aXEQZ_Wat_SVa7-ExtMa3qfS9yIuxFCFn8bS5r3ojJo,164
1110
+ vellum/types/node_parent_context.py,sha256=DIcpehhaiZunn2S6eKeiy9LhTpDjmkKQP8ZNUk-WAq8,157
1025
1111
  vellum/types/normalized_log_probs.py,sha256=b7ID-1NbDQgUeyrU2-AOtzn88i8OJnOqBX540rIl11o,158
1026
1112
  vellum/types/normalized_token_log_probs.py,sha256=tJgp-93kM2eOI6zpI-VCONHUBxEOs5Tnw5GZk452q_4,164
1027
1113
  vellum/types/number_input.py,sha256=loHrHn6aZF1p6NVKr-a5t_jTB1xhTmSsbHBiOo9C-As,150
@@ -1047,6 +1133,7 @@ vellum/types/paginated_test_suite_run_execution_list.py,sha256=XEr928_4w9Rw9_q6d
1047
1133
  vellum/types/paginated_test_suite_test_case_list.py,sha256=LoyXDEr2yXrkniJ25HctBWvhqKQ987XItukUwPYUIhQ,173
1048
1134
  vellum/types/paginated_workflow_release_tag_read_list.py,sha256=XUeQn_6JPJ6K2qts-NZIEEZF94C3U2AosStc2k57eWY,178
1049
1135
  vellum/types/paginated_workflow_sandbox_example_list.py,sha256=FlPNK6QtzQL9yD-k_qpQrE8yMARrJRjk5aGf6ZTbGyY,177
1136
+ vellum/types/parent_context.py,sha256=z50nvSfKqZKrX-q6u5Ex3h6WzdM6_hb-9dBHWdTQ5AA,152
1050
1137
  vellum/types/pdf_search_result_meta_source.py,sha256=tkM53z99Zky8ifkcfj1HoS7k-scjy6xeVInVDjMTBzM,167
1051
1138
  vellum/types/pdf_search_result_meta_source_request.py,sha256=TW9FWTdqZi-SuERKkjMdrKBgQEq3RA4W9nwefm8it6k,175
1052
1139
  vellum/types/plain_text_prompt_block.py,sha256=K5tGXMDCVTLDIDOL17TjLvZD6pMaHnRtcSYfXOrzQMM,161
@@ -1056,6 +1143,7 @@ vellum/types/prompt_block.py,sha256=WU91uuWAvel_8EFjoBSJodOZdAVlZAFwQYCrT4Mt-dE,
1056
1143
  vellum/types/prompt_block_state.py,sha256=tKqNrZnHWjvfGS_6oIUTpdCPGxvRJa31Le6qWL_3198,156
1057
1144
  vellum/types/prompt_deployment_expand_meta_request.py,sha256=5dBdvjjK9zCKxrPMdKQPj6iG8A06GAlb_zazde6qZsU,175
1058
1145
  vellum/types/prompt_deployment_input_request.py,sha256=z8CxCZWnKW8BBZajQ6iDnz-2gaxU-FrnYrVe_MvC3FU,169
1146
+ vellum/types/prompt_deployment_parent_context.py,sha256=U9X9PvXhG6ZUE8RxLrH13xfqKvs3DOwbxzWmujoXTbg,170
1059
1147
  vellum/types/prompt_execution_meta.py,sha256=_5izDjusf-TM69zKhvXr5EHH4Fx9jfWkg8F5_KNJV-w,159
1060
1148
  vellum/types/prompt_node_execution_meta.py,sha256=cJoHlIn_lb_sLpQniB8eszRJvFI6mJij9QgUIiKtiCY,164
1061
1149
  vellum/types/prompt_node_result.py,sha256=9ootTTh8lscQ-0WE0-bqdmn7XFvpP7uavO-g7mPkA3Q,156
@@ -1113,6 +1201,9 @@ vellum/types/slim_deployment_read.py,sha256=grU1w1TDVLwQqbklQaoShBRwIjeurD5ZadeK
1113
1201
  vellum/types/slim_document.py,sha256=yhPuWFL65jMKdCEcMNBDqJZQc1UdYlH7tFJ1nkGwDL0,151
1114
1202
  vellum/types/slim_document_document_to_document_index.py,sha256=3FwldvGhBc0pkccorIE3eMi8hQ0swgCWgKQJ6-jIff0,178
1115
1203
  vellum/types/slim_workflow_deployment.py,sha256=wRfaObu07ouUTNln4QZuBiye2uuKh3kPPvz2h9sbmJU,162
1204
+ vellum/types/slim_workflow_execution_read.py,sha256=nQcAhL7OJu2ptMGgJsnG6FmNINR-ooJNhIRMVQFXQbI,166
1205
+ vellum/types/span_link.py,sha256=x4-yBxQD8ItR8c_nvdOeWfYtBOxJhrnAavrhKU65K3Y,147
1206
+ vellum/types/span_link_type_enum.py,sha256=AOirGhtsYzHtOFUcycfvlNRj2GBFGCqVLlkNJRDyNHE,157
1116
1207
  vellum/types/streaming_ad_hoc_execute_prompt_event.py,sha256=gKFR8SKLo837TRORLQtuQmikKGNrOSi7HeoSTsnLh3Y,175
1117
1208
  vellum/types/streaming_execute_prompt_event.py,sha256=9H0sLQjyLOH6lB1ouk4GFRmp4VkYjNQXh8p8auLzft8,168
1118
1209
  vellum/types/streaming_prompt_execution_meta.py,sha256=Ht-58cN9FJJ6LBPqorLsIlvw7Pczj3JfDoaE8Xf3eF8,169
@@ -1226,6 +1317,7 @@ vellum/types/upsert_test_suite_test_case_request.py,sha256=OXJ7FUI6xZzSP_Fiy0RQc
1226
1317
  vellum/types/variable_prompt_block.py,sha256=VxikMaLzWGTUP-wIRVEA3h26GLse4p_GS6BfHsS2-NE,159
1227
1318
  vellum/types/vellum_audio.py,sha256=88PG3RtnuP3NYrey_vntuFiOtnRCGLPmv_g5sjerEig,150
1228
1319
  vellum/types/vellum_audio_request.py,sha256=b1tBKEIuqvOmHPskSarw5bW0HSGay2ZdriuEnBPiFqc,158
1320
+ vellum/types/vellum_code_resource_definition.py,sha256=wJZwxdI6FyltO1J6Jw8oLaxf7Nti5B5WdCQg3BGbol8,169
1229
1321
  vellum/types/vellum_document.py,sha256=R3uMSsxR0QWnC6dsfnRXqQtnmblkZUziCLIVd4H_UH8,153
1230
1322
  vellum/types/vellum_document_request.py,sha256=BiFGTe8AqU88PgRT5uFB36GMby2wNZUb7Ygl8AQjc-c,161
1231
1323
  vellum/types/vellum_error.py,sha256=Z2QOtFuDSl2eJr22lhvQrL8_zgN9c2pliM4v6VGyrbc,150
@@ -1233,7 +1325,11 @@ vellum/types/vellum_error_code_enum.py,sha256=as6FP8wBHB5lTQ80x1d_G_i3Vu7i5EWUuk
1233
1325
  vellum/types/vellum_error_request.py,sha256=gjU_A4UWh91mirqIlPzX84iEmMT7JR3DoMPjDw9_2mQ,158
1234
1326
  vellum/types/vellum_image.py,sha256=Aju40iIofNXNiPw0gBG1BuV6FR16ZecNDORCPPB4oio,150
1235
1327
  vellum/types/vellum_image_request.py,sha256=ZNSTZub8Kuy0Arr3CriVgLojE5MZMnIongnx0Pq4QMA,158
1328
+ vellum/types/vellum_node_execution_event.py,sha256=nXLb4CdGjPAfA2lX7oaIalmVru34UqqFer28aJPmK54,165
1329
+ vellum/types/vellum_sdk_error.py,sha256=uT-jqEuvMB36VZMkBcrRvJ5l4A43xCGWs9lFznZVdpA,154
1330
+ vellum/types/vellum_sdk_error_code_enum.py,sha256=71HtaHZIMir92HccSyUynO0nz7FGShVaOTbQPMGKh2M,164
1236
1331
  vellum/types/vellum_secret.py,sha256=-eRj7iUevkqFnRgVIjYTDGZUx9_zhY-olHzBVyWXuvs,151
1332
+ vellum/types/vellum_span.py,sha256=jbjwh-qkXmfr08Z0cUBCOh18NpX-EtNuiTom1YiPTAc,149
1237
1333
  vellum/types/vellum_value.py,sha256=me0nmquE3UPpT47q6kzRKFFrTzTw4-q9lR1eK-A-1ow,150
1238
1334
  vellum/types/vellum_value_logical_condition_group_request.py,sha256=cdvckQ3IKVoxNIx2PGyGsBXxOGK39T4P_xEP9fDWJss,182
1239
1335
  vellum/types/vellum_value_logical_condition_request.py,sha256=R3qtJZw6Uo3Qh9MHyIZxWXrVssI3QtQopktdVN2UdSQ,176
@@ -1242,17 +1338,43 @@ vellum/types/vellum_value_request.py,sha256=O8OsytBNQXFlxpsS0b6NLlFPYwd8v2gMXoVG
1242
1338
  vellum/types/vellum_variable.py,sha256=rmjuD8hMydLF480--5tWlHbvu6qNaz0Hs9bSrJ8DPEI,153
1243
1339
  vellum/types/vellum_variable_extensions.py,sha256=wwKDv_yxtP7gQmfz5HF3zab-FOLt-0OMUYIsHgvrOC0,164
1244
1340
  vellum/types/vellum_variable_type.py,sha256=d3Zkf0ued1QrO90CMGTUnlyg2xT8nKGM4Nv6-L6W_Pg,158
1341
+ vellum/types/vellum_workflow_execution_event.py,sha256=EI7XANl17nOtYskD9b4FmdejkKsK7cFDwe9asr2xGC8,169
1342
+ vellum/types/workflow_deployment_event_executions_response.py,sha256=375mHiA7sucHeFSr0LlaLcVgV7F2QicMZaQiOrC5yOg,183
1245
1343
  vellum/types/workflow_deployment_history_item.py,sha256=dp5pwzOVO83KPwAbYeO3NXlKKHswGa0MTGX82nIhAIg,170
1344
+ vellum/types/workflow_deployment_parent_context.py,sha256=kB0eeRXagHqRnuDVA9B8aDlvBZVOmQ702JYXD8evh24,172
1246
1345
  vellum/types/workflow_deployment_read.py,sha256=dDGG27VP0bvC565JzeSOHJ-5Pvs7eCF4R8F9k8316bo,162
1346
+ vellum/types/workflow_error.py,sha256=7rZcYJG5jYr4IbEvgv57G6Lxutrdg43SD8mUerd58_A,152
1347
+ vellum/types/workflow_event_display_context.py,sha256=jiH4vHlWYdT_2zM8yxPox3fXjnFStzIO46N90B2TdNA,168
1247
1348
  vellum/types/workflow_event_error.py,sha256=n8yzIuTmfxKyGBKellmMhnCgi1d4fPkr0MvjR3sKOAI,158
1349
+ vellum/types/workflow_event_execution_read.py,sha256=5bZ6gkNfWuxWOuzvSPNA4QrVEdP8uGZPGN2ZpMgYBMg,167
1350
+ vellum/types/workflow_execution_actual.py,sha256=IrOLWopZHTwqNStG7u0xuo1OhHhD1SHz-1aXZiuJlfY,163
1248
1351
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=xR8LHjQtxzZ0PJECgDZ9qEIoPuwb8KY8GEvbsraB_Ak,184
1249
1352
  vellum/types/workflow_execution_actual_json_request.py,sha256=bMeY3YXJy_b6ygezFtJihHBKyImdxn3-TNf5gkFKQS0,176
1250
1353
  vellum/types/workflow_execution_actual_string_request.py,sha256=BRmnaTVWCyxR17BvOMmYM2ncGUxT8U3sR7mqUuAxzQE,178
1251
1354
  vellum/types/workflow_execution_event_error_code.py,sha256=UtARv4FXcfQ8Rw-eWUUVr3Il77cl-qpj2PIaOqYol3A,173
1252
1355
  vellum/types/workflow_execution_event_type.py,sha256=Fd78t9DwZPpWmkzEXtbbfD6pZq3hNiDHlyK7fN_ohB8,167
1356
+ vellum/types/workflow_execution_fulfilled_body.py,sha256=t2LOzIpyxYHgV5TwfrMRcwWNHmv6DM7IaFEsH6S3Kmk,171
1357
+ vellum/types/workflow_execution_fulfilled_event.py,sha256=SxmB17aIZ-4U7qVskQ4xt_-eGZBfJBPQyDYh5xlPZeM,172
1358
+ vellum/types/workflow_execution_initiated_body.py,sha256=qKKQPiz5UL7WC7k67KHSFC4CRlAULCF7Y3LHodl3-wU,171
1359
+ vellum/types/workflow_execution_initiated_event.py,sha256=oA3vXzwsCW69DyBLZl-N_SmsU42SQdO224x4WKXIp2k,172
1253
1360
  vellum/types/workflow_execution_node_result_event.py,sha256=pUlqTJGLnbnTrS4dLsPp-eIL8NcmCkntm1p6ZKd5ne0,174
1361
+ vellum/types/workflow_execution_paused_body.py,sha256=uGRnd2tZR-Ldls0Lm9MZNB-fwwVxQMQYHVa7zQ2B2bc,168
1362
+ vellum/types/workflow_execution_paused_event.py,sha256=XAdO3xVEx4NpqpVrkTE9HV6PdTyuOvAhEVFgvuGzqYU,169
1363
+ vellum/types/workflow_execution_rejected_body.py,sha256=8sKaMUqH3xObvqEuaRkFOo5zJ5jkFI5LeKmfecOAbVg,170
1364
+ vellum/types/workflow_execution_rejected_event.py,sha256=zp5F7F2o0jV-av40V7niWoN05QBrQw5OhUSSuRBcCrk,171
1365
+ vellum/types/workflow_execution_resumed_body.py,sha256=-tt7ua_O-Pi-UIA5iiDnca0c7VvHCHVxxcnAxUbtjhc,169
1366
+ vellum/types/workflow_execution_resumed_event.py,sha256=SvWvjSQ-Jb326_lLtQWuEUKE5hRglMI-OcmQF7DpCKQ,170
1367
+ vellum/types/workflow_execution_snapshotted_body.py,sha256=QSPhOLhA39wHg1Mu7zdoz-h23XcH6RZUptXv3RS_8ck,173
1368
+ vellum/types/workflow_execution_snapshotted_event.py,sha256=uiq52Bup2tiwmPSDilCf-ye_3QK7IhNKKTN_yjd1VfI,174
1369
+ vellum/types/workflow_execution_span.py,sha256=qnyiKgPrKKl0lvVtmpm09zOMTWKDBZ9nDtpByvn0KRs,161
1370
+ vellum/types/workflow_execution_span_attributes.py,sha256=LCyfr-e1lwrTpMge9agbjtVDxt1l1FTZK8koMqxy6VM,172
1371
+ vellum/types/workflow_execution_streaming_body.py,sha256=MjkV8RLMtFj1r0yGPIuhf4Dz_EFeVU2tN8Oz6-cPssQ,171
1372
+ vellum/types/workflow_execution_streaming_event.py,sha256=XDEyaGRMfR9cpaRJ-WCb0O-o4LAdoMPCbjRLdYI1r-0,172
1373
+ vellum/types/workflow_execution_usage_calculation_fulfilled_body.py,sha256=Vabch9oglYZehKyAvOuAKhbASKAoLWqK0dg7pqaa3s4,189
1374
+ vellum/types/workflow_execution_view_online_eval_metric_result.py,sha256=dLnk3CfQOAeYIO5kiR0U8SY4JcqFWvVYwkDL-LkA5Co,187
1254
1375
  vellum/types/workflow_execution_workflow_result_event.py,sha256=3bNxtChEfqny5eEazFcGmqQpmC8283Q0J2hxLje-uks,178
1255
1376
  vellum/types/workflow_expand_meta_request.py,sha256=Ahb7gjZekJ5qI0HGHLCbn3hCpkX08EnzeXEH_3ivB4E,166
1377
+ vellum/types/workflow_initialization_error.py,sha256=ZDbjOAEilOIpioDFdNolGIh8XFP0kssEmf0LEnLAMQw,167
1256
1378
  vellum/types/workflow_node_result_data.py,sha256=xJGaXn837DXVIXd8i9IrFuo3iTKufsUlgogwHnW_MZw,163
1257
1379
  vellum/types/workflow_node_result_event.py,sha256=6j8UAupnbsYlO1Qn4RbSMEvLRPhVFV3F2rIg-a2ocUY,164
1258
1380
  vellum/types/workflow_node_result_event_state.py,sha256=dsQ6jjkq1kh3sivg1iTDPSh1TZ8cLtbMqNrGydhZEoo,170
@@ -1266,6 +1388,7 @@ vellum/types/workflow_output_json.py,sha256=l-0a5YWNw2yZhNlZqCg8ZCJxY50EN8FRq4ew
1266
1388
  vellum/types/workflow_output_number.py,sha256=pGG-RV1O8zHrxHEPtb91WVFGlUeBezSkssSrMLzRxvA,160
1267
1389
  vellum/types/workflow_output_search_results.py,sha256=RmHbrJoRau6venf9aMa2iE-NG_qnWaKJcYSiWuhLs9Y,168
1268
1390
  vellum/types/workflow_output_string.py,sha256=9uvvzu98EtfRsmj6vV2bzz64i6c9QSTXhEjB1rpDJcQ,160
1391
+ vellum/types/workflow_parent_context.py,sha256=m7DQuz3Ii_wUF7H24r96FGxBjNCqtl9jG8ZyjQmdQK4,161
1269
1392
  vellum/types/workflow_push_deployment_config_request.py,sha256=fVyZAmSnZ9J1pZyYmT0hxSn9CcvoufGbAOg8pABhpOs,177
1270
1393
  vellum/types/workflow_push_exec_config.py,sha256=UCpZQx6no5gyaf-jNhqcKNqGyQ8xoKQwnCxpR6lkWoA,163
1271
1394
  vellum/types/workflow_push_response.py,sha256=3R8pxlK0HXaqJFMQ3ImohWmpAfPpLn-jaHmkc1lLA6g,160
@@ -1287,6 +1410,7 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=TtQhFjBxV8zc036N
1287
1410
  vellum/types/workflow_result_event_output_data_search_results.py,sha256=UNfCHLQ0jd5advLYdV7IBgmsRNzJ0PdDd3r2dNiIlgY,186
1288
1411
  vellum/types/workflow_result_event_output_data_string.py,sha256=rHEVbN0nyf-xoDoSIUEKlUKh6DDoguer4w0iN18JQ2I,178
1289
1412
  vellum/types/workflow_sandbox_example.py,sha256=PixQSt8aczB-oUT8qTL6k9nY-H2Mx7XvispKV0thUHM,162
1413
+ vellum/types/workflow_sandbox_parent_context.py,sha256=lMU9IJsXts6F1pe4-ODx9QXpeIb4l2VryQHSRoYZ9mg,169
1290
1414
  vellum/types/workflow_stream_event.py,sha256=PjHGgN0eJm5w-5FJ6__ASC1FU94Gsav_ko5JWkpVvK8,159
1291
1415
  vellum/types/workspace_read.py,sha256=9CvgvK8Li8vL6qC5KX7f3-nEHslJ4lw2w07bvXcrjA0,152
1292
1416
  vellum/types/workspace_secret_read.py,sha256=Z6QNXHxVHRdrLXSI31KxngePRwJTVoJYMXVbtPQwrxs,159
@@ -1377,9 +1501,9 @@ vellum/workflows/nodes/core/__init__.py,sha256=5zDMCmyt1v0HTJzlUBwq3U9L825yZGZhT
1377
1501
  vellum/workflows/nodes/core/error_node/__init__.py,sha256=g7RRnlHhqu4qByfLjBwCunmgGA8dI5gNsjS3h6TwlSI,60
1378
1502
  vellum/workflows/nodes/core/error_node/node.py,sha256=MFHU5vITYSK-L9CuMZ49In2ZeNLWnhZD0f8r5dWvb5Y,1270
1379
1503
  vellum/workflows/nodes/core/inline_subworkflow_node/__init__.py,sha256=nKNEH1QTl-1PcvmYoqSWEl0-t6gAur8GLTXHzklRQfM,84
1380
- vellum/workflows/nodes/core/inline_subworkflow_node/node.py,sha256=1RZ9x69qwziPupR5pkUQVTQnEaF4ieaJ8Uvx2gSbiow,6382
1504
+ vellum/workflows/nodes/core/inline_subworkflow_node/node.py,sha256=e-Mal5tZ6JXJdWn8MspoBbXC8LBaCVxKb4RjoHnuZ0A,6611
1381
1505
  vellum/workflows/nodes/core/inline_subworkflow_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1382
- vellum/workflows/nodes/core/inline_subworkflow_node/tests/test_node.py,sha256=BLmwLeWxgn6RgRKL8gi8bvV2ZfWnCTsqZDykTgJOjXg,3529
1506
+ vellum/workflows/nodes/core/inline_subworkflow_node/tests/test_node.py,sha256=kUqwcRMMxjTHALbwGUXCJT_aJBrHS1bkg49oL8R0JO8,4337
1383
1507
  vellum/workflows/nodes/core/map_node/__init__.py,sha256=MXpZYmGfhsMJHqqlpd64WiJRtbAtAMQz-_3fCU_cLV0,56
1384
1508
  vellum/workflows/nodes/core/map_node/node.py,sha256=dY27Xm11LHsqD7hnZnVYYDIazZ-XfL4_zatvWKTi6CU,9243
1385
1509
  vellum/workflows/nodes/core/map_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1387,7 +1511,7 @@ vellum/workflows/nodes/core/map_node/tests/test_node.py,sha256=uMR0AyIFn539LqTKH
1387
1511
  vellum/workflows/nodes/core/retry_node/__init__.py,sha256=lN2bIy5a3Uzhs_FYCrooADyYU6ZGShtvLKFWpelwPvo,60
1388
1512
  vellum/workflows/nodes/core/retry_node/node.py,sha256=SoDQaizjoj6kKLr454rkXu4bdzN7hXrBBn7T2_cp1CA,5261
1389
1513
  vellum/workflows/nodes/core/retry_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1390
- vellum/workflows/nodes/core/retry_node/tests/test_node.py,sha256=fNgDufkIsrTC-6ftvogqSpWhqqBj9iNESdfK19B1Yx0,5159
1514
+ vellum/workflows/nodes/core/retry_node/tests/test_node.py,sha256=RM_OHwxrHwyxvlQQBJPqVBxpedFuWQ9h2-Xa3kP75sc,4399
1391
1515
  vellum/workflows/nodes/core/templating_node/__init__.py,sha256=GmyuYo81_A1_Bz6id69ozVFS6FKiuDsZTiA3I6MaL2U,70
1392
1516
  vellum/workflows/nodes/core/templating_node/node.py,sha256=iqBmr2i-f-BqhisNQJiDfewjol0ur7-XpupLStyMJsg,3731
1393
1517
  vellum/workflows/nodes/core/templating_node/tests/test_templating_node.py,sha256=nXkgGDBg4wP36NwykdMEVWwx_xjv8oGT2rYkwuCB_VU,10075
@@ -1517,13 +1641,13 @@ vellum/workflows/utils/uuids.py,sha256=DFzPv9RCvsKhvdTEIQyfSek2A31D6S_QcmeLPbgrg
1517
1641
  vellum/workflows/utils/vellum_variables.py,sha256=UiGlUh0a8vel2FbW3w-xbHxSv_jNutkDdqMVtP_b42A,3385
1518
1642
  vellum/workflows/vellum_client.py,sha256=GxOy3dX6A04xiY69vPv1S4YGuQ_TMxwHi6WRMimQBBE,762
1519
1643
  vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
1520
- vellum/workflows/workflows/base.py,sha256=TSS2BHC8LAi-N5GdEa75BeChwzwTzL7yldFnTlLINro,22665
1644
+ vellum/workflows/workflows/base.py,sha256=VPG6XqBxxqjQBKM1okUkg10JyDlybltfZiANgy7iGFw,22696
1521
1645
  vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
1522
1646
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1523
- vellum/workflows/workflows/tests/test_base_workflow.py,sha256=NRteiICyJvDM5zrtUfq2fZoXcGQVaWC9xmNlLLVW0cU,7979
1647
+ vellum/workflows/workflows/tests/test_base_workflow.py,sha256=tCxrV3QBHL8wfdEO3bvKteDdw32xBlUl1_WxkAwaONw,8344
1524
1648
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1525
- vellum_ai-0.14.22.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1526
- vellum_ai-0.14.22.dist-info/METADATA,sha256=n1LtcR20giCKtaq1b6qilNyA4MKvG4EON_hG8EC8A9U,5484
1527
- vellum_ai-0.14.22.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1528
- vellum_ai-0.14.22.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1529
- vellum_ai-0.14.22.dist-info/RECORD,,
1649
+ vellum_ai-0.14.24.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1650
+ vellum_ai-0.14.24.dist-info/METADATA,sha256=eb9VJttYaBZqKdHGOIIAv6Pz2XxjEgZXBddFHyrXNNo,5484
1651
+ vellum_ai-0.14.24.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1652
+ vellum_ai-0.14.24.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1653
+ vellum_ai-0.14.24.dist-info/RECORD,,
@@ -1,15 +1,37 @@
1
- from dataclasses import dataclass
1
+ from dataclasses import dataclass, field
2
2
  from uuid import UUID
3
3
  from typing import TypeVar
4
4
 
5
+ from pydantic import Field
6
+
7
+ from vellum.client.core.pydantic_utilities import UniversalBaseModel
8
+ from vellum_ee.workflows.display.editor.types import NodeDisplayData
9
+
10
+
11
+ class WorkflowDisplayDataViewport(UniversalBaseModel):
12
+ x: float = 0.0
13
+ y: float = 0.0
14
+ zoom: float = 1.0
15
+
16
+
17
+ class WorkflowDisplayData(UniversalBaseModel):
18
+ viewport: WorkflowDisplayDataViewport = Field(default_factory=WorkflowDisplayDataViewport)
19
+
5
20
 
6
21
  @dataclass
7
- class WorkflowMetaDisplayOverrides:
8
- pass
22
+ class WorkflowMetaDisplay:
23
+ entrypoint_node_id: UUID
24
+ entrypoint_node_source_handle_id: UUID
25
+ entrypoint_node_display: NodeDisplayData = Field(default_factory=NodeDisplayData)
26
+ display_data: WorkflowDisplayData = field(default_factory=WorkflowDisplayData)
9
27
 
10
28
 
11
29
  @dataclass
12
- class WorkflowMetaDisplay(WorkflowMetaDisplayOverrides):
30
+ class WorkflowMetaDisplayOverrides(WorkflowMetaDisplay):
31
+ """
32
+ DEPRECATED: Use WorkflowMetaDisplay instead. Will be removed in 0.15.0
33
+ """
34
+
13
35
  pass
14
36
 
15
37
 
@@ -0,0 +1,7 @@
1
+ from .types import NodeDisplayComment, NodeDisplayData, NodeDisplayPosition
2
+
3
+ __all__ = [
4
+ "NodeDisplayComment",
5
+ "NodeDisplayData",
6
+ "NodeDisplayPosition",
7
+ ]