vellum-ai 1.2.4__py3-none-any.whl → 1.2.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. vellum/__init__.py +48 -0
  2. vellum/client/core/client_wrapper.py +2 -2
  3. vellum/client/resources/workflows/client.py +20 -0
  4. vellum/client/resources/workflows/raw_client.py +20 -0
  5. vellum/client/types/__init__.py +48 -0
  6. vellum/client/types/audio_input.py +30 -0
  7. vellum/client/types/code_executor_input.py +8 -0
  8. vellum/client/types/document_input.py +30 -0
  9. vellum/client/types/image_input.py +30 -0
  10. vellum/client/types/named_scenario_input_audio_variable_value_request.py +22 -0
  11. vellum/client/types/named_scenario_input_document_variable_value_request.py +22 -0
  12. vellum/client/types/named_scenario_input_image_variable_value_request.py +22 -0
  13. vellum/client/types/named_scenario_input_request.py +8 -0
  14. vellum/client/types/named_scenario_input_video_variable_value_request.py +22 -0
  15. vellum/client/types/named_test_case_audio_variable_value.py +26 -0
  16. vellum/client/types/named_test_case_audio_variable_value_request.py +26 -0
  17. vellum/client/types/named_test_case_document_variable_value.py +22 -0
  18. vellum/client/types/named_test_case_document_variable_value_request.py +22 -0
  19. vellum/client/types/named_test_case_image_variable_value.py +22 -0
  20. vellum/client/types/named_test_case_image_variable_value_request.py +22 -0
  21. vellum/client/types/named_test_case_variable_value.py +8 -0
  22. vellum/client/types/named_test_case_variable_value_request.py +8 -0
  23. vellum/client/types/named_test_case_video_variable_value.py +22 -0
  24. vellum/client/types/named_test_case_video_variable_value_request.py +22 -0
  25. vellum/client/types/node_execution_span_attributes.py +1 -0
  26. vellum/client/types/scenario_input.py +11 -1
  27. vellum/client/types/scenario_input_audio_variable_value.py +22 -0
  28. vellum/client/types/scenario_input_document_variable_value.py +22 -0
  29. vellum/client/types/scenario_input_image_variable_value.py +22 -0
  30. vellum/client/types/scenario_input_video_variable_value.py +22 -0
  31. vellum/client/types/span_link.py +1 -1
  32. vellum/client/types/span_link_type_enum.py +1 -1
  33. vellum/client/types/test_case_audio_variable_value.py +27 -0
  34. vellum/client/types/test_case_document_variable_value.py +27 -0
  35. vellum/client/types/test_case_image_variable_value.py +27 -0
  36. vellum/client/types/test_case_variable_value.py +8 -0
  37. vellum/client/types/test_case_video_variable_value.py +27 -0
  38. vellum/client/types/video_input.py +30 -0
  39. vellum/client/types/workflow_push_deployment_config_request.py +1 -0
  40. vellum/types/audio_input.py +3 -0
  41. vellum/types/document_input.py +3 -0
  42. vellum/types/image_input.py +3 -0
  43. vellum/types/named_scenario_input_audio_variable_value_request.py +3 -0
  44. vellum/types/named_scenario_input_document_variable_value_request.py +3 -0
  45. vellum/types/named_scenario_input_image_variable_value_request.py +3 -0
  46. vellum/types/named_scenario_input_video_variable_value_request.py +3 -0
  47. vellum/types/named_test_case_audio_variable_value.py +3 -0
  48. vellum/types/named_test_case_audio_variable_value_request.py +3 -0
  49. vellum/types/named_test_case_document_variable_value.py +3 -0
  50. vellum/types/named_test_case_document_variable_value_request.py +3 -0
  51. vellum/types/named_test_case_image_variable_value.py +3 -0
  52. vellum/types/named_test_case_image_variable_value_request.py +3 -0
  53. vellum/types/named_test_case_video_variable_value.py +3 -0
  54. vellum/types/named_test_case_video_variable_value_request.py +3 -0
  55. vellum/types/scenario_input_audio_variable_value.py +3 -0
  56. vellum/types/scenario_input_document_variable_value.py +3 -0
  57. vellum/types/scenario_input_image_variable_value.py +3 -0
  58. vellum/types/scenario_input_video_variable_value.py +3 -0
  59. vellum/types/test_case_audio_variable_value.py +3 -0
  60. vellum/types/test_case_document_variable_value.py +3 -0
  61. vellum/types/test_case_image_variable_value.py +3 -0
  62. vellum/types/test_case_video_variable_value.py +3 -0
  63. vellum/types/video_input.py +3 -0
  64. vellum/workflows/resolvers/base.py +18 -1
  65. vellum/workflows/resolvers/resolver.py +42 -0
  66. vellum/workflows/resolvers/tests/test_resolver.py +59 -0
  67. vellum/workflows/workflows/base.py +3 -0
  68. {vellum_ai-1.2.4.dist-info → vellum_ai-1.2.5.dist-info}/METADATA +1 -1
  69. {vellum_ai-1.2.4.dist-info → vellum_ai-1.2.5.dist-info}/RECORD +74 -24
  70. vellum_ee/workflows/display/utils/events.py +19 -1
  71. vellum_ee/workflows/display/utils/tests/test_events.py +42 -0
  72. {vellum_ai-1.2.4.dist-info → vellum_ai-1.2.5.dist-info}/LICENSE +0 -0
  73. {vellum_ai-1.2.4.dist-info → vellum_ai-1.2.5.dist-info}/WHEEL +0 -0
  74. {vellum_ai-1.2.4.dist-info → vellum_ai-1.2.5.dist-info}/entry_points.txt +0 -0
@@ -106,13 +106,13 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_workflow_input_par
106
106
  vellum_ee/workflows/display/types.py,sha256=cyZruu4sXAdHjwuFc7dydM4DcFNf-pp_CmulXItxac4,3679
107
107
  vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  vellum_ee/workflows/display/utils/auto_layout.py,sha256=f4GiLn_LazweupfqTpubcdtdfE_vrOcmZudSsnYIY9E,3906
109
- vellum_ee/workflows/display/utils/events.py,sha256=9EEqtKfPifW0wKzMd0FFG6-lZZe5ymSdvZVTCwSwq9M,1111
109
+ vellum_ee/workflows/display/utils/events.py,sha256=HHKXnVy1Zs0YJxTojp2iKQJFTLBqVXiY-YW0J-rRZlI,1673
110
110
  vellum_ee/workflows/display/utils/exceptions.py,sha256=LSwwxCYNxFkf5XMUcFkaZKpQ13OSrI7y_bpEUwbKVk0,169
111
111
  vellum_ee/workflows/display/utils/expressions.py,sha256=yPrUIEQKL5fDwUC9NpVO9yjL6emTOdFJw8VjoZgZ0E0,16942
112
112
  vellum_ee/workflows/display/utils/registry.py,sha256=1qXiBTdsnro6FeCX0FGBEK7CIf6wa--Jt50iZ_nEp_M,3460
113
113
  vellum_ee/workflows/display/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  vellum_ee/workflows/display/utils/tests/test_auto_layout.py,sha256=vfXI769418s9vda5Gb5NFBH747WMOwSgHRXeLCTLVm8,2356
115
- vellum_ee/workflows/display/utils/tests/test_events.py,sha256=jt3zZNlpkVeX0XqnVfxQRYddMD-zb4qkX0By4GRk_7w,2567
115
+ vellum_ee/workflows/display/utils/tests/test_events.py,sha256=BHRq2Or_z1ri7EVWFdVbhDxSWRsCVI87VeqqJN8YnIQ,3995
116
116
  vellum_ee/workflows/display/utils/vellum.py,sha256=mtoXmSYwR7rvrq-d6CzCW_auaJXTct0Mi1F0xpRCiNQ,5627
117
117
  vellum_ee/workflows/display/vellum.py,sha256=J2mdJZ1sdLW535DDUkq_Vm8Z572vhuxHxVZF9deKSdk,391
118
118
  vellum_ee/workflows/display/workflows/__init__.py,sha256=JTB9ObEV3l4gGGdtfBHwVJtTTKC22uj-a-XjTVwXCyA,148
@@ -145,12 +145,12 @@ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50P
145
145
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=lk-4dVnG2HcxxywBXxDR1ieH8D9RJt4lvchoZhtQPdU,2892
146
146
  vellum_ee/workflows/tests/test_server.py,sha256=sqF1qcgBVy9-blGetaea6MZ73KHnm0KaPz5B7s4NT9Q,19687
147
147
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
148
- vellum/__init__.py,sha256=IG2ykJHmx0b18gK9CKlLBFmZ6PhRV8iUuNYcusqxUXM,45130
148
+ vellum/__init__.py,sha256=VZhH0RFOGRpsERt-mVzsKJlfopp3j9J4m72dNZU27j4,46934
149
149
  vellum/client/README.md,sha256=gxc7JlJRBrBZpN5LHa2ORxYTRHFLPnWmnIugN8pmQh4,5600
150
150
  vellum/client/__init__.py,sha256=LOu_TklkJG01SgXIpPWDhOX2QvKDyd2ZbQyr5H0m31I,72349
151
151
  vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
152
152
  vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
153
- vellum/client/core/client_wrapper.py,sha256=UTXev7Ggseqsagx6lWuso8TzaZN7pWxlZdlinovd_p0,2840
153
+ vellum/client/core/client_wrapper.py,sha256=Hs7PXt1UQaeHfbQYgreOs11HOuvUOU0Oi4YROuf2M08,2840
154
154
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
155
155
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
156
156
  vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -237,15 +237,15 @@ vellum/client/resources/workflow_sandboxes/raw_client.py,sha256=_C2MzCk36NP8Do4p
237
237
  vellum/client/resources/workflow_sandboxes/types/__init__.py,sha256=mZxwNpOmBfllmNZrhp8e_M62hUFI73B2fNlvgG8vi3Y,232
238
238
  vellum/client/resources/workflow_sandboxes/types/list_workflow_sandbox_examples_request_tag.py,sha256=TEwWit20W3X-zWPPLAhmUG05UudG9gaBSJ4Q4-rNJws,188
239
239
  vellum/client/resources/workflows/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
240
- vellum/client/resources/workflows/client.py,sha256=spLsngBjyIvGknFSg9-_tc-_5nqnzOm7s1Q0UP1nez8,7387
241
- vellum/client/resources/workflows/raw_client.py,sha256=zBAbayxBUqzKb52938qCKPpEvjZzknp8_iEuKsNcAlQ,12642
240
+ vellum/client/resources/workflows/client.py,sha256=QggcuBCRJ5LdiROPT45F8bLZL9kFcWkPm9PBN_3wA1E,8275
241
+ vellum/client/resources/workflows/raw_client.py,sha256=R0uLlLudu-YNiqIhieBcj1wQIVkBvNEa8E7Bk-szGTI,13558
242
242
  vellum/client/resources/workspace_secrets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
243
243
  vellum/client/resources/workspace_secrets/client.py,sha256=rKyHM9EJalA0adkQ0SDN5CmXjiddgVCO73y7Q4qqRP0,5722
244
244
  vellum/client/resources/workspace_secrets/raw_client.py,sha256=ZfiNd1NisolmK07QPyojW_KFlIWpnjVNLA8Aq5JC-zQ,7832
245
245
  vellum/client/resources/workspaces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
246
246
  vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKeiOA6grOYoCc0Gi3E,2936
247
247
  vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
248
- vellum/client/types/__init__.py,sha256=vpmzl8MWYOl3IDKOcYOl4k6to6Ydpn8nHBdta0l6zrQ,68279
248
+ vellum/client/types/__init__.py,sha256=K33OdhOUq5W7oh8cdwsFfo-aRHxPa6Jel9rlBQS2at0,71137
249
249
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
250
250
  vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
251
251
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
@@ -266,6 +266,7 @@ vellum/client/types/array_vellum_value.py,sha256=nhmFNPPhXmHMdb8etAvpk-Mh1TVDP6K
266
266
  vellum/client/types/array_vellum_value_request.py,sha256=RDlUXioqAcqd1nxAhsp6d-yo2Q-Zzm5m320M_P8aCrE,891
267
267
  vellum/client/types/audio_chat_message_content.py,sha256=uX4RbTpCEzPMolK1oXJecwALTDQzFdZXHgNgyaTThBw,689
268
268
  vellum/client/types/audio_chat_message_content_request.py,sha256=YAv76BUWgVSTaK9VgcN158loFFeKKawx2StWXwsSy4k,718
269
+ vellum/client/types/audio_input.py,sha256=PglDxyxMn5-eLXy-nnTlAjk6OTHjzskB-gGpIMsqcKg,750
269
270
  vellum/client/types/audio_input_request.py,sha256=dtmM17yqCecZj1vJn3HK6IMF2rpXPwFErsU6uMAyBYc,779
270
271
  vellum/client/types/audio_prompt_block.py,sha256=5GXedTnmZF7vDiq-sIDMtksm3CExNNYoJVXMgRnmuR8,977
271
272
  vellum/client/types/audio_vellum_value.py,sha256=TPZYq8sjlFFhSfHGif9OuGVWUtzeZ4LjDPYcLXDjI7I,709
@@ -301,7 +302,7 @@ vellum/client/types/code_execution_node_search_results_result.py,sha256=9qPxpiQz
301
302
  vellum/client/types/code_execution_node_string_result.py,sha256=E4igrNrXPJERYG4s8b7pxL3_A2_LkCrHLpmS0XtG_EI,619
302
303
  vellum/client/types/code_execution_package.py,sha256=ONIjVnJgPRT37IaD9TTFQ2kIBeXggx_2wpR6vV3Qjl8,588
303
304
  vellum/client/types/code_execution_runtime.py,sha256=ucMXj7mUYl9-B_KentTfRuRIeDq33PV3OV_GWKiG-lo,181
304
- vellum/client/types/code_executor_input.py,sha256=rgyeAJRMBBGpzTLllDrVpDWfRWkkpbAwWCnVk33Hk_Y,695
305
+ vellum/client/types/code_executor_input.py,sha256=Q6fD3YNXu3F0A2w7zR97xeQ-7FdEhNRIw0eUgfauYno,912
305
306
  vellum/client/types/code_executor_response.py,sha256=C7lOiXbWjeaaFRqxC_oYlbnQGKWalcCYZlNn0aUgoPw,793
306
307
  vellum/client/types/code_executor_secret_input.py,sha256=JxSS5NQ7r9_a7QFnbuKmoZ-Babv6mMnqBkxWmfYi4jU,730
307
308
  vellum/client/types/code_resource_definition.py,sha256=0btqhVJWnRDkqFsOeud_d7JK0MN8UUwVe5xU3fIsrkw,799
@@ -336,6 +337,7 @@ vellum/client/types/document_index_chunking_request.py,sha256=bE4_Az325D96BbgFKz
336
337
  vellum/client/types/document_index_indexing_config.py,sha256=Mw7MBLLSMm9sAWzlyWORdHofOBaPdULHWjwxdrG10Vg,745
337
338
  vellum/client/types/document_index_indexing_config_request.py,sha256=YG-TQ8KvNVd2MCgXOY7Bt7vmEgc1LM2YTTQJ2tybwOw,796
338
339
  vellum/client/types/document_index_read.py,sha256=cNyxbLLfAghJnfWJ4PUkWCa_FJpVc6vbQHRcI8jNODc,1141
340
+ vellum/client/types/document_input.py,sha256=dglVeQiqfPt0oyS5EK78sE44VhSV27oKO9n_lpX0CoI,771
339
341
  vellum/client/types/document_input_request.py,sha256=i_2qTgD1b2JNCmuslKj4aj_2akIX242ArcpRJiKRyY0,800
340
342
  vellum/client/types/document_processing_state.py,sha256=ISlurj7jQzwHzxPzDZTqeAIgSIIGMBBPgcOSoe04pTU,211
341
343
  vellum/client/types/document_prompt_block.py,sha256=CtADlAGRqIg7rU7hF8c6ehIKkJLODqLMI-KB24sbqDE,983
@@ -435,6 +437,7 @@ vellum/client/types/hkunlp_instructor_xl_vectorizer.py,sha256=Q0vLuo1su4yA3DKBPL
435
437
  vellum/client/types/hkunlp_instructor_xl_vectorizer_request.py,sha256=EVMF5wNLU26WxcEGNc8W9hbdWEZaJnf19HBBblS2zGg,796
436
438
  vellum/client/types/image_chat_message_content.py,sha256=UNnVmAleVCMIyUJcg_TBNd1gCcO7Jx9i6mwMKk_HY9Y,689
437
439
  vellum/client/types/image_chat_message_content_request.py,sha256=EOZ9FtdNnggjYwgH5Wo7FBfZGTBCNlDLD1okDUDgzx4,718
440
+ vellum/client/types/image_input.py,sha256=c3TkOmsBBBzJDUl8QLVze10oFNtR5_oEzt7KTdq-bbg,750
438
441
  vellum/client/types/image_input_request.py,sha256=8WEE7LaFJ0M8ncxmts6yKTNAwGT-C1NQEqtE-wK2PhY,779
439
442
  vellum/client/types/image_prompt_block.py,sha256=5VUNnsbmvK3RkWFq5PFq6_SleHR4XyHYFzKWBgpmwJ0,972
440
443
  vellum/client/types/image_vellum_value.py,sha256=aYtApnz5PeTYia0Mwmxi3LQ2F6KAoy3vDYzovzaEqzs,712
@@ -473,18 +476,28 @@ vellum/client/types/metric_node_result.py,sha256=1637n2udE0cG01uaGejYMsnIdJHXKXj
473
476
  vellum/client/types/ml_model_read.py,sha256=9QdXIxWpOcn48bNQzd77DNg_CMHuptxRFDfHokftwv0,724
474
477
  vellum/client/types/ml_model_usage.py,sha256=hZw6f_bmTvNQK50y05zGSD4pJfw9ZDQxLRQqg3Mk1go,874
475
478
  vellum/client/types/ml_model_usage_wrapper.py,sha256=aafKx4CSjLfr0IqgyVWsl_G0RJUu4ekb9H6H3FlFYss,609
479
+ vellum/client/types/named_scenario_input_audio_variable_value_request.py,sha256=R8nxs_K9ByDqm41ZhEX9pij1cTQ1S9a4EUv_6NIHugY,677
476
480
  vellum/client/types/named_scenario_input_chat_history_variable_value_request.py,sha256=4-zKdO_HkkyX08ACwZe5JkBnvY7VjlJlBJJ2HKG16Tk,826
481
+ vellum/client/types/named_scenario_input_document_variable_value_request.py,sha256=_b4YCNHtLIrkCQ8oiDPkjatIm8k9tB5NxUfgf2tU5nk,695
482
+ vellum/client/types/named_scenario_input_image_variable_value_request.py,sha256=H-2_ejtxDwUuL0Bl-t-tA-r63-3gR_6tXp_zj8fCz5o,677
477
483
  vellum/client/types/named_scenario_input_json_variable_value_request.py,sha256=WEiJv5k2jCpnLsNK-FxBkkOam-Djjtej1WK4hJkyGw8,721
478
- vellum/client/types/named_scenario_input_request.py,sha256=hBvFGUqOODC_Pl_Hds5O62WmrNLrBGD6T7iVOCl2emE,612
484
+ vellum/client/types/named_scenario_input_request.py,sha256=7p0-VwiHipNrjvIQOqINRJmGoyvlAuoCq_g2nHramxg,1245
479
485
  vellum/client/types/named_scenario_input_string_variable_value_request.py,sha256=PrDioH9GtwoyeukCaU1niVD8QfjobS7MRU5g6gmX0FA,722
486
+ vellum/client/types/named_scenario_input_video_variable_value_request.py,sha256=8j00EtL57E7ATsI7AdIYcMqJ5j2mVEyIKCl7h7jPSbs,677
480
487
  vellum/client/types/named_test_case_array_variable_value.py,sha256=cV_1PW-I1FGuNQewPgYTD_5khsPFIbOufgsXp5H_tSA,961
481
488
  vellum/client/types/named_test_case_array_variable_value_request.py,sha256=TrWmGV7W6Lf_vVn6oxHoPbW54yLnH4FmmULDL5ymcso,1012
489
+ vellum/client/types/named_test_case_audio_variable_value.py,sha256=l5fAevDfShJDN_qUwiSkV2BmCFHWzz8km3sYoeqUuuI,708
490
+ vellum/client/types/named_test_case_audio_variable_value_request.py,sha256=louXhEKLJIHzs1YxACNG73zf9JZJ7r04fTJo6cKLv6s,737
482
491
  vellum/client/types/named_test_case_chat_history_variable_value.py,sha256=NyUPAAD9jq36LpOLq1dtc6Ro7ehTNeJ6zbcPXUA6a-U,772
483
492
  vellum/client/types/named_test_case_chat_history_variable_value_request.py,sha256=UuW870U5peUbWRNkYyMohP1QWdiRTBgO4dm-Y0MQ6KY,801
493
+ vellum/client/types/named_test_case_document_variable_value.py,sha256=pfZr0BvBR4iV_rTUDLgSUpBrOAXr09jz21obMfdXQiw,661
494
+ vellum/client/types/named_test_case_document_variable_value_request.py,sha256=Wk7MqfYVVJW5DgFXuj18HqaNReaP-coDBFmX59G_cTE,690
484
495
  vellum/client/types/named_test_case_error_variable_value.py,sha256=uKE5Jimkl3_FD3W6GvqKLTzH4JbCIDWVAcCchantznk,732
485
496
  vellum/client/types/named_test_case_error_variable_value_request.py,sha256=Z0i5sygB9n_WMQx8Df8r-SsgLtYOsoESSms9iXK8FJ8,761
486
497
  vellum/client/types/named_test_case_function_call_variable_value.py,sha256=ZDOLgkI_GLBdF1rWYbfJSqBd_EHY51rzsWhigse0hUk,766
487
498
  vellum/client/types/named_test_case_function_call_variable_value_request.py,sha256=fcJwzazgElhrl1xJ2xja_-H7WdMVLoP9zV4rUYoCZM4,795
499
+ vellum/client/types/named_test_case_image_variable_value.py,sha256=Ct3Z_MggnnMlRGsjVWmHEpVGDrnyXl8bLW7o4wfoRBg,643
500
+ vellum/client/types/named_test_case_image_variable_value_request.py,sha256=dBkiRT_rtiwzhH8zoQHW4f1spuNEsgMKvfd51ugbffM,672
488
501
  vellum/client/types/named_test_case_json_variable_value.py,sha256=wUVC_9Y7jfuZ2PZ_V14AFa9OlTHHtvuHmYuY4ln7ElA,689
489
502
  vellum/client/types/named_test_case_json_variable_value_request.py,sha256=G69Y9sXwpi8WUqXVLiwJ_R2dwNNMUKyEF0DF-3r6ElA,696
490
503
  vellum/client/types/named_test_case_number_variable_value.py,sha256=5WWDFcwIZJEcX3ua3Ou3fI2KiRLLEs8-B7TP0FH6ni8,692
@@ -493,8 +506,10 @@ vellum/client/types/named_test_case_search_results_variable_value.py,sha256=_7fQ
493
506
  vellum/client/types/named_test_case_search_results_variable_value_request.py,sha256=S_9qWpSwdm1eCWvKB-UL8ZQXA7ItSKgZMBFdkO7jdOU,812
494
507
  vellum/client/types/named_test_case_string_variable_value.py,sha256=CtoNBWDHfVntb-T1eINalzQ9YbPtod7VVcCe-ai_Dzw,690
495
508
  vellum/client/types/named_test_case_string_variable_value_request.py,sha256=99Dflz57ePdjo2vOsTnHEhd6_A_Viyq_jLZ2gCbpIhQ,697
496
- vellum/client/types/named_test_case_variable_value.py,sha256=RRGU0oNBwhll2ea77GH97qDzvwPw3qBlTuxy2KjJatM,1147
497
- vellum/client/types/named_test_case_variable_value_request.py,sha256=lJ4BzJZ7DGOKtI_Je_rJDC7EJN7rWM1tRu7hXpY9m0k,1330
509
+ vellum/client/types/named_test_case_variable_value.py,sha256=_kZoWpgTToCB4Cr7vJIlI4dAwsiQDbGeGXIixeEciZc,1632
510
+ vellum/client/types/named_test_case_variable_value_request.py,sha256=jDVzZ5VPFjzUyblcoDq9S-Lh2NN9yix3J2Ubv1TwmSw,1903
511
+ vellum/client/types/named_test_case_video_variable_value.py,sha256=nztLFVO1Sltf2H8Bx24qC_iB-yjsRxqfK5wNUdWf1xw,643
512
+ vellum/client/types/named_test_case_video_variable_value_request.py,sha256=CS9GQq3ziCfjQtYgTPRw5BNj30lsSUf_gYiNyDmwg9M,672
498
513
  vellum/client/types/new_member_join_behavior_enum.py,sha256=s9Z_6JKM6R4gPNtIJYCe84_DNBHucj6dHOx6bdFPoLo,258
499
514
  vellum/client/types/node_execution_fulfilled_body.py,sha256=foRkObll1ZBsh3Po6tHT6CKnDcUaMFEoQWc-rjLDn7A,849
500
515
  vellum/client/types/node_execution_fulfilled_event.py,sha256=WRuXDamUa4FefGgRC6JAoDRrPlEf9AbC74EZxSH24E4,1897
@@ -507,7 +522,7 @@ vellum/client/types/node_execution_rejected_event.py,sha256=JzbQux0bYivwK7edTydq
507
522
  vellum/client/types/node_execution_resumed_body.py,sha256=M8nhwykvfwFgRKAyiVXJZC3Mrd7JankiTdO8muHQWMA,641
508
523
  vellum/client/types/node_execution_resumed_event.py,sha256=SQ0EPqJnnAWulBb2H46v5p809UznM8YVIsdbyPOHn_s,1883
509
524
  vellum/client/types/node_execution_span.py,sha256=97H5YovyPEk-EcWy1aOzi06SFhzy_aLlbARMeEwZrDU,1944
510
- vellum/client/types/node_execution_span_attributes.py,sha256=jRtiQVzEZAWxBA9qpx9j_Xy4neR4hvUGXChrM2unKSo,552
525
+ vellum/client/types/node_execution_span_attributes.py,sha256=eKki7Fn1u1lem50CftfYglH6yuRRjq0d5FXAtxTuUP4,594
511
526
  vellum/client/types/node_execution_streaming_body.py,sha256=7XoldYoZwU5bFUOglFG48roWqvjxION6blYsoHFYYQY,702
512
527
  vellum/client/types/node_execution_streaming_event.py,sha256=ZXEG9Xd2V3Ivy-ihg8mom2SmGxda6eTNXPmOuJmDdU4,1897
513
528
  vellum/client/types/node_input_compiled_array_value.py,sha256=4ABwdQaEKpusNtRocwEP2dwe9nPHDCtgrfTqG9-_0Kw,910
@@ -614,10 +629,14 @@ vellum/client/types/replace_test_suite_test_case_request.py,sha256=EUlx37sEKkXDX
614
629
  vellum/client/types/rich_text_child_block.py,sha256=JCC-6FLdxHG--gE-L6lJtRNI0pmnZxCVz0nqkFI-wdM,271
615
630
  vellum/client/types/rich_text_prompt_block.py,sha256=Te2qnJOiCgqV0gaiui8mVjnATX7mFNJjHqXDX4fd5jA,1000
616
631
  vellum/client/types/sandbox_scenario.py,sha256=gaHbNzufZhibRGoo42Ryo6xZNRo30lLU39oSDS6mqIs,808
617
- vellum/client/types/scenario_input.py,sha256=OWwguuBsjCQeJvEaW9IJ3cbWExf7KeXcR7ByekhbDhA,477
632
+ vellum/client/types/scenario_input.py,sha256=BxKRtG7u9boXbavG0kD-_-pFVk19LPzNFPZyfw64Lfo,967
633
+ vellum/client/types/scenario_input_audio_variable_value.py,sha256=n5dF5IxRPsE-x4MiH-2hiiOlZSBFD8WbY8cTzOmKyHs,656
618
634
  vellum/client/types/scenario_input_chat_history_variable_value.py,sha256=FzXccgtyH9iTyGJJ6XcOM0TmzCMaPKWr1FmGtFCvxsQ,799
635
+ vellum/client/types/scenario_input_document_variable_value.py,sha256=yMQtXkCuaQ-A30YJFQzgiFZx5LKk-MBi4zniO_xqxDs,674
636
+ vellum/client/types/scenario_input_image_variable_value.py,sha256=0Hjj9e0qTAw8DO5Yob4oR9JN_d3SVTImyjpCOX3pRSc,656
619
637
  vellum/client/types/scenario_input_json_variable_value.py,sha256=07_Fj9UOzMGvz1H0j1awmMz0Q6ErliwjgKVU_iUyZb8,716
620
638
  vellum/client/types/scenario_input_string_variable_value.py,sha256=PI_pk-WOXVRBSW6PZKDZW11svxd2r9E6bCpl0zC0MTM,717
639
+ vellum/client/types/scenario_input_video_variable_value.py,sha256=IoTqaDZFEgdKUI9ACg-UAUdVFGsl6x76ky_c9GbJQB8,656
621
640
  vellum/client/types/search_filters_request.py,sha256=Moxewgl8KwjIy-VBistrchXQAqfsn5fkqO5R2UzLlI8,1276
622
641
  vellum/client/types/search_node_result.py,sha256=2DbnKCus81-fj56IoGZqIL6Tw6hjf5jH0O2P_AXah8o,713
623
642
  vellum/client/types/search_node_result_data.py,sha256=rXs0R0OG2pjTcE6bMp5lN6_cUusFiVUDwkC3pVo5l6o,810
@@ -645,8 +664,8 @@ vellum/client/types/slim_document_document_to_document_index.py,sha256=Ogo8OFjtm
645
664
  vellum/client/types/slim_release_review.py,sha256=vWNkPXk5wZ_scHsWHz_77PfMZRDn-4qUkqVbCKqY1zQ,747
646
665
  vellum/client/types/slim_workflow_deployment.py,sha256=Gm3zwOXx-7Pwm8bh8lgmNsJ8zsZiGUKvDQkNJx9I5qI,2103
647
666
  vellum/client/types/slim_workflow_execution_read.py,sha256=6Ep2iQ6tWTCGxzvAh4t3G_4BjHQ3_JZ9WFdc81XGqkA,2302
648
- vellum/client/types/span_link.py,sha256=0Yss6161cD5irD5RXMoUdvqv3ZVj-zLwot6847_ite8,1450
649
- vellum/client/types/span_link_type_enum.py,sha256=NaBXnHnOKMZvgHfjhwJJNqM4wuTOxtGkMIXjN2hU-6A,130
667
+ vellum/client/types/span_link.py,sha256=roO93-xRnqZy2hx9WJFNZW46o8l2bGf3ugeaBepegr4,1433
668
+ vellum/client/types/span_link_type_enum.py,sha256=SQsPKp1Jb8PWE2tkCHt9d5fZP8Oz77vG8_VYKF-h9J4,186
650
669
  vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=BZZHXI_vq28VAmRbbIIK2wyRSkQpWfOPD7kiydhQmd8,1147
651
670
  vellum/client/types/streaming_execute_prompt_event.py,sha256=zqAeXugb9kOgkm7PHIjw5CIL6058WZ4kik3pa18SDbo,1125
652
671
  vellum/client/types/streaming_prompt_execution_meta.py,sha256=lcA1w4BQ8qIz0QS_PaYkDKJUb28gKQ2XGcaYb5Brl5w,700
@@ -684,14 +703,18 @@ vellum/client/types/terminal_node_result_output.py,sha256=hOzkyk90PDY2ZGd0JSrlEh
684
703
  vellum/client/types/terminal_node_search_results_result.py,sha256=jXRnFcB7aSpEP7ivEk1rCd0jtDP3pXOODEuEhCm_Lt4,847
685
704
  vellum/client/types/terminal_node_string_result.py,sha256=Fj4v9vZI5gijB9xtrQ7u6ue7TgDmeA3ziW3yxuZbGUw,762
686
705
  vellum/client/types/test_case_array_variable_value.py,sha256=_SLmKw4QDYnUjk1rtdJgXyQ0wrEHRXOSS7mmTFcjniM,974
706
+ vellum/client/types/test_case_audio_variable_value.py,sha256=tTWipY4ZuUfVNibNR6Iy_MHC__Fp4nf3ofCLVy1_PtM,750
687
707
  vellum/client/types/test_case_chat_history_variable_value.py,sha256=YDKIN6Kmk0iE_zjVZP60JK7gGkBTgqGtLPRjYuzmC1Q,789
708
+ vellum/client/types/test_case_document_variable_value.py,sha256=jzjTDAWYGfqpxrjSSmwAC5yznGCgoMDdSZXCXLxpXF8,770
688
709
  vellum/client/types/test_case_error_variable_value.py,sha256=XE0LthR-AFjn4gAYIGdjaB0EoRUNYxiU1KrnvWiGOGE,750
689
710
  vellum/client/types/test_case_function_call_variable_value.py,sha256=8l3L_bt4MwmdoejHVgL25rPjqMI1AmPZTljyREXe9Fg,783
711
+ vellum/client/types/test_case_image_variable_value.py,sha256=dkXp_CQjokcBUidjNYkx9z0lwv56CEhGktyGTEBsOOg,750
690
712
  vellum/client/types/test_case_json_variable_value.py,sha256=-wy1WvxTZcKSVFhrpdJ7GukQBmYOokxeIDxF798Epzw,706
691
713
  vellum/client/types/test_case_number_variable_value.py,sha256=im2Ouf0e869f4SEZKah6564-UEKBmyu89DYvj1fg1io,712
692
714
  vellum/client/types/test_case_search_results_variable_value.py,sha256=UDkPZPUbQ0ymfEsxrcBSfA9P3XvUf7hvs3ivREuBJ1w,800
693
715
  vellum/client/types/test_case_string_variable_value.py,sha256=L6qt-PCBp6m6g8BZgiy8tePIHm58ThnxDbPEKkAnEKQ,707
694
- vellum/client/types/test_case_variable_value.py,sha256=8xNyIYjPH7_7K9l1GXOdreWsXaHsEzveRkzXo5_0tpQ,1014
716
+ vellum/client/types/test_case_variable_value.py,sha256=eIifSIZQtCI9x3CqX5Sojdvq97TFeFIzFtah3VmIRIU,1435
717
+ vellum/client/types/test_case_video_variable_value.py,sha256=4EHIq1aVCtxtY70p3qhDPUC_WlPZvVD2kCbUt3f0yNM,749
695
718
  vellum/client/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=Z8xAr72cdA_fA_WKenqCOTGnqB0kFXQyRPctYDc7eFE,1118
696
719
  vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=CxtPXzIMLf4N__mSl0w8B9KHQH6yB0lPlNWkKWEGCWM,892
697
720
  vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=Rlkjn7P6N2Ok8Zjt6qZiKJ3-ep3F9gSGAFhJOyIVY20,899
@@ -793,6 +816,7 @@ vellum/client/types/vellum_video_request.py,sha256=LY4tTkuqXY1YBdX90DsY_4MsFe_7c
793
816
  vellum/client/types/vellum_workflow_execution_event.py,sha256=0jh-c8xETsu-WRLjtsecleCVww95IQUwlEIk3m8goKo,935
794
817
  vellum/client/types/video_chat_message_content.py,sha256=f62vr2Mqe23JupVzwwSh0IhYAwg3xrcSFXyfQmXgBCU,688
795
818
  vellum/client/types/video_chat_message_content_request.py,sha256=TMAFrhONSPuzERYcXCsrs_7G6F8kJGuMVV2V76clHXQ,717
819
+ vellum/client/types/video_input.py,sha256=IHJVxOu_Cq8LBD5cs2OgW_ZXJ3YzFmXqq1AFhQZV2c4,750
796
820
  vellum/client/types/video_input_request.py,sha256=wNQwncQsbEez5UR7wI_Erg__6V_WDMyxrz91yMvcUqI,779
797
821
  vellum/client/types/video_prompt_block.py,sha256=8uyJRzNnoV6vB4sVPxtxx9gsVkLsfHaobLcQM4CdWTY,977
798
822
  vellum/client/types/video_vellum_value.py,sha256=8KfVyPZ0b3nv0wuo-p88yE9jc5VyYXk0HPnesgiYGjY,711
@@ -854,7 +878,7 @@ vellum/client/types/workflow_output_number.py,sha256=nrG20pZjxE78U6JoDx5iN3zSLqR
854
878
  vellum/client/types/workflow_output_search_results.py,sha256=yDtDPFguX9klzTbwBrFfyK0yNl2EZboN6UpYNG6rWjw,867
855
879
  vellum/client/types/workflow_output_string.py,sha256=EmxzAl3NNXZzPmmt68BHDWfiN1R70qomqVNGMIIu7_4,774
856
880
  vellum/client/types/workflow_parent_context.py,sha256=RtjSqcTyUgUTbsDcNmY_AagBvV4ZU3SWF9HZAhSME20,1609
857
- vellum/client/types/workflow_push_deployment_config_request.py,sha256=04zHC5iwKNEV68K5wpn8tK6IhF8nq8rKQSOE4Ic9yug,709
881
+ vellum/client/types/workflow_push_deployment_config_request.py,sha256=mDJTj5WbDU-RXUxEMOfF9k7GlBUD6wE-WUB2P01r6Pw,762
858
882
  vellum/client/types/workflow_push_exec_config.py,sha256=6TaVMVqhSOz4DnY46l8axPDtytSioXDl9nHvFXSxH1g,94
859
883
  vellum/client/types/workflow_push_response.py,sha256=Tkwpvh_Ar1yl-kyClh2fTIP2e0cqyk1ohbArIp8I9gs,688
860
884
  vellum/client/types/workflow_release_tag_read.py,sha256=NIZWhCVQ3UhxkpjuyoZ2nY9WHuUr4WSlFvqTQ4JStR4,1259
@@ -1020,6 +1044,7 @@ vellum/types/array_vellum_value.py,sha256=7_gccasRhEX_dekrfpiM6sqGVXxnT6f5sLB904
1020
1044
  vellum/types/array_vellum_value_request.py,sha256=-tnyAoCArVJRaTQFPDqgTHuzec1UgWpXqjEbUbhZbyI,164
1021
1045
  vellum/types/audio_chat_message_content.py,sha256=beZpZqUrJQHis0bkhiPnJO9qbl8c2DZyv74dd1OZf8o,164
1022
1046
  vellum/types/audio_chat_message_content_request.py,sha256=ySZZ8IARXUocjczLZ27CHEmRX3uY2UhBfTzaOE8CeRo,172
1047
+ vellum/types/audio_input.py,sha256=gi6X2IlDIxj5K1FtOURHXsZYf8ip6sEwFwXN8bJRGSs,149
1023
1048
  vellum/types/audio_input_request.py,sha256=vmN-KTn6OEuE6MK2t_lllo9lr1ln1839PjwgAXOLfnc,157
1024
1049
  vellum/types/audio_prompt_block.py,sha256=zpQcvY3Fic82mPlPyOLCjZBBq0dFyCyKuGRkYNDWQko,156
1025
1050
  vellum/types/audio_vellum_value.py,sha256=-9HkLXeBD-IMh_TwKdmQVfAD_F0et2gYKT2ykb_jaAM,156
@@ -1090,6 +1115,7 @@ vellum/types/document_index_chunking_request.py,sha256=QA6WzSFgBU9pfBI-IeTuM0Iwa
1090
1115
  vellum/types/document_index_indexing_config.py,sha256=q-thOinZy-BBQsKXZcw2jRu3cABujG5Ib6caSOiNw04,168
1091
1116
  vellum/types/document_index_indexing_config_request.py,sha256=m9fL0NlibO4iTqVaJM90VFUQNvV9aG5b57NNh0hvgU0,176
1092
1117
  vellum/types/document_index_read.py,sha256=7053CeFkTD9X5MRrVpiCRwKHGAQNtzNd6LnVCDePsM0,157
1118
+ vellum/types/document_input.py,sha256=ncU0Ph8tdPpBZ4lJIblwH9so08g3ERmTQG1tzUyldOA,152
1093
1119
  vellum/types/document_input_request.py,sha256=gF6tWYznhxg2_4Q-uzP6db1FhGFJlT8FebYF3uRzZ70,160
1094
1120
  vellum/types/document_processing_state.py,sha256=7EKGnlG1AFm62N_xxeWVrbRVfSrNeJ_3rbnZAlle1nQ,163
1095
1121
  vellum/types/document_prompt_block.py,sha256=ioBoNvFp4GpAuQhiu6EnipQb4AG1laY2uHYOdOB8NHg,159
@@ -1189,6 +1215,7 @@ vellum/types/hkunlp_instructor_xl_vectorizer.py,sha256=JRH8sgsDEfVUF9H-83eoirSU4
1189
1215
  vellum/types/hkunlp_instructor_xl_vectorizer_request.py,sha256=zb2L8_LUSxtOQOWjr9tDU_mK2a_azmKO8DqNQi52EQM,177
1190
1216
  vellum/types/image_chat_message_content.py,sha256=hNVlrv_xoUm1-euBK5DkZDInoMfL0eXb4Klx3juCWYU,164
1191
1217
  vellum/types/image_chat_message_content_request.py,sha256=-_twjYRyGrsbc79xyd0vZ2xkt3Z4rsjJb2Ts0xRX-dY,172
1218
+ vellum/types/image_input.py,sha256=39a99_N15qQ2vcsnVXPDaS2DU-KXm9hGIu_PKVkH_A8,149
1192
1219
  vellum/types/image_input_request.py,sha256=zQ1rGM0u1uSuhLULzJai5Ld5dq7yrdTFjve4-zDI-lo,157
1193
1220
  vellum/types/image_prompt_block.py,sha256=K5eXoltiu3ifZqeLtNUTz6DUKu-aqnK0hUyWNvPGByg,156
1194
1221
  vellum/types/image_vellum_value.py,sha256=aCrL399s9TeVKI5dvF7_qus43IgGYoy1erUqOk_iHB8,156
@@ -1227,18 +1254,28 @@ vellum/types/metric_node_result.py,sha256=Q_bUgbdRnSP26nEcJ-vZD7k2oLIcThN3JjW9hX
1227
1254
  vellum/types/ml_model_read.py,sha256=d_CPwZ3bhXtC8c5jwXkuNVvobDqPI-I_byZ6WnVla1Q,151
1228
1255
  vellum/types/ml_model_usage.py,sha256=Q-7_W6GfL8rMnqjhSiZirw8oB60GFc0p_mNYdZdlMjY,152
1229
1256
  vellum/types/ml_model_usage_wrapper.py,sha256=anoup7KWug4Mrt-JhsB_S1zuKcdq9ncXsz3y8t_I52g,160
1257
+ vellum/types/named_scenario_input_audio_variable_value_request.py,sha256=oRpROG3chl9AT6Yhq_7gqsw5-g77kG75wU3krW_NCGs,187
1230
1258
  vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=Sfwba1cvocP8UR6CCDEjE7HsI5Xs6Dopk1W88Zf1ng8,194
1259
+ vellum/types/named_scenario_input_document_variable_value_request.py,sha256=NlHPaksjTuhgZ7gH8Z9GSOZcjpWiV-mVsJrjYDRawkc,190
1260
+ vellum/types/named_scenario_input_image_variable_value_request.py,sha256=E6B0Fz6l238g2MRHG85Mnsp_KrR-DR9kYDdtAvM_oWQ,187
1231
1261
  vellum/types/named_scenario_input_json_variable_value_request.py,sha256=1kZ4Y7TttH8O897rmtkEIMraql5dTIyEVvFZn0I5Py8,186
1232
1262
  vellum/types/named_scenario_input_request.py,sha256=E7TcL4YRw7dcEyMEws3AsiCw7GSHnrXpktBKOoVSytA,166
1233
1263
  vellum/types/named_scenario_input_string_variable_value_request.py,sha256=pVeiCCR2WwJheqFKCTXgLKV_R09pgXeS5MxR-GGq64c,188
1264
+ vellum/types/named_scenario_input_video_variable_value_request.py,sha256=ZrEBSn2vb-bfmnaxmR4IusR16-L6XypmAL_9r2ZdZhQ,187
1234
1265
  vellum/types/named_test_case_array_variable_value.py,sha256=5xCeo5yEVfcx_beN2Ve38wAbZ2XNPksaPVTZUFq7ckE,174
1235
1266
  vellum/types/named_test_case_array_variable_value_request.py,sha256=pzLYTykbKMzEiuphP4BkghFywBfxZwf5c0oB3fQXfOE,182
1267
+ vellum/types/named_test_case_audio_variable_value.py,sha256=HNeEPFIGaZXKT4QG3LU4qYmqRiUAFuhv7PlZ6AvFw2g,174
1268
+ vellum/types/named_test_case_audio_variable_value_request.py,sha256=DSg_YTUGzAQwWOoQiTrZm2nlqqLpmmcY1OkR60FbuuQ,182
1236
1269
  vellum/types/named_test_case_chat_history_variable_value.py,sha256=EwiVT1aqZTALWbhAC4HHchESBhMADmUMt9Tnk7WSZvo,181
1237
1270
  vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=aZZE4xRE8Z0_GaiMN3YV7d0sRXSH0bcRmf4P-Yd6HNI,189
1271
+ vellum/types/named_test_case_document_variable_value.py,sha256=vP8geASPsZ-HVB2tHkZu_S60OYcJdMHcqTQ8oJdJ8yY,177
1272
+ vellum/types/named_test_case_document_variable_value_request.py,sha256=Yz2VA8s-766PE1oN0YokLq40odzZB9X1nfTmG51EPqk,185
1238
1273
  vellum/types/named_test_case_error_variable_value.py,sha256=3au_-sa-X7eX9JzIpqPNE5jBXk1K9nMHej5t3PKMwos,174
1239
1274
  vellum/types/named_test_case_error_variable_value_request.py,sha256=dBSi83hBg2h0e1ZUXt0IPu20hoL-x_jUvihgCismisk,182
1240
1275
  vellum/types/named_test_case_function_call_variable_value.py,sha256=i8nILtJMDguhI0l8lQgSYKaR5Qo-fYODIq-iaGqcXbk,182
1241
1276
  vellum/types/named_test_case_function_call_variable_value_request.py,sha256=TY_vy-9v9BSY__esqZKDTNpu6-hlNatvdKiYKQCkny8,190
1277
+ vellum/types/named_test_case_image_variable_value.py,sha256=EUQmO6IWTIOtJk0lpYM6Xx7xMlVm4KaCTz8Eo79SJks,174
1278
+ vellum/types/named_test_case_image_variable_value_request.py,sha256=XidH57y8eouIdSUvGPEMYmx4yj2xOeMTXVj1p0JQNNw,182
1242
1279
  vellum/types/named_test_case_json_variable_value.py,sha256=F2JNC845GWt0QmEw9FweozW2IHSI2kLmvDRnrwGc04U,173
1243
1280
  vellum/types/named_test_case_json_variable_value_request.py,sha256=nfggu6sP4ZNcd58rPLLGeaE1Ic_I1_9r-uAX_EEtQDE,181
1244
1281
  vellum/types/named_test_case_number_variable_value.py,sha256=2FOTydeCFcvE-xK2ByxV7ieFc70babLRCradQRFxZD4,175
@@ -1249,6 +1286,8 @@ vellum/types/named_test_case_string_variable_value.py,sha256=_PcNHHue12g2KNgdIIL
1249
1286
  vellum/types/named_test_case_string_variable_value_request.py,sha256=yMc4MHFYQxp74x65fYS3J9vdEjD2mQ0Fn15ProANxF4,183
1250
1287
  vellum/types/named_test_case_variable_value.py,sha256=IQUDNPYT5IDTaAE85Ux-IZOCfPXhkX6Q6THSYwuKDDM,168
1251
1288
  vellum/types/named_test_case_variable_value_request.py,sha256=6F5TyadMY5Syh0DlRjnQ2nHW5fzWR7WecKMqswF9Xl4,176
1289
+ vellum/types/named_test_case_video_variable_value.py,sha256=AX_ABJB7Xj43LcJjuxwmswT-LOKu8uKUazgOb_qmlFk,174
1290
+ vellum/types/named_test_case_video_variable_value_request.py,sha256=piWCKrPPFi6rSvZQCBpoiwrjJonE9S72Jaz3gZCcRCQ,182
1252
1291
  vellum/types/new_member_join_behavior_enum.py,sha256=sXTcMrRvSzdLnDRrwQSeHdvZHwjDTW7ciHCX2SgGaVc,167
1253
1292
  vellum/types/node_execution_fulfilled_body.py,sha256=5q7mgPXXOJfg4MkEAwitpCmg7pRMJav3nkULeJtS9i8,167
1254
1293
  vellum/types/node_execution_fulfilled_event.py,sha256=jtCNpRkOaBk-RZAWFdM4_OpP7z8VYVqpEprGDF-4NPI,168
@@ -1369,9 +1408,13 @@ vellum/types/rich_text_child_block.py,sha256=W8xJl-2DOKrpht1-Dx9EcVa4XDO5t7CS1B5
1369
1408
  vellum/types/rich_text_prompt_block.py,sha256=shNFuLbLu4EioA6NIdpje6rMjjGHf7Zcj6Xq1jmDIBw,160
1370
1409
  vellum/types/sandbox_scenario.py,sha256=5UNeSCS3Fsdwvw86BRk684fpJ4eL3H1EDtkardylQAM,154
1371
1410
  vellum/types/scenario_input.py,sha256=7hPNra79WHM-gq4fQl8IyCyGIXZitAjExO7BxqGnghU,152
1411
+ vellum/types/scenario_input_audio_variable_value.py,sha256=hKnYoejs-4CW6EBnscTjyLyqO1nmLVB9H9a4LL_38ak,173
1372
1412
  vellum/types/scenario_input_chat_history_variable_value.py,sha256=2qRhXl9HAj-YZpxyeWcB9OWlTt1SkixLanQ4e8StMIQ,180
1413
+ vellum/types/scenario_input_document_variable_value.py,sha256=8d4QUpOZmkLCB926mqitSQPmFHp5U5QYp_G5g3B9En8,176
1414
+ vellum/types/scenario_input_image_variable_value.py,sha256=3-AEkjeo0QUp1RQiyouATyPQaoNPO_HL0MctBr8_3DI,173
1373
1415
  vellum/types/scenario_input_json_variable_value.py,sha256=_SdTrpu5-zfBvQmTbq1LHVLjdFZR8HAQT8ckU7ZzOcQ,172
1374
1416
  vellum/types/scenario_input_string_variable_value.py,sha256=MoHVC5ArkofAtemyk1m1SXkco1_6OZ59C7ilGrYyTlA,174
1417
+ vellum/types/scenario_input_video_variable_value.py,sha256=5I7uQvn2zDTnJr0owPhb3ZvlmoSvh7ABjI1gLAAJwgQ,173
1375
1418
  vellum/types/search_filters_request.py,sha256=5FsWAJNOvgErJ9hl_1arivGCFWs4aN_rDshzjj58rIk,160
1376
1419
  vellum/types/search_node_result.py,sha256=BY0a_9sB6PhLKgyFlrrGOHwC2d-8PhcDrZg1yB7eZQA,156
1377
1420
  vellum/types/search_node_result_data.py,sha256=mIUpEUBwh6_5Vp0cRrUI2peHREOwKYDi0WesMPiPHNs,161
@@ -1438,14 +1481,18 @@ vellum/types/terminal_node_result_output.py,sha256=g4UmUdDHF3CL81e80hmciqdpBIOUq
1438
1481
  vellum/types/terminal_node_search_results_result.py,sha256=k8fH9IKOroUNoGEMUS5haaBoyF4y5YXiG07h1eWRYXs,173
1439
1482
  vellum/types/terminal_node_string_result.py,sha256=MqllLuOFL_mIu4OldgYvvn0DNY0XoIZkHL5hfGuU8i8,165
1440
1483
  vellum/types/test_case_array_variable_value.py,sha256=nDfrBJMn2FLSjqpa25HNTNrkO0C5Ze0zpR0isO3f6m0,168
1484
+ vellum/types/test_case_audio_variable_value.py,sha256=lCz6LPAMDnUW6QU6lEMukY2ojObq8N-7NsiZcFLNfsg,168
1441
1485
  vellum/types/test_case_chat_history_variable_value.py,sha256=cKO4ky1I08fm3I2rIJGV5rUFTqHWl2qhoAurUznWCEU,175
1486
+ vellum/types/test_case_document_variable_value.py,sha256=xa38ZlTflWUJLUlCOz7Nwr-FWsqMjEdCKGXacnFQQwk,171
1442
1487
  vellum/types/test_case_error_variable_value.py,sha256=OxS-UCKb6XUQb7ibikRglCOBW0B2Hzx3bJHNIGPdyfo,168
1443
1488
  vellum/types/test_case_function_call_variable_value.py,sha256=z8sshmsl2WqUW4b3Ib5gY52kWst3G1gsbAYN7-6a3ng,176
1489
+ vellum/types/test_case_image_variable_value.py,sha256=4l21cO74TpouUPqh-UJgMAbAi62k6gVCpmpBt0enBPc,168
1444
1490
  vellum/types/test_case_json_variable_value.py,sha256=slUDUtiy_d_ykgwy6A0xWpowSp4u8xqHW9l_sWgz9Jg,167
1445
1491
  vellum/types/test_case_number_variable_value.py,sha256=yn-G7dRMWQy1hIDxvxkWPziSNJLh8v1KVgyP7daXBFc,169
1446
1492
  vellum/types/test_case_search_results_variable_value.py,sha256=4RLsTPMHA8dMWE20Ylt0Fmo-dDMyOEMqVp9Fbe3aNBo,177
1447
1493
  vellum/types/test_case_string_variable_value.py,sha256=E4ilEzJ57yeSN1zPIvXZHzmrgaqjSKI7YzYW-oLXMTo,169
1448
1494
  vellum/types/test_case_variable_value.py,sha256=_hbfEbScyjxxWm9n5196eeAL7aDnycY2MXUASzS1lS0,162
1495
+ vellum/types/test_case_video_variable_value.py,sha256=EZhQ_sdfk3esalVipOA4zaS31do5TTFAyitSHMurY6E,168
1449
1496
  vellum/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=10fYG5_R0w4fsMv-jCpenA4VbCfxifB0woXNSYe1OgU,187
1450
1497
  vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=SW_TLQGZjocS7IXdtoJMTSqX7SXewvLyzoYWKtV3M9A,192
1451
1498
  vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=sUxE_4ywcOperfssPyIcbAPe8vFDM7t00w_hRrVc2ec,200
@@ -1547,6 +1594,7 @@ vellum/types/vellum_video_request.py,sha256=BL0H-Vk5yRq6MUSvLdYTe9nBCSe9MMvB5kVG
1547
1594
  vellum/types/vellum_workflow_execution_event.py,sha256=EI7XANl17nOtYskD9b4FmdejkKsK7cFDwe9asr2xGC8,169
1548
1595
  vellum/types/video_chat_message_content.py,sha256=x2YaRST3U9u3escOgvNNcdY49plQHg1ccrdJXbj8Xzs,164
1549
1596
  vellum/types/video_chat_message_content_request.py,sha256=oTkqgOJTbmSJrPJ-mAPq1brkWe4rOCOPXfWfGeGuqFw,172
1597
+ vellum/types/video_input.py,sha256=bptuP_7DGkM8PKLhw1ofy7SH_E4EBNzSnvW90-5bIlE,149
1550
1598
  vellum/types/video_input_request.py,sha256=6pDU5OXPS8AxJGlM9KoaQiVAl7UthQsr0aTCMyjZ0KY,157
1551
1599
  vellum/types/video_prompt_block.py,sha256=hraiqOCqrjZ6g5b7sH_oUCqitstkKJphuz2-uzmXEkk,156
1552
1600
  vellum/types/video_vellum_value.py,sha256=h7AtjZ4YA7BJpTsB78nJ01c6oKjk4ZNfxRQxjevZEwQ,156
@@ -1862,7 +1910,9 @@ vellum/workflows/references/tests/test_lazy.py,sha256=0s50-LizMTlSTBQahpK0fg_xqC
1862
1910
  vellum/workflows/references/vellum_secret.py,sha256=Od4d19a5yletWMqNfJR5d_mZQUkVcFzj29mE-T9J7yE,480
1863
1911
  vellum/workflows/references/workflow_input.py,sha256=W3rOK1EPd2gYHb04WJwmNm1CUSdvZ9LKrs8RMKxACBs,1751
1864
1912
  vellum/workflows/resolvers/__init__.py,sha256=eH6hTvZO4IciDaf_cf7aM2vs-DkBDyJPycOQevJxQnI,82
1865
- vellum/workflows/resolvers/base.py,sha256=WHra9LRtlTuB1jmuNqkfVE2JUgB61Cyntn8f0b0WZg4,411
1913
+ vellum/workflows/resolvers/base.py,sha256=1jwWJPE0CVJdYJTZBd2ktscl-TK1WNgr4V95Q0ATH0o,1078
1914
+ vellum/workflows/resolvers/resolver.py,sha256=4A3e-Kr65VEPQedn-q_Mne-Ln7JvK95rM35K2kUsqB8,1463
1915
+ vellum/workflows/resolvers/tests/test_resolver.py,sha256=U4LKQ6-UBU-7nJ39uSkxW9Y5n17tPh5ZTlSYb4jzFjY,2138
1866
1916
  vellum/workflows/runner/__init__.py,sha256=i1iG5sAhtpdsrlvwgH6B-m49JsINkiWyPWs8vyT-bqM,72
1867
1917
  vellum/workflows/runner/runner.py,sha256=sADrp593ia4auJ8fIP6jc5na3b5WaTvvBdjpkTthboY,36929
1868
1918
  vellum/workflows/sandbox.py,sha256=jwlFFQjHDwmbVoBah_Q3i8K_BrzOt-F6TXFauiyVyIk,3021
@@ -1901,13 +1951,13 @@ vellum/workflows/utils/uuids.py,sha256=IaZQANz7fhF7la0_J1O50Y6D2PIYv_taRDTRzBT9a
1901
1951
  vellum/workflows/utils/vellum_variables.py,sha256=-CohqD3AeyCYzqwyrPZ7mt_lt7ibWLyx0MuS484feJk,5503
1902
1952
  vellum/workflows/vellum_client.py,sha256=xkfoucodxNK5JR2-lbRqZx3xzDgExWkP6kySrpi_Ubc,1079
1903
1953
  vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
1904
- vellum/workflows/workflows/base.py,sha256=TPsdIj8bcMZikytxIJd-wyS7TGSf1FkAQnfVkf6zSrI,27393
1954
+ vellum/workflows/workflows/base.py,sha256=-hu_s2LQcV7zeBumMHFwezD4ctV7VUvDI4mpMdNRkCI,27488
1905
1955
  vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
1906
1956
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1907
1957
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=ptMntHzVyy8ZuzNgeTuk7hREgKQ5UBdgq8VJFSGaW4Y,20832
1908
1958
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1909
- vellum_ai-1.2.4.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1910
- vellum_ai-1.2.4.dist-info/METADATA,sha256=5gsVuDhKzbBpbW7awdKuaGhzXGg2IBxDeY66boLv0ns,5547
1911
- vellum_ai-1.2.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1912
- vellum_ai-1.2.4.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1913
- vellum_ai-1.2.4.dist-info/RECORD,,
1959
+ vellum_ai-1.2.5.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1960
+ vellum_ai-1.2.5.dist-info/METADATA,sha256=pez3o4cs4bFWAYjNMO2FyJR942rNI_Ht_KzWysTXyKU,5547
1961
+ vellum_ai-1.2.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1962
+ vellum_ai-1.2.5.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1963
+ vellum_ai-1.2.5.dist-info/RECORD,,
@@ -7,6 +7,24 @@ from vellum_ee.workflows.display.utils.registry import (
7
7
  from vellum_ee.workflows.display.workflows.get_vellum_workflow_display_class import get_workflow_display
8
8
 
9
9
 
10
+ def _should_mark_workflow_dynamic(event: WorkflowExecutionInitiatedEvent) -> bool:
11
+ """
12
+ Check if workflow should be marked as dynamic based on execution context.
13
+ Returns True if parent.type == WORKFLOW_RELEASE_TAG and parent.parent.type == WORKFLOW_NODE.
14
+ """
15
+ if not event.parent:
16
+ return False
17
+
18
+ parent = event.parent
19
+ if parent.type != "WORKFLOW_RELEASE_TAG":
20
+ return False
21
+
22
+ if not parent.parent or parent.parent.type != "WORKFLOW_NODE":
23
+ return False
24
+
25
+ return True
26
+
27
+
10
28
  def event_enricher(event: WorkflowExecutionInitiatedEvent) -> WorkflowExecutionInitiatedEvent:
11
29
  workflow_definition = event.body.workflow_definition
12
30
  workflow_display = get_workflow_display(
@@ -16,7 +34,7 @@ def event_enricher(event: WorkflowExecutionInitiatedEvent) -> WorkflowExecutionI
16
34
  )
17
35
  register_workflow_display_context(event.span_id, workflow_display.display_context)
18
36
 
19
- if event.body.workflow_definition.is_dynamic:
37
+ if event.body.workflow_definition.is_dynamic or _should_mark_workflow_dynamic(event):
20
38
  register_workflow_display_class(workflow_definition, workflow_display.__class__)
21
39
  workflow_version_exec_config = workflow_display.serialize()
22
40
  setattr(event.body, "workflow_version_exec_config", workflow_version_exec_config)
@@ -2,8 +2,10 @@ import pytest
2
2
  from uuid import uuid4
3
3
  from typing import Optional
4
4
 
5
+ from vellum.workflows.events.types import NodeParentContext, WorkflowDeploymentParentContext
5
6
  from vellum.workflows.events.workflow import WorkflowExecutionInitiatedBody, WorkflowExecutionInitiatedEvent
6
7
  from vellum.workflows.inputs.base import BaseInputs
8
+ from vellum.workflows.outputs.base import BaseOutputs
7
9
  from vellum.workflows.workflows.base import BaseWorkflow
8
10
  from vellum_ee.workflows.display.utils.events import event_enricher
9
11
 
@@ -67,3 +69,43 @@ def test_event_enricher_static_workflow(is_dynamic: bool, expected_config: Optio
67
69
 
68
70
  # AND workflow_version_exec_config is set to the expected config
69
71
  assert event.body.workflow_version_exec_config == expected_config
72
+
73
+
74
+ def test_event_enricher_marks_subworkflow_deployment_as_dynamic():
75
+ """Test that event_enricher treats subworkflow deployments as dynamic."""
76
+
77
+ class TestWorkflow(BaseWorkflow):
78
+ is_dynamic = False
79
+
80
+ class Outputs(BaseOutputs):
81
+ pass
82
+
83
+ event: WorkflowExecutionInitiatedEvent = WorkflowExecutionInitiatedEvent(
84
+ trace_id=uuid4(),
85
+ span_id=uuid4(),
86
+ parent=WorkflowDeploymentParentContext(
87
+ span_id=uuid4(),
88
+ deployment_id=uuid4(),
89
+ deployment_name="test-deployment",
90
+ deployment_history_item_id=uuid4(),
91
+ release_tag_id=uuid4(),
92
+ release_tag_name="test-tag",
93
+ workflow_version_id=uuid4(),
94
+ external_id=None,
95
+ metadata=None,
96
+ parent=NodeParentContext(
97
+ span_id=uuid4(),
98
+ node_definition=TestWorkflow,
99
+ parent=None,
100
+ ),
101
+ ),
102
+ body=WorkflowExecutionInitiatedBody(
103
+ workflow_definition=TestWorkflow,
104
+ inputs=BaseInputs(),
105
+ ),
106
+ )
107
+
108
+ enriched_event = event_enricher(event)
109
+
110
+ assert hasattr(enriched_event.body, "workflow_version_exec_config")
111
+ assert enriched_event.body.workflow_version_exec_config is not None