vellum-ai 0.14.22__py3-none-any.whl → 0.14.23__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 (139) 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/types/api_request_parent_context.py +3 -0
  67. vellum/types/api_version_enum.py +3 -0
  68. vellum/types/base_output.py +3 -0
  69. vellum/types/code_resource_definition.py +3 -0
  70. vellum/types/external_input_descriptor.py +3 -0
  71. vellum/types/invoked_port.py +3 -0
  72. vellum/types/ml_model_usage_wrapper.py +3 -0
  73. vellum/types/node_event_display_context.py +3 -0
  74. vellum/types/node_execution_fulfilled_body.py +3 -0
  75. vellum/types/node_execution_fulfilled_event.py +3 -0
  76. vellum/types/node_execution_initiated_body.py +3 -0
  77. vellum/types/node_execution_initiated_event.py +3 -0
  78. vellum/types/node_execution_paused_body.py +3 -0
  79. vellum/types/node_execution_paused_event.py +3 -0
  80. vellum/types/node_execution_rejected_body.py +3 -0
  81. vellum/types/node_execution_rejected_event.py +3 -0
  82. vellum/types/node_execution_resumed_body.py +3 -0
  83. vellum/types/node_execution_resumed_event.py +3 -0
  84. vellum/types/node_execution_span.py +3 -0
  85. vellum/types/node_execution_span_attributes.py +3 -0
  86. vellum/types/node_execution_streaming_body.py +3 -0
  87. vellum/types/node_execution_streaming_event.py +3 -0
  88. vellum/types/node_parent_context.py +3 -0
  89. vellum/types/parent_context.py +3 -0
  90. vellum/types/prompt_deployment_parent_context.py +3 -0
  91. vellum/types/slim_workflow_execution_read.py +3 -0
  92. vellum/types/span_link.py +3 -0
  93. vellum/types/span_link_type_enum.py +3 -0
  94. vellum/types/vellum_code_resource_definition.py +3 -0
  95. vellum/types/vellum_node_execution_event.py +3 -0
  96. vellum/types/vellum_sdk_error.py +3 -0
  97. vellum/types/vellum_sdk_error_code_enum.py +3 -0
  98. vellum/types/vellum_span.py +3 -0
  99. vellum/types/vellum_workflow_execution_event.py +3 -0
  100. vellum/types/workflow_deployment_event_executions_response.py +3 -0
  101. vellum/types/workflow_deployment_parent_context.py +3 -0
  102. vellum/types/workflow_error.py +3 -0
  103. vellum/types/workflow_event_display_context.py +3 -0
  104. vellum/types/workflow_event_execution_read.py +3 -0
  105. vellum/types/workflow_execution_actual.py +3 -0
  106. vellum/types/workflow_execution_fulfilled_body.py +3 -0
  107. vellum/types/workflow_execution_fulfilled_event.py +3 -0
  108. vellum/types/workflow_execution_initiated_body.py +3 -0
  109. vellum/types/workflow_execution_initiated_event.py +3 -0
  110. vellum/types/workflow_execution_paused_body.py +3 -0
  111. vellum/types/workflow_execution_paused_event.py +3 -0
  112. vellum/types/workflow_execution_rejected_body.py +3 -0
  113. vellum/types/workflow_execution_rejected_event.py +3 -0
  114. vellum/types/workflow_execution_resumed_body.py +3 -0
  115. vellum/types/workflow_execution_resumed_event.py +3 -0
  116. vellum/types/workflow_execution_snapshotted_body.py +3 -0
  117. vellum/types/workflow_execution_snapshotted_event.py +3 -0
  118. vellum/types/workflow_execution_span.py +3 -0
  119. vellum/types/workflow_execution_span_attributes.py +3 -0
  120. vellum/types/workflow_execution_streaming_body.py +3 -0
  121. vellum/types/workflow_execution_streaming_event.py +3 -0
  122. vellum/types/workflow_execution_usage_calculation_fulfilled_body.py +3 -0
  123. vellum/types/workflow_execution_view_online_eval_metric_result.py +3 -0
  124. vellum/types/workflow_initialization_error.py +3 -0
  125. vellum/types/workflow_parent_context.py +3 -0
  126. vellum/types/workflow_sandbox_parent_context.py +3 -0
  127. vellum/workflows/nodes/core/retry_node/tests/test_node.py +0 -23
  128. vellum/workflows/workflows/base.py +2 -2
  129. vellum/workflows/workflows/tests/test_base_workflow.py +10 -0
  130. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.23.dist-info}/METADATA +1 -1
  131. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.23.dist-info}/RECORD +139 -17
  132. vellum_ee/workflows/display/nodes/vellum/final_output_node.py +8 -0
  133. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py +8 -0
  134. vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py +12 -8
  135. vellum_ee/workflows/display/workflows/base_workflow_display.py +0 -6
  136. vellum_ee/workflows/display/workflows/tests/test_workflow_display.py +14 -0
  137. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.23.dist-info}/LICENSE +0 -0
  138. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.23.dist-info}/WHEEL +0 -0
  139. {vellum_ai-0.14.22.dist-info → vellum_ai-0.14.23.dist-info}/entry_points.txt +0 -0
@@ -37,7 +37,7 @@ vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py,sha256=Bzqplrnx-
37
37
  vellum_ee/workflows/display/nodes/vellum/code_execution_node.py,sha256=IYx0nll0t-tsPcjfgpfHMZE4FJgMFIsOiaQanGLYF0Q,4410
38
38
  vellum_ee/workflows/display/nodes/vellum/conditional_node.py,sha256=ybLIa4uclqVIy3VAQvI1ivg2tnK5Ug_1R5a69DFqL7E,11104
39
39
  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
40
+ vellum_ee/workflows/display/nodes/vellum/final_output_node.py,sha256=BJ--Y-LCbGFJve3OFEKHVxrw8TKvgb342opYLJibToc,3128
41
41
  vellum_ee/workflows/display/nodes/vellum/guardrail_node.py,sha256=aYZSJTxknU4LMiQdWk9LcK6CkhdozeDEMiRxfAyUNEc,2202
42
42
  vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py,sha256=3fJzrFoGJX_igzWKgXp7f7-owdVBG6xuy-kBSWNbNxc,8734
43
43
  vellum_ee/workflows/display/nodes/vellum/inline_subworkflow_node.py,sha256=MU9I8CB1X1TgL1aa1eT6DHWwNJ-2v79t74xl0oy-fBo,5510
@@ -84,18 +84,18 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_prompt_deplo
84
84
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_search_node_serialization.py,sha256=elc4ak2OyI4y5P6GPnK2RwuZLcx4FL6hHlmhY3ARk6k,13008
85
85
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py,sha256=BzFNl9ECeGh0krm-CUjbBQQq0g7krANsp0Sh-j5dAkc,11322
86
86
  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
87
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=UrueKI15Ez-DRfZpZH82o127v0LRXLP-s308kjDTPMI,4084
88
88
  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
89
+ vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=zXTjfjUdji0WBu6ZhocvM4UiXEWFJIpds24sxV9TZT0,7714
90
90
  vellum_ee/workflows/display/types.py,sha256=UZ23Hv2ULWFrMaG1mRSbVnPEa9YvuLlv0dOMkA2j5_Y,2466
91
91
  vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
92
  vellum_ee/workflows/display/utils/expressions.py,sha256=9FpOslDI-RCR5m4TgAu9KCHh4aTVnh7CHR2ykyMUDw0,1151
93
93
  vellum_ee/workflows/display/utils/vellum.py,sha256=EVPQUSsZ3OIeLTEbV6LHPor37t9fnj9kJxDqP4PmTLQ,8234
94
94
  vellum_ee/workflows/display/vellum.py,sha256=bevbLCd2KqJBKqJ3lQayeRfjY7x1Djf57F9iJ-6KBJw,5162
95
95
  vellum_ee/workflows/display/workflows/__init__.py,sha256=kapXsC67VJcgSuiBMa86FdePG5A9kMB5Pi4Uy1O2ob4,207
96
- vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=cvpDj5gDzoO1Sdt8BCo1acvZsNb30bpX-xGftl3u0xE,19940
96
+ vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=YRz485jI0O_eDx3QRZYdf3jFtbPamBglMPS2EZKXTeE,19603
97
97
  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
98
+ vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=zHpeXrSFPtiQuoaLwbfMUJAmtxvEiReeOYVwXzD1qIQ,10617
99
99
  vellum_ee/workflows/display/workflows/vellum_workflow_display.py,sha256=AS-vMrM93KEjb02-ye0Il29l3bX74o0Q8P2Nvf9NIZ0,16683
100
100
  vellum_ee/workflows/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
101
  vellum_ee/workflows/server/virtual_file_loader.py,sha256=ET-Q83W5Cgqzqz3qtFNwtS2nJEIcm3VtvR5kffsT3VY,2262
@@ -121,12 +121,12 @@ vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIP
121
121
  vellum_ee/workflows/tests/test_display_meta.py,sha256=C25dErwghPNXio49pvSRxyOuc96srH6eYEwTAWdE2zY,2258
122
122
  vellum_ee/workflows/tests/test_server.py,sha256=IWqjJXSbVFuV3w6b9lB3N6yoVAHJicmJuubASvw5QQM,2276
123
123
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
124
- vellum/__init__.py,sha256=qJRjommzKdcsfZUNkqN2k1BuOwVVSuX4Nuv9ITCz1AM,36536
124
+ vellum/__init__.py,sha256=rrAlrZ6a7m7t8FTl5cPkoAPl3He9_SHwkG5V2QR0K1I,40442
125
125
  vellum/client/README.md,sha256=JkCJjmMZl4jrPj46pkmL9dpK4gSzQQmP5I7z4aME4LY,4749
126
126
  vellum/client/__init__.py,sha256=tKtdM1_GqmGq1gpi9ydWD_T-MM7fPn8QdHh8ww19cNI,117564
127
127
  vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
128
128
  vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
129
- vellum/client/core/client_wrapper.py,sha256=DpiUwVloITIZTAtfFwbXdgMJxWZ-qVWlr-Qx6Kc1pZc,1869
129
+ vellum/client/core/client_wrapper.py,sha256=ZreSjScbQcW_5PwQSZMU9AXIjX1VTwTOWrmoCvLNq-I,1869
130
130
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
131
131
  vellum/client/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
132
132
  vellum/client/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
@@ -175,7 +175,7 @@ vellum/client/resources/test_suite_runs/client.py,sha256=tU-N1fEfXQPomt2f058PUNI
175
175
  vellum/client/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
176
176
  vellum/client/resources/test_suites/client.py,sha256=SlO-IXyhddm1U6WtrLIUUvlImf2vXC22bX2n9fpp6-c,25969
177
177
  vellum/client/resources/workflow_deployments/__init__.py,sha256=_duH6m1CDWcfqX6DTBNjO3ar4Xrl-f5PozMaTcT4Kow,251
178
- vellum/client/resources/workflow_deployments/client.py,sha256=H9MhGYZVx1WLHE5j83Sl5HmX-CF6aJFCwQAGDG1n2oI,27149
178
+ vellum/client/resources/workflow_deployments/client.py,sha256=6ET6qbuMSwWWWu_q-PUcS10CVIWVEUjvYppZ_F3qfXc,35220
179
179
  vellum/client/resources/workflow_deployments/types/__init__.py,sha256=W7DKJ1nduwhRckYLvH7wHLdaGH9MXHTZkxwG7FdTngY,340
180
180
  vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
181
181
  vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
@@ -191,7 +191,7 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
191
191
  vellum/client/resources/workspace_secrets/client.py,sha256=h7UzXLyTttPq1t-JZGMg1BWxypxJvBGUdqg7KGT7MK4,8027
192
192
  vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
193
193
  vellum/client/resources/workspaces/client.py,sha256=RthwzN1o-Jxwg5yyNNodavFyNUSxfLoTv26w3mRR5g8,3595
194
- vellum/client/types/__init__.py,sha256=H2K-qwJM2gg5ZOMIXT56gwK1Vr0iV45hb11ON5z_dL4,55005
194
+ vellum/client/types/__init__.py,sha256=cS2OoTCLARsxyRef9i2mt_WgggGQG28eTl-sTYaIhfU,61154
195
195
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
196
196
  vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
197
197
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
@@ -201,6 +201,8 @@ vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=OVSyUL81lpk
201
201
  vellum/client/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
202
202
  vellum/client/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
203
203
  vellum/client/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
204
+ vellum/client/types/api_request_parent_context.py,sha256=pHEo3pxzQHSsIf34MRQ1dFfpHBvYREphIdbTBM-hKs0,1949
205
+ vellum/client/types/api_version_enum.py,sha256=CfNOk0cJ_VfIlKwD4ORH-v8z0KHP3u0Xolu_8ze86To,126
204
206
  vellum/client/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
205
207
  vellum/client/types/array_chat_message_content_item.py,sha256=udxHZTZLQ1Ekg6X1D616a61crYxlQDz8QU6-CAHznrQ,625
206
208
  vellum/client/types/array_chat_message_content_item_request.py,sha256=3ULz8jtWvJIGl2SaGfw_hX9sKJxZaM4uUrZXyORlMhQ,742
@@ -213,6 +215,7 @@ vellum/client/types/audio_chat_message_content_request.py,sha256=0iy-fv_AYp_3FIJ
213
215
  vellum/client/types/audio_prompt_block.py,sha256=4gbzRmZfT_crv3YcGTq265LE-HnzB_bxxtK0aUKzEJY,1013
214
216
  vellum/client/types/audio_vellum_value.py,sha256=8tbwNkj5UtnjZhFIQZ18O233yCt4fK3BhXpR7S5VEt4,745
215
217
  vellum/client/types/audio_vellum_value_request.py,sha256=KnEyYDvTVqNdYcb4v2AGs5nLbcWFSj351_A9nM2ad8Y,774
218
+ vellum/client/types/base_output.py,sha256=WsCnB8EYCuGp96pKIFaOFWPmvRcJkg2I4ihM2zcPYL4,715
216
219
  vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
217
220
  vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
218
221
  vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
@@ -245,6 +248,7 @@ vellum/client/types/code_execution_runtime.py,sha256=ucMXj7mUYl9-B_KentTfRuRIeDq
245
248
  vellum/client/types/code_executor_input.py,sha256=Dj6XRaIRHjbXDZ-wR_XusJkrxYD_lJ1-UZY0Ga4xeqI,694
246
249
  vellum/client/types/code_executor_response.py,sha256=iG3q95G7sXABhdkh81DhBYKHKrgZAFK1SvOa3Su6giM,849
247
250
  vellum/client/types/code_executor_secret_input.py,sha256=GmQG38-iQ6wTIvRw3fglOLepuw3LDL2I3joNXn3z-WA,766
251
+ vellum/client/types/code_resource_definition.py,sha256=Yuw7osTazRMK3fsVSpLl8DUFq9M9Xzu7yRkGQEv-ats,835
248
252
  vellum/client/types/compile_prompt_deployment_expand_meta_request.py,sha256=z0iMR9nLGz5h2MbqamIwUxB8EiXGvqdf0tlYAQsBFbA,1136
249
253
  vellum/client/types/compile_prompt_meta.py,sha256=lQOFdrhMpzMOf_hasn4vb1AKnX2VuASr-1evaugJ4ro,848
250
254
  vellum/client/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R6zLakrJMMn_1z9FIylBcxencQ6JHVPs7HSg,206
@@ -302,6 +306,7 @@ vellum/client/types/execution_number_vellum_value.py,sha256=b2TpqyafRHCdl6EhgctN
302
306
  vellum/client/types/execution_search_results_vellum_value.py,sha256=HkxoXaUF6pMbfXd5wLk5VKmcXed2IRfEzkxsoGpwmg0,898
303
307
  vellum/client/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBggP7XkcdE_D2lGmEobkXWY7o,807
304
308
  vellum/client/types/execution_vellum_value.py,sha256=PpbrbJdSioqaqT2gZ6mx2Ht0Oy8XGyxBDcLFfPqUBIA,980
309
+ vellum/client/types/external_input_descriptor.py,sha256=ErOW2OfFMz1FDGmVY6NgiUBPsleaWhdJBekwFp4ru7o,805
305
310
  vellum/client/types/external_test_case_execution.py,sha256=CzO7IM3uINXQfOHWjEVvRqwRcp5_JWWtyXVxMQGHl_c,1063
306
311
  vellum/client/types/external_test_case_execution_request.py,sha256=5nZWMZnDPqQSmmcnIM5Cz6VxA6YQrcfmdWw7d2Da3cY,1128
307
312
  vellum/client/types/finish_reason_enum.py,sha256=KoNjzvXMHDCT0AUhhwGoZ1_7bi4h3fZEFvvHyGyoTP8,169
@@ -364,6 +369,7 @@ vellum/client/types/initiated_prompt_execution_meta.py,sha256=pnRjcPnVRp650k0W7k
364
369
  vellum/client/types/initiated_workflow_node_result_event.py,sha256=Nu1J4iQYsW2HHjQFzQq-ZQAQtEmS95pPnHOZZDdPrcU,1407
365
370
  vellum/client/types/instructor_vectorizer_config.py,sha256=7udlosXv4CUWTW_Q9m0mz3VRi1FKSbBhDIOhtxRd0-U,731
366
371
  vellum/client/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqEMVdr3KJHEps0oDp2bNmqWbM,738
372
+ vellum/client/types/invoked_port.py,sha256=N1O7b1HyBGhkUdcAbKdEWlzVE-UPA14B762cNGU5qhA,554
367
373
  vellum/client/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
368
374
  vellum/client/types/jinja_prompt_block.py,sha256=-wukO4TaDvGlrbkg9ZtDOPEfoLmaoX7830ktLGHRrvI,939
369
375
  vellum/client/types/json_input.py,sha256=ZUA2O9YueBCx0IMMdB8uYNSWJiSDZxMm5ogwbwCmz_g,761
@@ -387,6 +393,7 @@ vellum/client/types/metric_definition_input.py,sha256=4nmwpPqbeNQYCzLkXCkc-FGV5K
387
393
  vellum/client/types/metric_node_result.py,sha256=YdKq1DZiBD1RBtjyMejImylv3BqrwY8B_UF4Ij-6_64,660
388
394
  vellum/client/types/ml_model_read.py,sha256=Vr5KjaS2Tca0GXsltfSYQpuyGYpgIahPEFfS6HfFGSo,706
389
395
  vellum/client/types/ml_model_usage.py,sha256=WcZ2F1hfxyTwe-spOVwv-qJYDjs4hf9sn7BF2abawPo,910
396
+ vellum/client/types/ml_model_usage_wrapper.py,sha256=K0V5O-NqB12FAKUcBb9r3b25u4x-4jFcef2-V1PQhMU,645
390
397
  vellum/client/types/named_scenario_input_chat_history_variable_value_request.py,sha256=aVZmAxu-47c34NyhSkfi9tQqIPy29cdJ7Pb4MIgKeNw,862
391
398
  vellum/client/types/named_scenario_input_json_variable_value_request.py,sha256=UgnKv70zFviv1kl4nM7aM7IFA-7xyDOtglW4Y3GBZ28,757
392
399
  vellum/client/types/named_scenario_input_request.py,sha256=Pi8l377OHvKBwvPu9slZ1omf_NJ9S1mCQ5Wr-Ux5KVg,611
@@ -410,6 +417,21 @@ vellum/client/types/named_test_case_string_variable_value_request.py,sha256=Bv7L
410
417
  vellum/client/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
411
418
  vellum/client/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
412
419
  vellum/client/types/new_member_join_behavior_enum.py,sha256=s9Z_6JKM6R4gPNtIJYCe84_DNBHucj6dHOx6bdFPoLo,258
420
+ vellum/client/types/node_event_display_context.py,sha256=5pAeD9kbSqUYYVz-v67-n8LhKsXRVUnjH19HIimJs-Y,1079
421
+ vellum/client/types/node_execution_fulfilled_body.py,sha256=lK9XgCT0d94DByMfMyMdBaLa2CvxLQ10f71y6hBic5c,885
422
+ vellum/client/types/node_execution_fulfilled_event.py,sha256=U0k343TyZXztihM1oLH63yQdWo5P_Nk7jcHkDMTu7JU,2332
423
+ vellum/client/types/node_execution_initiated_body.py,sha256=SFHnxmbHC_NWDyIjIkT8JPuTsaRpYIywQsTDUReqvkQ,737
424
+ vellum/client/types/node_execution_initiated_event.py,sha256=yRDccy6cE6b1C825mzGkNiN9sKq9HGEjRv4WAtsPERE,2332
425
+ vellum/client/types/node_execution_paused_body.py,sha256=JwGYfmQ1g9jCDM36wLgM6xkYo1YY7M4VIvCowzaNb5A,676
426
+ vellum/client/types/node_execution_paused_event.py,sha256=m7WHAp2OuQMyNO0mU8xl_u_4Pi9wTdL5Eyuejheq_fM,2272
427
+ vellum/client/types/node_execution_rejected_body.py,sha256=lJhWcRzQHFyps5CZd3umO-_zKSdI0z7uf2anLKC8WtE,749
428
+ vellum/client/types/node_execution_rejected_event.py,sha256=xky5b181368IqsSqRrTqjEyBYJBQQlOmh3SOQGThKb8,2312
429
+ vellum/client/types/node_execution_resumed_body.py,sha256=wJqWB_6VWY8BPMNWonr5bsgtmRjD3MyIqeV8jqKEYRQ,677
430
+ vellum/client/types/node_execution_resumed_event.py,sha256=zLt1EQF-PzJ3PEZSRnpRji5WgnHZnq0iv0c3iUJLrAA,2292
431
+ vellum/client/types/node_execution_span.py,sha256=jGY_46s6Ws6mjTYu-f0h15xRZWkYHFeZijV71eJVRE4,2078
432
+ vellum/client/types/node_execution_span_attributes.py,sha256=yYVg7Hn-LhhDEQktnLCsZOPjxgd8jwks314MQB0Js8M,573
433
+ vellum/client/types/node_execution_streaming_body.py,sha256=cTFTydzZ0-iI08T2XMcQWuIkkcCvqttGkksroSagF34,738
434
+ vellum/client/types/node_execution_streaming_event.py,sha256=JiCoRwSo6vp5YFNqBJ-0GpgZ3_owcNzFu2_xnTYu3AM,2332
413
435
  vellum/client/types/node_input_compiled_array_value.py,sha256=-UO10E0Lx_f0ISmuHfQ3V0mJbyCOL--rqm_tTsv2aiQ,973
414
436
  vellum/client/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
415
437
  vellum/client/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
@@ -429,6 +451,7 @@ vellum/client/types/node_output_compiled_number_value.py,sha256=iBwBcPQuE0PZ50Q3
429
451
  vellum/client/types/node_output_compiled_search_results_value.py,sha256=oHKSncqdhE3q3SDjHqhRRSePvF24XRiwecZoTMdM_Uo,973
430
452
  vellum/client/types/node_output_compiled_string_value.py,sha256=pR_ku51KL_gwplMCiy6oT4sARnKP_0gZsTcLbVtOk_Y,880
431
453
  vellum/client/types/node_output_compiled_value.py,sha256=ADqSZuj1Gk0OdV9xrAfV--cW-6VrbBSZ7YZ_qFa0REs,1063
454
+ vellum/client/types/node_parent_context.py,sha256=22ONoA6b0-2lteNPYppmV4FSHrTp9iuKlUJwa_0pGTc,2012
432
455
  vellum/client/types/normalized_log_probs.py,sha256=XNfwhKgK9vPlJQh9dcup2Rl5mTlmV154rrIRsf3dYx8,706
433
456
  vellum/client/types/normalized_token_log_probs.py,sha256=C0VHuRQbbcCFzQ9fJNbNjXAc2aUMUT5MxIt929-KMEA,714
434
457
  vellum/client/types/number_input.py,sha256=e5hNmwXv-rBfkJ-SdwbJzU6UKY0ej2m6jO7uEKJ_n4M,739
@@ -454,6 +477,7 @@ vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=_NCKlKzs-8
454
477
  vellum/client/types/paginated_test_suite_test_case_list.py,sha256=9KrCCQKy0egMmVx5U2k6o1GjNrUYpVvGG_hm2cHqIzc,995
455
478
  vellum/client/types/paginated_workflow_release_tag_read_list.py,sha256=dH24ESWyAMVtyHsBkxG8kJ9oORY04Wn3IN-7jvV7Lu4,818
456
479
  vellum/client/types/paginated_workflow_sandbox_example_list.py,sha256=rCivuKp5fzVV8PdRwyiet7bEmLxX_1hv8N0vn0xaT70,817
480
+ vellum/client/types/parent_context.py,sha256=b9oAuC8P7mw5Ii_7sF93m-xOspp9NVGn2dZJwrttgZM,811
457
481
  vellum/client/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
458
482
  vellum/client/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
459
483
  vellum/client/types/plain_text_prompt_block.py,sha256=cqEN-B4mcvMw_9lBN7FQG8pk9b5LBJ9xpM6PTgkGiqs,930
@@ -463,6 +487,7 @@ vellum/client/types/prompt_block.py,sha256=quAME4X2doCO_DQ-U7v0Py-ZZy1Z5qypVVq2f
463
487
  vellum/client/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
464
488
  vellum/client/types/prompt_deployment_expand_meta_request.py,sha256=agsiAaHB6lDoZPlnfJ2nmhB4Ud4EiJJTX05YmduyCPo,1910
465
489
  vellum/client/types/prompt_deployment_input_request.py,sha256=KrT4-Ew2VvTWXEkYQz2oyHn5EDOgrMW7FzRFaPH3ARg,353
490
+ vellum/client/types/prompt_deployment_parent_context.py,sha256=eu8dYmRb789uZeFVzbRkJrErDYZXo35f2qaNBcY0wOQ,2319
466
491
  vellum/client/types/prompt_execution_meta.py,sha256=3hhMZgdAR5mKfnh2e_eVN3oKfT0E9w26khVPrpjn7jk,1141
467
492
  vellum/client/types/prompt_node_execution_meta.py,sha256=IyWH__nCp5uwS0N32b2ZEsA-Fv7AZDB4nnlRZayU2Gc,888
468
493
  vellum/client/types/prompt_node_result.py,sha256=3jewO-nPodoXTq_5RxgwhKfDZrvoPjRZ_vUXLeqiuHY,749
@@ -520,6 +545,9 @@ vellum/client/types/slim_deployment_read.py,sha256=Xqwjx1QSpWzEXx5QPrBv5UT1QrwTr
520
545
  vellum/client/types/slim_document.py,sha256=HJiymYPvRxfxhBUkD8epW0hQ2Vt9PQtv398QsRb4DsI,2395
521
546
  vellum/client/types/slim_document_document_to_document_index.py,sha256=vo7WbRRzbApQxT0MZu_NkjQmsFD8LoezmyeKBeGZpI8,1346
522
547
  vellum/client/types/slim_workflow_deployment.py,sha256=p8nVtnAjPYZArkuVZE40qDjXRXHPpEKvIngKE2NAmLE,2189
548
+ vellum/client/types/slim_workflow_execution_read.py,sha256=MvBIOlqunAYVmG-SUu4dIsz2LycBEE29WtHWmzpfPmw,2836
549
+ vellum/client/types/span_link.py,sha256=jVuwL7ki3UtoIRpcshXO1zGa_sGj2N5b8vPNKCqlto0,1748
550
+ vellum/client/types/span_link_type_enum.py,sha256=NaBXnHnOKMZvgHfjhwJJNqM4wuTOxtGkMIXjN2hU-6A,130
523
551
  vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
524
552
  vellum/client/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
525
553
  vellum/client/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQDe2n7YVLqxbhOaf6Ytc,736
@@ -633,6 +661,7 @@ vellum/client/types/upsert_test_suite_test_case_request.py,sha256=iB38vx4mo4yNLV
633
661
  vellum/client/types/variable_prompt_block.py,sha256=PZxTq_zu7wa5r2eTBbwCRL7hwDKaLaBT3URB1RR2WKw,946
634
662
  vellum/client/types/vellum_audio.py,sha256=oPm1bcxk7fTfWfHWOPSLvrZrRBjCyPDVDRMACPoWmMI,721
635
663
  vellum/client/types/vellum_audio_request.py,sha256=y9CZgQ1TteW0AHNk8GuAZLNVFa981rh7P9vyV8bfgys,728
664
+ vellum/client/types/vellum_code_resource_definition.py,sha256=-Y7pbKPBZv0CBrqOvnxHmXeRjy0908G0xXfoCpbpIwc,697
636
665
  vellum/client/types/vellum_document.py,sha256=DCTb0N-Y5bI9SHi8ykGiFCVT5WR1wucPN0VZV5MKitU,640
637
666
  vellum/client/types/vellum_document_request.py,sha256=FrokE5NWvTqSKoCKbBLiKq_4iqYaJC5WOwFJyYLdLFI,647
638
667
  vellum/client/types/vellum_error.py,sha256=jCKfuCkDTiyFb1-QyP2cg0wReja6wMuooKPAjNhBA0M,643
@@ -640,7 +669,11 @@ vellum/client/types/vellum_error_code_enum.py,sha256=OtW7fuM3RrRIDHbbJtk2FxPf70J
640
669
  vellum/client/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
641
670
  vellum/client/types/vellum_image.py,sha256=wkFRgxOkxFPrmRdWTO58_41_vk0HYn5k4xsc-5ywxEs,637
642
671
  vellum/client/types/vellum_image_request.py,sha256=_Gr4L7PSY8PNQINyTy04hPdwLc8_bR1RTUWZ73RQRYM,644
672
+ vellum/client/types/vellum_node_execution_event.py,sha256=64a6Gw9pGD5andcz1VOXI3fRjpoA_xiwv2T9GK6HLpA,735
673
+ vellum/client/types/vellum_sdk_error.py,sha256=_KG40V-1N8oQrSKAdalwmSd_7JXA0LUdEXtj5yPqx_I,656
674
+ vellum/client/types/vellum_sdk_error_code_enum.py,sha256=9lqUnPRvUW9tk5GASIE57FO3bc1RJoBTGcuFk5mGMA8,460
643
675
  vellum/client/types/vellum_secret.py,sha256=jru3nBCquZHZ3wEdpgKZNmy2WFh26PVKrTNaXeVSsZQ,555
676
+ vellum/client/types/vellum_span.py,sha256=V5P1z-OFqgQQAZjek2toYudlh-fCu0NTt5uKuKm9hd0,258
644
677
  vellum/client/types/vellum_value.py,sha256=Un9AeNlx0QZA9-eIGgA5nEdZU0_0vHfibiafJR0q8V4,1049
645
678
  vellum/client/types/vellum_value_logical_condition_group_request.py,sha256=vyr6lhHuS-6YtcFL5TTmPGtKRoNI9w63N7N2RPQwKVQ,1402
646
679
  vellum/client/types/vellum_value_logical_condition_request.py,sha256=HkZfj4X48UHFrPDHgUi3lp0MUGBMfroC0noNqZ_rW8o,1177
@@ -649,17 +682,43 @@ vellum/client/types/vellum_value_request.py,sha256=WAUV4RnyAG6t0k94QTY1FE4F8Hvpq
649
682
  vellum/client/types/vellum_variable.py,sha256=LNNNlYbT1VqadO6aUmeir9cXirtxgrIl-R2EalYZ5Uo,1123
650
683
  vellum/client/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
651
684
  vellum/client/types/vellum_variable_type.py,sha256=XUBG699lv7iXtpG3vUeBmTGfKE9u164IuJfzHeXWKJ8,391
685
+ vellum/client/types/vellum_workflow_execution_event.py,sha256=H8rP3_6a6LTvemoHfsmI2THpTRf8PYrZQcjoeTzf-44,934
686
+ vellum/client/types/workflow_deployment_event_executions_response.py,sha256=x7mZ4FWnOiqQ2rwaHtjCOnBLdlxfDKBGus4a5cRdfYA,2356
652
687
  vellum/client/types/workflow_deployment_history_item.py,sha256=4WUPzcthBvEZ7iaisKfEg0soUtHjcTEnL_VUVaKpTyw,1420
688
+ vellum/client/types/workflow_deployment_parent_context.py,sha256=QNyPj2o-jauaC48KrRjCWan1IKIbDgyuxLxURmhXsXM,2347
653
689
  vellum/client/types/workflow_deployment_read.py,sha256=tp1WaojTVE_dz1oiZ97h8ixMbIWDgy2yRu08A7wPMpw,2363
690
+ vellum/client/types/workflow_error.py,sha256=EQajkEmLS64T0wYm0goHQl0rT7Lguurk8pLwkhjsgAI,282
691
+ vellum/client/types/workflow_event_display_context.py,sha256=tnO9lgIJKnLtuS6xum_QilI83LjOmnWCLtnSHLn1oNo,929
654
692
  vellum/client/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
693
+ vellum/client/types/workflow_event_execution_read.py,sha256=Vrv2CmYWoIDbSkV1XGJWm04Ef6u_A85bJLSfWRmhPFc,3264
694
+ vellum/client/types/workflow_execution_actual.py,sha256=8-eGI91UTAw2g3EpSC-axH_OiIu3iKrm2ep5AkjoO2E,1025
655
695
  vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
656
696
  vellum/client/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB2bTznTMFExSZdBhTkmelf1h4Q,1931
657
697
  vellum/client/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
658
698
  vellum/client/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDHSdtwGgg0LWvM5yVQfnXYc4,425
659
699
  vellum/client/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
700
+ vellum/client/types/workflow_execution_fulfilled_body.py,sha256=4M9fQdJy7nH5Y1HLq9VVlfTNW4F9jlj4k5SWty9fFqQ,746
701
+ vellum/client/types/workflow_execution_fulfilled_event.py,sha256=ud3jxSpoo3D85vyEewsf4Eqv1AdBfwclOGmJu9lfOv8,2412
702
+ vellum/client/types/workflow_execution_initiated_body.py,sha256=KJQotYHEYD-_eiG2RAvZaxs4SetrFUtj6rDRh0pkaqQ,1269
703
+ vellum/client/types/workflow_execution_initiated_event.py,sha256=omvKr64bAXDE7u9dACOj95h6hcEGKrs1XNmLEYjUtiE,2772
660
704
  vellum/client/types/workflow_execution_node_result_event.py,sha256=wJNwOPwqOl1fBim9Y1rtHiNMoWBZ2xausdSddQI5Mg8,1136
705
+ vellum/client/types/workflow_execution_paused_body.py,sha256=35Q7Bs671cjHKJfQT0reZ7bsuKG3oaiBsb_QytjIWUU,805
706
+ vellum/client/types/workflow_execution_paused_event.py,sha256=LmXJZaE5pfMRjtrdVmxbH92SUrhogMmiHrmLgfkQ9Tc,2352
707
+ vellum/client/types/workflow_execution_rejected_body.py,sha256=9lrF3CdU3MaXMcaNP5UzEQGAnTW9hpcHA38zvzh3zgk,757
708
+ vellum/client/types/workflow_execution_rejected_event.py,sha256=SXjIqKfA-yLS_gCEy28f7j8d-cmbkhE596yPjnUKqNA,2392
709
+ vellum/client/types/workflow_execution_resumed_body.py,sha256=j8lwN0Bj3A3J4G9Nr2GoJ8ae28vNXnRNUemKgeBT7M8,685
710
+ vellum/client/types/workflow_execution_resumed_event.py,sha256=AFT6sH2AlsLT_uS4h_h7eF7tTI1kydPO-HDNkljzAoU,2372
711
+ vellum/client/types/workflow_execution_snapshotted_body.py,sha256=TByTfAwY20jS7tItCDl-4KAKCmvpycNN22pjJGoBFc4,746
712
+ vellum/client/types/workflow_execution_snapshotted_event.py,sha256=IwTW-1_iZuNOxTg_scppEMaxcW4zTGjsOGAejb858hA,2458
713
+ vellum/client/types/workflow_execution_span.py,sha256=n6NuDcQpjBJHOBQp8ymMjT65dm9r6TxFQjNxuui-_EI,2490
714
+ vellum/client/types/workflow_execution_span_attributes.py,sha256=SRW7mD-6uS8eA57EU6q2thBqSFfJSH4tXI9H3szZwYQ,575
715
+ vellum/client/types/workflow_execution_streaming_body.py,sha256=phni9pJKkFGsQ5IcS4ogtG1EjBzpdBiYpN9CPbkjxH8,746
716
+ vellum/client/types/workflow_execution_streaming_event.py,sha256=7kqgPJvfFmO3ZLMsvWCfID9ZnDXks09rwM_-2JnY4dc,2412
717
+ vellum/client/types/workflow_execution_usage_calculation_fulfilled_body.py,sha256=TyEIbdTWfvRjS3TGx44Mwttc274gRzLB9YjvkE0BmTw,729
718
+ vellum/client/types/workflow_execution_view_online_eval_metric_result.py,sha256=hMlGgmzLuO2pf7SK6jWoyqA4r-OUPkNFj8mN2vsGScU,987
661
719
  vellum/client/types/workflow_execution_workflow_result_event.py,sha256=rkv-qaiFEywtb_uSzyClGmq9jSgq-c7-mUznROhCAMU,1147
662
720
  vellum/client/types/workflow_expand_meta_request.py,sha256=-6I1Zveo3wFJEWbmSsN9OiOI7ekCJxF4xEL_ApB6XE8,1151
721
+ vellum/client/types/workflow_initialization_error.py,sha256=lXStuWnDb6yfOAMudRzVOxT1Nb-Moc7AB2gNcfwk8OU,639
663
722
  vellum/client/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx-RZYcx5W32Hs,951
664
723
  vellum/client/types/workflow_node_result_event.py,sha256=qnhruqkIcKRqP8uB-o-27shcruiT2pjgD7wdrPcp0NE,603
665
724
  vellum/client/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
@@ -673,6 +732,7 @@ vellum/client/types/workflow_output_json.py,sha256=MiCF-mq121YKZmYeaVpb3Tgh4XYqW
673
732
  vellum/client/types/workflow_output_number.py,sha256=p8APNBpl6c3e3dxCFvZtL0jyKOmu9s6LkY3vgXwhTMw,812
674
733
  vellum/client/types/workflow_output_search_results.py,sha256=r3RRGVVrH2H9NAuxA7qmG8lponyeLHHhCx6AUiMYWzc,903
675
734
  vellum/client/types/workflow_output_string.py,sha256=_jclzbQ-Wlf-7FEVTWXhs9h5FWfj4xGpiODZBOzT43w,810
735
+ vellum/client/types/workflow_parent_context.py,sha256=BexSLcTd9yKbp2rqnjMaAEsRqK3jq9HwN18fD4VMWrE,2050
676
736
  vellum/client/types/workflow_push_deployment_config_request.py,sha256=pG6bZtlw7S0TcXtNRQNa7y_2NodZe7dp5SchIrgRUVU,745
677
737
  vellum/client/types/workflow_push_exec_config.py,sha256=6TaVMVqhSOz4DnY46l8axPDtytSioXDl9nHvFXSxH1g,94
678
738
  vellum/client/types/workflow_push_response.py,sha256=1vUSZmZ1GK1242dAkNwJnJI0rL3pBT3_0HOLLjdiutw,724
@@ -694,6 +754,7 @@ vellum/client/types/workflow_result_event_output_data_number.py,sha256=OZYYUF3ay
694
754
  vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7ZvBG70ZBO4SEqbaNzIrV9Zn1NXabNh3M9v_hg,1172
695
755
  vellum/client/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
696
756
  vellum/client/types/workflow_sandbox_example.py,sha256=ZYFI7ZahyRYMNVmF8LZcF-_lkhqt95WiWXT6SpxnFHk,666
757
+ vellum/client/types/workflow_sandbox_parent_context.py,sha256=HZeVIHtsacv-SWWlHkBYM6mhADSTYSMUh6I9SizQyNw,2088
697
758
  vellum/client/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
698
759
  vellum/client/types/workspace_read.py,sha256=ocPtWvOwadqkU3z21bJgE4JeLYTAkOqBlKkc9lDDFFg,697
699
760
  vellum/client/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
@@ -794,6 +855,8 @@ vellum/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=bjLXbYHIiDaJrkzHJe
794
855
  vellum/types/add_openai_api_key_enum.py,sha256=d7yf_J3uFBltfE5wwQR_JH31NCXjzkRSpW0bXOF0FAM,161
795
856
  vellum/types/api_node_result.py,sha256=VrpkInL6qGJgQUmxo2-M90_Qsucc18qYVKao-QRE6lM,153
796
857
  vellum/types/api_node_result_data.py,sha256=lYRxTwl8hFRoGKlWP6PEuWaMD4me6nNUS0nc1GJaISU,158
858
+ vellum/types/api_request_parent_context.py,sha256=dY3ISQe4zsLyNR_8gziC3sR_cfY_IDDhfW85OJarvDA,164
859
+ vellum/types/api_version_enum.py,sha256=k_tKHRfbOMl4CF4-TT3DeefsATscBARoqSGQxu7MBp4,154
797
860
  vellum/types/array_chat_message_content.py,sha256=9W17tm_BVferYCWwx5kuY402zdTYBm1DWsnUwfkUb_U,164
798
861
  vellum/types/array_chat_message_content_item.py,sha256=g1m1y4X0sB19fBHdUWWAsnKhQ_G7cJZesUZBhpCWoXo,169
799
862
  vellum/types/array_chat_message_content_item_request.py,sha256=Vvq6GlBIfebQ-PbOyai_m5fVs_OsLYt6wMhHv0Urors,177
@@ -806,6 +869,7 @@ vellum/types/audio_chat_message_content_request.py,sha256=ySZZ8IARXUocjczLZ27CHE
806
869
  vellum/types/audio_prompt_block.py,sha256=zpQcvY3Fic82mPlPyOLCjZBBq0dFyCyKuGRkYNDWQko,156
807
870
  vellum/types/audio_vellum_value.py,sha256=-9HkLXeBD-IMh_TwKdmQVfAD_F0et2gYKT2ykb_jaAM,156
808
871
  vellum/types/audio_vellum_value_request.py,sha256=YuwrbVZK1EuUKkir5H9-ipeLTPfSF8h6Yy5lS_pAZg4,164
872
+ vellum/types/base_output.py,sha256=5fBRPScgqh4m13rbbfxszK03o8zg-Sa_bGp2kTmacMo,149
809
873
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=4PC3AVVZh7r0zbeY4pV-tpAFkt1EAuRjI0Rsc-s6WX0,186
810
874
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=NQd8lYb9HnO2UXOuri-8CdmN5lFdaRpXMdN3BJOm9JA,194
811
875
  vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=dgfImEIEWZKRWactZHRUnlmZrCSPh8Li5zfXxJUwfTY,204
@@ -838,6 +902,7 @@ vellum/types/code_execution_runtime.py,sha256=oiCjh4G4audj0XRb0jxgqz1jOTBieaYiGQ
838
902
  vellum/types/code_executor_input.py,sha256=LsuWE9ZcyktJFNd03ZQ0KCVVsqHT2EzUc8SAyjGMFcA,157
839
903
  vellum/types/code_executor_response.py,sha256=qW23-kF8gy_IoIfaVC-551k9tlC6M3KWFabnDJlWP9M,160
840
904
  vellum/types/code_executor_secret_input.py,sha256=k4F3TvZ0bm_vawTFOlFWjSwVML7t1UujL6LxhP5eiU4,164
905
+ vellum/types/code_resource_definition.py,sha256=TFRKiSa9II7QX7w3LBRK7Spuqm5jU5S3-N7kDASi0kw,162
841
906
  vellum/types/compile_prompt_deployment_expand_meta_request.py,sha256=gXZJpYawKJ2z5hAAxaSWGueyRPnUOQ4HsdC8RC_LbJc,183
842
907
  vellum/types/compile_prompt_meta.py,sha256=3WBjvEVnAqbIf-TajGtEWm0D-L_ZHm7MHo5_dD4N8jc,157
843
908
  vellum/types/components_schemas_pdf_search_result_meta_source.py,sha256=JuW2DXM7vd33IEpbrFF3NBVucydn_Lb96PqRbO5khsk,186
@@ -895,6 +960,7 @@ vellum/types/execution_number_vellum_value.py,sha256=rs7w_72tN3TFVpx-tlD-IGrap25
895
960
  vellum/types/execution_search_results_vellum_value.py,sha256=of3CXBuKUjHW0ZU3SeOe5XZKrSNz7HFnKwBVaPa7Lzg,175
896
961
  vellum/types/execution_string_vellum_value.py,sha256=MY47d3IJQj9PPThKsCZUFS8y80f3so3kDDaSW5pJYsA,167
897
962
  vellum/types/execution_vellum_value.py,sha256=VRe64r540rkdVWjWijd7Y5JsYM_9zw09QUUuorKHeXU,160
963
+ vellum/types/external_input_descriptor.py,sha256=-r6xPo7-1Ioq4XZ2nwcrg8OBoyVItKr-BeXspJwDWDQ,163
898
964
  vellum/types/external_test_case_execution.py,sha256=Av4H59SBBCZ9CZtT-eKD3n05lgljTqdtSZSjtsDpbc4,166
899
965
  vellum/types/external_test_case_execution_request.py,sha256=oJx3JSLU9aponZ53dY78ymcSZbQbHpAwnch9aq0F7ws,174
900
966
  vellum/types/finish_reason_enum.py,sha256=CIomSWB4DFcwnO92nIjQsI_TWMtJTxBFwnFSWVoATsY,156
@@ -957,6 +1023,7 @@ vellum/types/initiated_prompt_execution_meta.py,sha256=1p5PTDKhyQWGfO02w5XuxsLEW
957
1023
  vellum/types/initiated_workflow_node_result_event.py,sha256=t2ZG_qAz7aHjm881EIOwzcm-Pub2Dyn4CrdNy2nXVsk,174
958
1024
  vellum/types/instructor_vectorizer_config.py,sha256=-ydrbzjBMhDkV198rN6rEJsxkViplv1xkTTWk6OxP68,166
959
1025
  vellum/types/instructor_vectorizer_config_request.py,sha256=WVughx2NMndzE7lyE8gph7M_LoaJdHet9IJUH8rUb0Y,174
1026
+ vellum/types/invoked_port.py,sha256=vZUOhbmvydZyxm-dvjh-cVAY4F55Xc7TNEhNLwep7R8,150
960
1027
  vellum/types/iteration_state_enum.py,sha256=782UXz90fWfEkSxo9iJ1PYXB2UcmV_SgpjqZrI9ZrEc,158
961
1028
  vellum/types/jinja_prompt_block.py,sha256=PzJdqnRYhHn958T61ycJPJkggbpbuJ12JCBAztKZAj8,156
962
1029
  vellum/types/json_input.py,sha256=YGZLeWgoZzhrjEVfox1MLH9kD_EnBDTyFsalJRdsKtE,148
@@ -980,6 +1047,7 @@ vellum/types/metric_definition_input.py,sha256=TwMwjC_MNiLdodsvT52D7aa_wRY-0kT04
980
1047
  vellum/types/metric_node_result.py,sha256=Q_bUgbdRnSP26nEcJ-vZD7k2oLIcThN3JjW9hXTRfZo,156
981
1048
  vellum/types/ml_model_read.py,sha256=d_CPwZ3bhXtC8c5jwXkuNVvobDqPI-I_byZ6WnVla1Q,151
982
1049
  vellum/types/ml_model_usage.py,sha256=Q-7_W6GfL8rMnqjhSiZirw8oB60GFc0p_mNYdZdlMjY,152
1050
+ vellum/types/ml_model_usage_wrapper.py,sha256=anoup7KWug4Mrt-JhsB_S1zuKcdq9ncXsz3y8t_I52g,160
983
1051
  vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=Sfwba1cvocP8UR6CCDEjE7HsI5Xs6Dopk1W88Zf1ng8,194
984
1052
  vellum/types/named_scenario_input_json_variable_value_request.py,sha256=1kZ4Y7TttH8O897rmtkEIMraql5dTIyEVvFZn0I5Py8,186
985
1053
  vellum/types/named_scenario_input_request.py,sha256=E7TcL4YRw7dcEyMEws3AsiCw7GSHnrXpktBKOoVSytA,166
@@ -1003,6 +1071,21 @@ vellum/types/named_test_case_string_variable_value_request.py,sha256=yMc4MHFYQxp
1003
1071
  vellum/types/named_test_case_variable_value.py,sha256=IQUDNPYT5IDTaAE85Ux-IZOCfPXhkX6Q6THSYwuKDDM,168
1004
1072
  vellum/types/named_test_case_variable_value_request.py,sha256=6F5TyadMY5Syh0DlRjnQ2nHW5fzWR7WecKMqswF9Xl4,176
1005
1073
  vellum/types/new_member_join_behavior_enum.py,sha256=sXTcMrRvSzdLnDRrwQSeHdvZHwjDTW7ciHCX2SgGaVc,167
1074
+ vellum/types/node_event_display_context.py,sha256=6iO7mhcl3I_jmmIKz0-lk3oLgc5QkgA01-UJwDrbdWo,164
1075
+ vellum/types/node_execution_fulfilled_body.py,sha256=5q7mgPXXOJfg4MkEAwitpCmg7pRMJav3nkULeJtS9i8,167
1076
+ vellum/types/node_execution_fulfilled_event.py,sha256=jtCNpRkOaBk-RZAWFdM4_OpP7z8VYVqpEprGDF-4NPI,168
1077
+ vellum/types/node_execution_initiated_body.py,sha256=OWVhA7u8RZJw6YBcycDiViR8tx9BLbUCzi7DaBwhwP0,167
1078
+ vellum/types/node_execution_initiated_event.py,sha256=pCBzBmp7b4nThrx34EW7XIT17bwmsmsCrM_o9HrcYaY,168
1079
+ vellum/types/node_execution_paused_body.py,sha256=TxwzZ5jBhFzjNi0J-dzCNkM_CyAoVMgrDZdo5AA-W7s,164
1080
+ vellum/types/node_execution_paused_event.py,sha256=YlRrUkBCGKI4napj0S2b7IKekZahz-W-kLlGGmcbayE,165
1081
+ vellum/types/node_execution_rejected_body.py,sha256=dz7vLZI-lz_Uar6WYlQI-Q5-yIUQRrLURoRDN2867ys,166
1082
+ vellum/types/node_execution_rejected_event.py,sha256=ahA3RNUngkimHCyIqyGOpgq3nhixBAQ-va19B4nLpJI,167
1083
+ vellum/types/node_execution_resumed_body.py,sha256=sUpK7KOMxSvTKoOi_LoEX16RqHuT-WPtPnfBEvUbvrg,165
1084
+ vellum/types/node_execution_resumed_event.py,sha256=Dy7f9W1lU_iZZ-d8lPwkAhrrBIDw7BaMgfFCYTs4JFs,166
1085
+ vellum/types/node_execution_span.py,sha256=G9uHuCotgdhRr9VjSgTWe-ToFvJ1aHdru1JG6MLOtyE,157
1086
+ vellum/types/node_execution_span_attributes.py,sha256=rVzi3xFtYwnwf-rH72pVDHboa37Rgxe993aekDtmf-A,168
1087
+ vellum/types/node_execution_streaming_body.py,sha256=_H8iY2YJMISaHj3VgbgP5ouikbbf2I3coeILH_yazsc,167
1088
+ vellum/types/node_execution_streaming_event.py,sha256=4pELEdsFvwNB98V6dGVx6eR-AMFJrTxTgBayCM1jU_E,168
1006
1089
  vellum/types/node_input_compiled_array_value.py,sha256=o51UHGQsFz5RjPeI32LhYFIh8CZuSigoUlKCJzyqDk8,169
1007
1090
  vellum/types/node_input_compiled_chat_history_value.py,sha256=kRLGiBScTK2UGiSM67BeBRJNLGh_VZILbYDYZg-dLaM,176
1008
1091
  vellum/types/node_input_compiled_error_value.py,sha256=tQWYMhDOhZ8Cxo7HXzlEfgIiLXMnE8u7AeuwD3-oADM,169
@@ -1022,6 +1105,7 @@ vellum/types/node_output_compiled_number_value.py,sha256=5QBcXuHAe6KlfRalCkxI3WU
1022
1105
  vellum/types/node_output_compiled_search_results_value.py,sha256=ZeVjL9kMa_SvDkvtEvSgBpD1GQDQlSEjJejgcf5E6SM,179
1023
1106
  vellum/types/node_output_compiled_string_value.py,sha256=fC_Rsxv21-uWZDpkPvq64tVJnT99u_2neMv2H2HD0x8,171
1024
1107
  vellum/types/node_output_compiled_value.py,sha256=aXEQZ_Wat_SVa7-ExtMa3qfS9yIuxFCFn8bS5r3ojJo,164
1108
+ vellum/types/node_parent_context.py,sha256=DIcpehhaiZunn2S6eKeiy9LhTpDjmkKQP8ZNUk-WAq8,157
1025
1109
  vellum/types/normalized_log_probs.py,sha256=b7ID-1NbDQgUeyrU2-AOtzn88i8OJnOqBX540rIl11o,158
1026
1110
  vellum/types/normalized_token_log_probs.py,sha256=tJgp-93kM2eOI6zpI-VCONHUBxEOs5Tnw5GZk452q_4,164
1027
1111
  vellum/types/number_input.py,sha256=loHrHn6aZF1p6NVKr-a5t_jTB1xhTmSsbHBiOo9C-As,150
@@ -1047,6 +1131,7 @@ vellum/types/paginated_test_suite_run_execution_list.py,sha256=XEr928_4w9Rw9_q6d
1047
1131
  vellum/types/paginated_test_suite_test_case_list.py,sha256=LoyXDEr2yXrkniJ25HctBWvhqKQ987XItukUwPYUIhQ,173
1048
1132
  vellum/types/paginated_workflow_release_tag_read_list.py,sha256=XUeQn_6JPJ6K2qts-NZIEEZF94C3U2AosStc2k57eWY,178
1049
1133
  vellum/types/paginated_workflow_sandbox_example_list.py,sha256=FlPNK6QtzQL9yD-k_qpQrE8yMARrJRjk5aGf6ZTbGyY,177
1134
+ vellum/types/parent_context.py,sha256=z50nvSfKqZKrX-q6u5Ex3h6WzdM6_hb-9dBHWdTQ5AA,152
1050
1135
  vellum/types/pdf_search_result_meta_source.py,sha256=tkM53z99Zky8ifkcfj1HoS7k-scjy6xeVInVDjMTBzM,167
1051
1136
  vellum/types/pdf_search_result_meta_source_request.py,sha256=TW9FWTdqZi-SuERKkjMdrKBgQEq3RA4W9nwefm8it6k,175
1052
1137
  vellum/types/plain_text_prompt_block.py,sha256=K5tGXMDCVTLDIDOL17TjLvZD6pMaHnRtcSYfXOrzQMM,161
@@ -1056,6 +1141,7 @@ vellum/types/prompt_block.py,sha256=WU91uuWAvel_8EFjoBSJodOZdAVlZAFwQYCrT4Mt-dE,
1056
1141
  vellum/types/prompt_block_state.py,sha256=tKqNrZnHWjvfGS_6oIUTpdCPGxvRJa31Le6qWL_3198,156
1057
1142
  vellum/types/prompt_deployment_expand_meta_request.py,sha256=5dBdvjjK9zCKxrPMdKQPj6iG8A06GAlb_zazde6qZsU,175
1058
1143
  vellum/types/prompt_deployment_input_request.py,sha256=z8CxCZWnKW8BBZajQ6iDnz-2gaxU-FrnYrVe_MvC3FU,169
1144
+ vellum/types/prompt_deployment_parent_context.py,sha256=U9X9PvXhG6ZUE8RxLrH13xfqKvs3DOwbxzWmujoXTbg,170
1059
1145
  vellum/types/prompt_execution_meta.py,sha256=_5izDjusf-TM69zKhvXr5EHH4Fx9jfWkg8F5_KNJV-w,159
1060
1146
  vellum/types/prompt_node_execution_meta.py,sha256=cJoHlIn_lb_sLpQniB8eszRJvFI6mJij9QgUIiKtiCY,164
1061
1147
  vellum/types/prompt_node_result.py,sha256=9ootTTh8lscQ-0WE0-bqdmn7XFvpP7uavO-g7mPkA3Q,156
@@ -1113,6 +1199,9 @@ vellum/types/slim_deployment_read.py,sha256=grU1w1TDVLwQqbklQaoShBRwIjeurD5ZadeK
1113
1199
  vellum/types/slim_document.py,sha256=yhPuWFL65jMKdCEcMNBDqJZQc1UdYlH7tFJ1nkGwDL0,151
1114
1200
  vellum/types/slim_document_document_to_document_index.py,sha256=3FwldvGhBc0pkccorIE3eMi8hQ0swgCWgKQJ6-jIff0,178
1115
1201
  vellum/types/slim_workflow_deployment.py,sha256=wRfaObu07ouUTNln4QZuBiye2uuKh3kPPvz2h9sbmJU,162
1202
+ vellum/types/slim_workflow_execution_read.py,sha256=nQcAhL7OJu2ptMGgJsnG6FmNINR-ooJNhIRMVQFXQbI,166
1203
+ vellum/types/span_link.py,sha256=x4-yBxQD8ItR8c_nvdOeWfYtBOxJhrnAavrhKU65K3Y,147
1204
+ vellum/types/span_link_type_enum.py,sha256=AOirGhtsYzHtOFUcycfvlNRj2GBFGCqVLlkNJRDyNHE,157
1116
1205
  vellum/types/streaming_ad_hoc_execute_prompt_event.py,sha256=gKFR8SKLo837TRORLQtuQmikKGNrOSi7HeoSTsnLh3Y,175
1117
1206
  vellum/types/streaming_execute_prompt_event.py,sha256=9H0sLQjyLOH6lB1ouk4GFRmp4VkYjNQXh8p8auLzft8,168
1118
1207
  vellum/types/streaming_prompt_execution_meta.py,sha256=Ht-58cN9FJJ6LBPqorLsIlvw7Pczj3JfDoaE8Xf3eF8,169
@@ -1226,6 +1315,7 @@ vellum/types/upsert_test_suite_test_case_request.py,sha256=OXJ7FUI6xZzSP_Fiy0RQc
1226
1315
  vellum/types/variable_prompt_block.py,sha256=VxikMaLzWGTUP-wIRVEA3h26GLse4p_GS6BfHsS2-NE,159
1227
1316
  vellum/types/vellum_audio.py,sha256=88PG3RtnuP3NYrey_vntuFiOtnRCGLPmv_g5sjerEig,150
1228
1317
  vellum/types/vellum_audio_request.py,sha256=b1tBKEIuqvOmHPskSarw5bW0HSGay2ZdriuEnBPiFqc,158
1318
+ vellum/types/vellum_code_resource_definition.py,sha256=wJZwxdI6FyltO1J6Jw8oLaxf7Nti5B5WdCQg3BGbol8,169
1229
1319
  vellum/types/vellum_document.py,sha256=R3uMSsxR0QWnC6dsfnRXqQtnmblkZUziCLIVd4H_UH8,153
1230
1320
  vellum/types/vellum_document_request.py,sha256=BiFGTe8AqU88PgRT5uFB36GMby2wNZUb7Ygl8AQjc-c,161
1231
1321
  vellum/types/vellum_error.py,sha256=Z2QOtFuDSl2eJr22lhvQrL8_zgN9c2pliM4v6VGyrbc,150
@@ -1233,7 +1323,11 @@ vellum/types/vellum_error_code_enum.py,sha256=as6FP8wBHB5lTQ80x1d_G_i3Vu7i5EWUuk
1233
1323
  vellum/types/vellum_error_request.py,sha256=gjU_A4UWh91mirqIlPzX84iEmMT7JR3DoMPjDw9_2mQ,158
1234
1324
  vellum/types/vellum_image.py,sha256=Aju40iIofNXNiPw0gBG1BuV6FR16ZecNDORCPPB4oio,150
1235
1325
  vellum/types/vellum_image_request.py,sha256=ZNSTZub8Kuy0Arr3CriVgLojE5MZMnIongnx0Pq4QMA,158
1326
+ vellum/types/vellum_node_execution_event.py,sha256=nXLb4CdGjPAfA2lX7oaIalmVru34UqqFer28aJPmK54,165
1327
+ vellum/types/vellum_sdk_error.py,sha256=uT-jqEuvMB36VZMkBcrRvJ5l4A43xCGWs9lFznZVdpA,154
1328
+ vellum/types/vellum_sdk_error_code_enum.py,sha256=71HtaHZIMir92HccSyUynO0nz7FGShVaOTbQPMGKh2M,164
1236
1329
  vellum/types/vellum_secret.py,sha256=-eRj7iUevkqFnRgVIjYTDGZUx9_zhY-olHzBVyWXuvs,151
1330
+ vellum/types/vellum_span.py,sha256=jbjwh-qkXmfr08Z0cUBCOh18NpX-EtNuiTom1YiPTAc,149
1237
1331
  vellum/types/vellum_value.py,sha256=me0nmquE3UPpT47q6kzRKFFrTzTw4-q9lR1eK-A-1ow,150
1238
1332
  vellum/types/vellum_value_logical_condition_group_request.py,sha256=cdvckQ3IKVoxNIx2PGyGsBXxOGK39T4P_xEP9fDWJss,182
1239
1333
  vellum/types/vellum_value_logical_condition_request.py,sha256=R3qtJZw6Uo3Qh9MHyIZxWXrVssI3QtQopktdVN2UdSQ,176
@@ -1242,17 +1336,43 @@ vellum/types/vellum_value_request.py,sha256=O8OsytBNQXFlxpsS0b6NLlFPYwd8v2gMXoVG
1242
1336
  vellum/types/vellum_variable.py,sha256=rmjuD8hMydLF480--5tWlHbvu6qNaz0Hs9bSrJ8DPEI,153
1243
1337
  vellum/types/vellum_variable_extensions.py,sha256=wwKDv_yxtP7gQmfz5HF3zab-FOLt-0OMUYIsHgvrOC0,164
1244
1338
  vellum/types/vellum_variable_type.py,sha256=d3Zkf0ued1QrO90CMGTUnlyg2xT8nKGM4Nv6-L6W_Pg,158
1339
+ vellum/types/vellum_workflow_execution_event.py,sha256=EI7XANl17nOtYskD9b4FmdejkKsK7cFDwe9asr2xGC8,169
1340
+ vellum/types/workflow_deployment_event_executions_response.py,sha256=375mHiA7sucHeFSr0LlaLcVgV7F2QicMZaQiOrC5yOg,183
1245
1341
  vellum/types/workflow_deployment_history_item.py,sha256=dp5pwzOVO83KPwAbYeO3NXlKKHswGa0MTGX82nIhAIg,170
1342
+ vellum/types/workflow_deployment_parent_context.py,sha256=kB0eeRXagHqRnuDVA9B8aDlvBZVOmQ702JYXD8evh24,172
1246
1343
  vellum/types/workflow_deployment_read.py,sha256=dDGG27VP0bvC565JzeSOHJ-5Pvs7eCF4R8F9k8316bo,162
1344
+ vellum/types/workflow_error.py,sha256=7rZcYJG5jYr4IbEvgv57G6Lxutrdg43SD8mUerd58_A,152
1345
+ vellum/types/workflow_event_display_context.py,sha256=jiH4vHlWYdT_2zM8yxPox3fXjnFStzIO46N90B2TdNA,168
1247
1346
  vellum/types/workflow_event_error.py,sha256=n8yzIuTmfxKyGBKellmMhnCgi1d4fPkr0MvjR3sKOAI,158
1347
+ vellum/types/workflow_event_execution_read.py,sha256=5bZ6gkNfWuxWOuzvSPNA4QrVEdP8uGZPGN2ZpMgYBMg,167
1348
+ vellum/types/workflow_execution_actual.py,sha256=IrOLWopZHTwqNStG7u0xuo1OhHhD1SHz-1aXZiuJlfY,163
1248
1349
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=xR8LHjQtxzZ0PJECgDZ9qEIoPuwb8KY8GEvbsraB_Ak,184
1249
1350
  vellum/types/workflow_execution_actual_json_request.py,sha256=bMeY3YXJy_b6ygezFtJihHBKyImdxn3-TNf5gkFKQS0,176
1250
1351
  vellum/types/workflow_execution_actual_string_request.py,sha256=BRmnaTVWCyxR17BvOMmYM2ncGUxT8U3sR7mqUuAxzQE,178
1251
1352
  vellum/types/workflow_execution_event_error_code.py,sha256=UtARv4FXcfQ8Rw-eWUUVr3Il77cl-qpj2PIaOqYol3A,173
1252
1353
  vellum/types/workflow_execution_event_type.py,sha256=Fd78t9DwZPpWmkzEXtbbfD6pZq3hNiDHlyK7fN_ohB8,167
1354
+ vellum/types/workflow_execution_fulfilled_body.py,sha256=t2LOzIpyxYHgV5TwfrMRcwWNHmv6DM7IaFEsH6S3Kmk,171
1355
+ vellum/types/workflow_execution_fulfilled_event.py,sha256=SxmB17aIZ-4U7qVskQ4xt_-eGZBfJBPQyDYh5xlPZeM,172
1356
+ vellum/types/workflow_execution_initiated_body.py,sha256=qKKQPiz5UL7WC7k67KHSFC4CRlAULCF7Y3LHodl3-wU,171
1357
+ vellum/types/workflow_execution_initiated_event.py,sha256=oA3vXzwsCW69DyBLZl-N_SmsU42SQdO224x4WKXIp2k,172
1253
1358
  vellum/types/workflow_execution_node_result_event.py,sha256=pUlqTJGLnbnTrS4dLsPp-eIL8NcmCkntm1p6ZKd5ne0,174
1359
+ vellum/types/workflow_execution_paused_body.py,sha256=uGRnd2tZR-Ldls0Lm9MZNB-fwwVxQMQYHVa7zQ2B2bc,168
1360
+ vellum/types/workflow_execution_paused_event.py,sha256=XAdO3xVEx4NpqpVrkTE9HV6PdTyuOvAhEVFgvuGzqYU,169
1361
+ vellum/types/workflow_execution_rejected_body.py,sha256=8sKaMUqH3xObvqEuaRkFOo5zJ5jkFI5LeKmfecOAbVg,170
1362
+ vellum/types/workflow_execution_rejected_event.py,sha256=zp5F7F2o0jV-av40V7niWoN05QBrQw5OhUSSuRBcCrk,171
1363
+ vellum/types/workflow_execution_resumed_body.py,sha256=-tt7ua_O-Pi-UIA5iiDnca0c7VvHCHVxxcnAxUbtjhc,169
1364
+ vellum/types/workflow_execution_resumed_event.py,sha256=SvWvjSQ-Jb326_lLtQWuEUKE5hRglMI-OcmQF7DpCKQ,170
1365
+ vellum/types/workflow_execution_snapshotted_body.py,sha256=QSPhOLhA39wHg1Mu7zdoz-h23XcH6RZUptXv3RS_8ck,173
1366
+ vellum/types/workflow_execution_snapshotted_event.py,sha256=uiq52Bup2tiwmPSDilCf-ye_3QK7IhNKKTN_yjd1VfI,174
1367
+ vellum/types/workflow_execution_span.py,sha256=qnyiKgPrKKl0lvVtmpm09zOMTWKDBZ9nDtpByvn0KRs,161
1368
+ vellum/types/workflow_execution_span_attributes.py,sha256=LCyfr-e1lwrTpMge9agbjtVDxt1l1FTZK8koMqxy6VM,172
1369
+ vellum/types/workflow_execution_streaming_body.py,sha256=MjkV8RLMtFj1r0yGPIuhf4Dz_EFeVU2tN8Oz6-cPssQ,171
1370
+ vellum/types/workflow_execution_streaming_event.py,sha256=XDEyaGRMfR9cpaRJ-WCb0O-o4LAdoMPCbjRLdYI1r-0,172
1371
+ vellum/types/workflow_execution_usage_calculation_fulfilled_body.py,sha256=Vabch9oglYZehKyAvOuAKhbASKAoLWqK0dg7pqaa3s4,189
1372
+ vellum/types/workflow_execution_view_online_eval_metric_result.py,sha256=dLnk3CfQOAeYIO5kiR0U8SY4JcqFWvVYwkDL-LkA5Co,187
1254
1373
  vellum/types/workflow_execution_workflow_result_event.py,sha256=3bNxtChEfqny5eEazFcGmqQpmC8283Q0J2hxLje-uks,178
1255
1374
  vellum/types/workflow_expand_meta_request.py,sha256=Ahb7gjZekJ5qI0HGHLCbn3hCpkX08EnzeXEH_3ivB4E,166
1375
+ vellum/types/workflow_initialization_error.py,sha256=ZDbjOAEilOIpioDFdNolGIh8XFP0kssEmf0LEnLAMQw,167
1256
1376
  vellum/types/workflow_node_result_data.py,sha256=xJGaXn837DXVIXd8i9IrFuo3iTKufsUlgogwHnW_MZw,163
1257
1377
  vellum/types/workflow_node_result_event.py,sha256=6j8UAupnbsYlO1Qn4RbSMEvLRPhVFV3F2rIg-a2ocUY,164
1258
1378
  vellum/types/workflow_node_result_event_state.py,sha256=dsQ6jjkq1kh3sivg1iTDPSh1TZ8cLtbMqNrGydhZEoo,170
@@ -1266,6 +1386,7 @@ vellum/types/workflow_output_json.py,sha256=l-0a5YWNw2yZhNlZqCg8ZCJxY50EN8FRq4ew
1266
1386
  vellum/types/workflow_output_number.py,sha256=pGG-RV1O8zHrxHEPtb91WVFGlUeBezSkssSrMLzRxvA,160
1267
1387
  vellum/types/workflow_output_search_results.py,sha256=RmHbrJoRau6venf9aMa2iE-NG_qnWaKJcYSiWuhLs9Y,168
1268
1388
  vellum/types/workflow_output_string.py,sha256=9uvvzu98EtfRsmj6vV2bzz64i6c9QSTXhEjB1rpDJcQ,160
1389
+ vellum/types/workflow_parent_context.py,sha256=m7DQuz3Ii_wUF7H24r96FGxBjNCqtl9jG8ZyjQmdQK4,161
1269
1390
  vellum/types/workflow_push_deployment_config_request.py,sha256=fVyZAmSnZ9J1pZyYmT0hxSn9CcvoufGbAOg8pABhpOs,177
1270
1391
  vellum/types/workflow_push_exec_config.py,sha256=UCpZQx6no5gyaf-jNhqcKNqGyQ8xoKQwnCxpR6lkWoA,163
1271
1392
  vellum/types/workflow_push_response.py,sha256=3R8pxlK0HXaqJFMQ3ImohWmpAfPpLn-jaHmkc1lLA6g,160
@@ -1287,6 +1408,7 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=TtQhFjBxV8zc036N
1287
1408
  vellum/types/workflow_result_event_output_data_search_results.py,sha256=UNfCHLQ0jd5advLYdV7IBgmsRNzJ0PdDd3r2dNiIlgY,186
1288
1409
  vellum/types/workflow_result_event_output_data_string.py,sha256=rHEVbN0nyf-xoDoSIUEKlUKh6DDoguer4w0iN18JQ2I,178
1289
1410
  vellum/types/workflow_sandbox_example.py,sha256=PixQSt8aczB-oUT8qTL6k9nY-H2Mx7XvispKV0thUHM,162
1411
+ vellum/types/workflow_sandbox_parent_context.py,sha256=lMU9IJsXts6F1pe4-ODx9QXpeIb4l2VryQHSRoYZ9mg,169
1290
1412
  vellum/types/workflow_stream_event.py,sha256=PjHGgN0eJm5w-5FJ6__ASC1FU94Gsav_ko5JWkpVvK8,159
1291
1413
  vellum/types/workspace_read.py,sha256=9CvgvK8Li8vL6qC5KX7f3-nEHslJ4lw2w07bvXcrjA0,152
1292
1414
  vellum/types/workspace_secret_read.py,sha256=Z6QNXHxVHRdrLXSI31KxngePRwJTVoJYMXVbtPQwrxs,159
@@ -1387,7 +1509,7 @@ vellum/workflows/nodes/core/map_node/tests/test_node.py,sha256=uMR0AyIFn539LqTKH
1387
1509
  vellum/workflows/nodes/core/retry_node/__init__.py,sha256=lN2bIy5a3Uzhs_FYCrooADyYU6ZGShtvLKFWpelwPvo,60
1388
1510
  vellum/workflows/nodes/core/retry_node/node.py,sha256=SoDQaizjoj6kKLr454rkXu4bdzN7hXrBBn7T2_cp1CA,5261
1389
1511
  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
1512
+ vellum/workflows/nodes/core/retry_node/tests/test_node.py,sha256=RM_OHwxrHwyxvlQQBJPqVBxpedFuWQ9h2-Xa3kP75sc,4399
1391
1513
  vellum/workflows/nodes/core/templating_node/__init__.py,sha256=GmyuYo81_A1_Bz6id69ozVFS6FKiuDsZTiA3I6MaL2U,70
1392
1514
  vellum/workflows/nodes/core/templating_node/node.py,sha256=iqBmr2i-f-BqhisNQJiDfewjol0ur7-XpupLStyMJsg,3731
1393
1515
  vellum/workflows/nodes/core/templating_node/tests/test_templating_node.py,sha256=nXkgGDBg4wP36NwykdMEVWwx_xjv8oGT2rYkwuCB_VU,10075
@@ -1517,13 +1639,13 @@ vellum/workflows/utils/uuids.py,sha256=DFzPv9RCvsKhvdTEIQyfSek2A31D6S_QcmeLPbgrg
1517
1639
  vellum/workflows/utils/vellum_variables.py,sha256=UiGlUh0a8vel2FbW3w-xbHxSv_jNutkDdqMVtP_b42A,3385
1518
1640
  vellum/workflows/vellum_client.py,sha256=GxOy3dX6A04xiY69vPv1S4YGuQ_TMxwHi6WRMimQBBE,762
1519
1641
  vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
1520
- vellum/workflows/workflows/base.py,sha256=TSS2BHC8LAi-N5GdEa75BeChwzwTzL7yldFnTlLINro,22665
1642
+ vellum/workflows/workflows/base.py,sha256=VPG6XqBxxqjQBKM1okUkg10JyDlybltfZiANgy7iGFw,22696
1521
1643
  vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
1522
1644
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1523
- vellum/workflows/workflows/tests/test_base_workflow.py,sha256=NRteiICyJvDM5zrtUfq2fZoXcGQVaWC9xmNlLLVW0cU,7979
1645
+ vellum/workflows/workflows/tests/test_base_workflow.py,sha256=tCxrV3QBHL8wfdEO3bvKteDdw32xBlUl1_WxkAwaONw,8344
1524
1646
  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,,
1647
+ vellum_ai-0.14.23.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1648
+ vellum_ai-0.14.23.dist-info/METADATA,sha256=0Xb69QSCT3eV6id9Yn6oCfyj2LW_IQcxuYwJZW293zU,5484
1649
+ vellum_ai-0.14.23.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1650
+ vellum_ai-0.14.23.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1651
+ vellum_ai-0.14.23.dist-info/RECORD,,
@@ -47,6 +47,14 @@ class BaseFinalOutputNodeDisplay(BaseNodeVellumDisplay[_FinalOutputNodeType], Ge
47
47
  "display_data": self.get_display_data().dict(),
48
48
  "base": self.get_base().dict(),
49
49
  "definition": self.get_definition().dict(),
50
+ "outputs": [
51
+ {
52
+ "id": str(self._get_output_id()),
53
+ "name": node.Outputs.value.name,
54
+ "type": inferred_type,
55
+ "value": self.serialize_value(display_context, node.Outputs.value.instance),
56
+ }
57
+ ],
50
58
  }
51
59
 
52
60
  def _get_output_id(self) -> UUID:
@@ -99,4 +99,12 @@ def test_serialize_workflow():
99
99
  "name": "BasicFinalOutputNode",
100
100
  "module": ["tests", "workflows", "basic_final_output_node", "workflow"],
101
101
  },
102
+ "outputs": [
103
+ {
104
+ "id": "97349956-d228-4b51-a64b-1331f788373f",
105
+ "name": "value",
106
+ "type": "STRING",
107
+ "value": {"type": "WORKFLOW_INPUT", "input_variable_id": "e39a7b63-de15-490a-ae9b-8112c767aea0"},
108
+ }
109
+ ],
102
110
  }
@@ -123,6 +123,17 @@ def test_serialize_workflow__missing_final_output_node():
123
123
  "name": "FirstFinalOutputNode",
124
124
  "module": ["tests", "workflows", "complex_final_output_node", "missing_final_output_node"],
125
125
  },
126
+ "outputs": [
127
+ {
128
+ "id": "5517e50d-7f40-4f7c-acb2-e329d79a25bf",
129
+ "name": "value",
130
+ "type": "STRING",
131
+ "value": {
132
+ "type": "WORKFLOW_INPUT",
133
+ "input_variable_id": "da086239-d743-4246-b666-5c91e22fb88c",
134
+ },
135
+ }
136
+ ],
126
137
  },
127
138
  {
128
139
  "id": "bb88768d-472e-4997-b7ea-de09163d1b4c",
@@ -156,14 +167,7 @@ def test_serialize_workflow__missing_final_output_node():
156
167
  "display_data": {"position": {"x": 0.0, "y": 0.0}},
157
168
  "base": {
158
169
  "name": "FinalOutputNode",
159
- "module": [
160
- "vellum",
161
- "workflows",
162
- "nodes",
163
- "displayable",
164
- "final_output_node",
165
- "node",
166
- ],
170
+ "module": ["vellum", "workflows", "nodes", "displayable", "final_output_node", "node"],
167
171
  },
168
172
  "definition": None,
169
173
  },
@@ -10,7 +10,6 @@ from vellum.workflows import BaseWorkflow
10
10
  from vellum.workflows.descriptors.base import BaseDescriptor
11
11
  from vellum.workflows.edges import Edge
12
12
  from vellum.workflows.events.workflow import NodeEventDisplayContext, WorkflowEventDisplayContext
13
- from vellum.workflows.expressions.coalesce_expression import CoalesceExpression
14
13
  from vellum.workflows.nodes.bases import BaseNode
15
14
  from vellum.workflows.nodes.utils import get_unadorned_node, get_wrapped_node
16
15
  from vellum.workflows.ports import Port
@@ -291,11 +290,6 @@ class BaseWorkflowDisplay(
291
290
  if not isinstance(workflow_output, OutputReference):
292
291
  raise ValueError(f"{workflow_output} must be an {OutputReference.__name__}")
293
292
 
294
- if not workflow_output.instance or not isinstance(
295
- workflow_output.instance, (OutputReference, CoalesceExpression)
296
- ):
297
- raise ValueError("Expected to find a descriptor instance on the workflow output")
298
-
299
293
  workflow_output_display = self.output_displays.get(workflow_output)
300
294
  workflow_output_displays[workflow_output] = (
301
295
  workflow_output_display or self._generate_workflow_output_display(workflow_output)
@@ -275,3 +275,17 @@ def test_get_event_display_context__node_display_for_mutiple_adornments():
275
275
  assert innermost_node_id in inner_node_event_display.subworkflow_display.node_displays
276
276
  innermost_node_event_display = inner_node_event_display.subworkflow_display.node_displays[innermost_node_id]
277
277
  assert not innermost_node_event_display.subworkflow_display
278
+
279
+
280
+ def test_get_event_display_context__workflow_output_display_with_none():
281
+ # GIVEN a workflow with a workflow output that is None
282
+ class MyWorkflow(BaseWorkflow):
283
+ class Outputs(BaseWorkflow.Outputs):
284
+ foo = None
285
+ bar = "baz"
286
+
287
+ # WHEN we gather the event display context
288
+ display_context = VellumWorkflowDisplay(MyWorkflow).get_event_display_context()
289
+
290
+ # THEN the workflow output display should be included
291
+ assert display_context.workflow_outputs.keys() == {"foo", "bar"}