vellum-ai 1.2.4__py3-none-any.whl → 1.3.0__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 (105) hide show
  1. vellum/__init__.py +56 -0
  2. vellum/client/README.md +1 -1
  3. vellum/client/core/client_wrapper.py +2 -2
  4. vellum/client/reference.md +0 -9
  5. vellum/client/resources/workflow_sandboxes/client.py +0 -12
  6. vellum/client/resources/workflow_sandboxes/raw_client.py +2 -10
  7. vellum/client/resources/workflows/client.py +20 -0
  8. vellum/client/resources/workflows/raw_client.py +20 -0
  9. vellum/client/types/__init__.py +56 -0
  10. vellum/client/types/audio_input.py +30 -0
  11. vellum/client/types/code_executor_input.py +8 -0
  12. vellum/client/types/deployment_read.py +5 -5
  13. vellum/client/types/document_input.py +30 -0
  14. vellum/client/types/image_input.py +30 -0
  15. vellum/client/types/named_scenario_input_audio_variable_value_request.py +22 -0
  16. vellum/client/types/named_scenario_input_document_variable_value_request.py +22 -0
  17. vellum/client/types/named_scenario_input_image_variable_value_request.py +22 -0
  18. vellum/client/types/named_scenario_input_request.py +8 -0
  19. vellum/client/types/named_scenario_input_video_variable_value_request.py +22 -0
  20. vellum/client/types/named_test_case_audio_variable_value.py +26 -0
  21. vellum/client/types/named_test_case_audio_variable_value_request.py +26 -0
  22. vellum/client/types/named_test_case_document_variable_value.py +22 -0
  23. vellum/client/types/named_test_case_document_variable_value_request.py +22 -0
  24. vellum/client/types/named_test_case_image_variable_value.py +22 -0
  25. vellum/client/types/named_test_case_image_variable_value_request.py +22 -0
  26. vellum/client/types/named_test_case_variable_value.py +8 -0
  27. vellum/client/types/named_test_case_variable_value_request.py +8 -0
  28. vellum/client/types/named_test_case_video_variable_value.py +22 -0
  29. vellum/client/types/named_test_case_video_variable_value_request.py +22 -0
  30. vellum/client/types/node_execution_span_attributes.py +1 -0
  31. vellum/client/types/scenario_input.py +11 -1
  32. vellum/client/types/scenario_input_audio_variable_value.py +22 -0
  33. vellum/client/types/scenario_input_document_variable_value.py +22 -0
  34. vellum/client/types/scenario_input_image_variable_value.py +22 -0
  35. vellum/client/types/scenario_input_video_variable_value.py +22 -0
  36. vellum/client/types/slim_deployment_read.py +5 -5
  37. vellum/client/types/slim_workflow_deployment.py +5 -5
  38. vellum/client/types/span_link.py +1 -1
  39. vellum/client/types/span_link_type_enum.py +1 -1
  40. vellum/client/types/test_case_audio_variable_value.py +27 -0
  41. vellum/client/types/test_case_document_variable_value.py +27 -0
  42. vellum/client/types/test_case_image_variable_value.py +27 -0
  43. vellum/client/types/test_case_variable_value.py +8 -0
  44. vellum/client/types/test_case_video_variable_value.py +27 -0
  45. vellum/client/types/video_input.py +30 -0
  46. vellum/client/types/workflow_deployment_read.py +5 -5
  47. vellum/client/types/workflow_push_deployment_config_request.py +1 -0
  48. vellum/client/types/workflow_request_audio_input_request.py +30 -0
  49. vellum/client/types/workflow_request_document_input_request.py +30 -0
  50. vellum/client/types/workflow_request_image_input_request.py +30 -0
  51. vellum/client/types/workflow_request_input_request.py +8 -0
  52. vellum/client/types/workflow_request_video_input_request.py +30 -0
  53. vellum/types/audio_input.py +3 -0
  54. vellum/types/document_input.py +3 -0
  55. vellum/types/image_input.py +3 -0
  56. vellum/types/named_scenario_input_audio_variable_value_request.py +3 -0
  57. vellum/types/named_scenario_input_document_variable_value_request.py +3 -0
  58. vellum/types/named_scenario_input_image_variable_value_request.py +3 -0
  59. vellum/types/named_scenario_input_video_variable_value_request.py +3 -0
  60. vellum/types/named_test_case_audio_variable_value.py +3 -0
  61. vellum/types/named_test_case_audio_variable_value_request.py +3 -0
  62. vellum/types/named_test_case_document_variable_value.py +3 -0
  63. vellum/types/named_test_case_document_variable_value_request.py +3 -0
  64. vellum/types/named_test_case_image_variable_value.py +3 -0
  65. vellum/types/named_test_case_image_variable_value_request.py +3 -0
  66. vellum/types/named_test_case_video_variable_value.py +3 -0
  67. vellum/types/named_test_case_video_variable_value_request.py +3 -0
  68. vellum/types/scenario_input_audio_variable_value.py +3 -0
  69. vellum/types/scenario_input_document_variable_value.py +3 -0
  70. vellum/types/scenario_input_image_variable_value.py +3 -0
  71. vellum/types/scenario_input_video_variable_value.py +3 -0
  72. vellum/types/test_case_audio_variable_value.py +3 -0
  73. vellum/types/test_case_document_variable_value.py +3 -0
  74. vellum/types/test_case_image_variable_value.py +3 -0
  75. vellum/types/test_case_video_variable_value.py +3 -0
  76. vellum/types/video_input.py +3 -0
  77. vellum/types/workflow_request_audio_input_request.py +3 -0
  78. vellum/types/workflow_request_document_input_request.py +3 -0
  79. vellum/types/workflow_request_image_input_request.py +3 -0
  80. vellum/types/workflow_request_video_input_request.py +3 -0
  81. vellum/workflows/events/types.py +6 -1
  82. vellum/workflows/integrations/tests/test_mcp_service.py +106 -1
  83. vellum/workflows/nodes/__init__.py +2 -0
  84. vellum/workflows/nodes/displayable/__init__.py +2 -0
  85. vellum/workflows/nodes/displayable/web_search_node/__init__.py +3 -0
  86. vellum/workflows/nodes/displayable/web_search_node/node.py +133 -0
  87. vellum/workflows/resolvers/base.py +19 -1
  88. vellum/workflows/resolvers/resolver.py +97 -0
  89. vellum/workflows/resolvers/tests/test_resolver.py +131 -0
  90. vellum/workflows/resolvers/types.py +11 -0
  91. vellum/workflows/runner/runner.py +49 -1
  92. vellum/workflows/state/context.py +41 -7
  93. vellum/workflows/utils/zip.py +46 -0
  94. vellum/workflows/workflows/base.py +13 -0
  95. {vellum_ai-1.2.4.dist-info → vellum_ai-1.3.0.dist-info}/METADATA +1 -1
  96. {vellum_ai-1.2.4.dist-info → vellum_ai-1.3.0.dist-info}/RECORD +105 -43
  97. vellum_cli/tests/test_init.py +7 -24
  98. vellum_cli/tests/test_pull.py +27 -52
  99. vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py +7 -33
  100. vellum_ee/workflows/display/utils/events.py +19 -1
  101. vellum_ee/workflows/display/utils/tests/test_events.py +42 -0
  102. vellum_ee/workflows/tests/test_server.py +115 -0
  103. {vellum_ai-1.2.4.dist-info → vellum_ai-1.3.0.dist-info}/LICENSE +0 -0
  104. {vellum_ai-1.2.4.dist-info → vellum_ai-1.3.0.dist-info}/WHEEL +0 -0
  105. {vellum_ai-1.2.4.dist-info → vellum_ai-1.3.0.dist-info}/entry_points.txt +0 -0
@@ -14,10 +14,10 @@ vellum_cli/tests/conftest.py,sha256=wx3PlJjVB0HRf5dr2b_idOIw27WPPl0J0FNbhIJJaVk,
14
14
  vellum_cli/tests/test_config.py,sha256=uvKGDc8BoVyT9_H0Z-g8469zVxomn6Oi3Zj-vK7O_wU,2631
15
15
  vellum_cli/tests/test_image_push.py,sha256=X0YOPdoaAnWtK9IQTxaN_wWpw08-5G3v76k1Wu53JpU,12801
16
16
  vellum_cli/tests/test_image_push_error_handling.py,sha256=QRH0eYNEEIkD2-EVFQWYexOKlhMB6puh1GouovrE-VU,7647
17
- vellum_cli/tests/test_init.py,sha256=8UOc_ThfouR4ja5cCl_URuLk7ohr9JXfCnG4yka1OUQ,18754
17
+ vellum_cli/tests/test_init.py,sha256=C_rV4lu-ab5iFoLRizs1XAUnSPdMf7oFuc1i4N4udOU,18285
18
18
  vellum_cli/tests/test_main.py,sha256=qDZG-aQauPwBwM6A2DIu1494n47v3pL28XakTbLGZ-k,272
19
19
  vellum_cli/tests/test_ping.py,sha256=b3aQLd-N59_8w2rRiWqwpB1rlHaKEYVbAj1Y3hi7A-g,2605
20
- vellum_cli/tests/test_pull.py,sha256=WcRtp5N27CbfBv7vx2wNhLTsSacYw7TiBVVXcI7ZMW4,50014
20
+ vellum_cli/tests/test_pull.py,sha256=f7dK61y82LlJm-FAv-IpfmscJijIfZZrR-rzN1TKkU0,49421
21
21
  vellum_cli/tests/test_push.py,sha256=10G-H88tdiYvg9CaC8OXOf25UEzWkWWB01vNhuxzjog,41944
22
22
  vellum_ee/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  vellum_ee/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -75,7 +75,7 @@ vellum_ee/workflows/display/tests/workflow_serialization/__init__.py,sha256=47DE
75
75
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
76
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py,sha256=Y-ajeT65b5varmrZCw6L3hir4hJCFq-eO0jZfRcrs7g,1886
77
77
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_adornments_serialization.py,sha256=bD9AtBo7Pz1Drbh420NR0VSiHBfExw_UtNRPCiAqki0,13967
78
- vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py,sha256=iqTbPYVSrMgIls7vKdPgr7ZEbdpztDjlOWvexPU-zqc,26240
78
+ vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_attributes_serialization.py,sha256=xEGh4RXGMR06M5s6rD6GjsloNslsRaH4UhIg7Djyw7Q,25144
79
79
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_outputs_serialization.py,sha256=O1CIKMmRTaMaT3IhjwCAiMz1ZThPg9lAUbSiZkx_E8c,6321
80
80
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_ports_serialization.py,sha256=fPXcX-tWQ0UMuEyOFAylgi7pWiE7lZWk9vrShlTExik,40053
81
81
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/test_trigger_serialization.py,sha256=FLvcD8eoABHUPv08oSpIp_P-65sw2gl4whMXEJJj4f8,6785
@@ -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
@@ -143,14 +143,14 @@ vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIP
143
143
  vellum_ee/workflows/tests/test_display_meta.py,sha256=PkXJVnMZs9GNooDkd59n4YTBAX3XGPQWeSSVbhehVFM,5112
144
144
  vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50PllvtAZoI8-uPs,6066
145
145
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=lk-4dVnG2HcxxywBXxDR1ieH8D9RJt4lvchoZhtQPdU,2892
146
- vellum_ee/workflows/tests/test_server.py,sha256=sqF1qcgBVy9-blGetaea6MZ73KHnm0KaPz5B7s4NT9Q,19687
146
+ vellum_ee/workflows/tests/test_server.py,sha256=dXFBraU99Y6cKp2aBhLFXQTScSRcE9WaWjo1z9piqdU,23344
147
147
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
148
- vellum/__init__.py,sha256=IG2ykJHmx0b18gK9CKlLBFmZ6PhRV8iUuNYcusqxUXM,45130
149
- vellum/client/README.md,sha256=gxc7JlJRBrBZpN5LHa2ORxYTRHFLPnWmnIugN8pmQh4,5600
148
+ vellum/__init__.py,sha256=8-mW70qyqMe2d4jNe2hgthuXs5n3c0qTlkdV8Nz8qcs,47252
149
+ vellum/client/README.md,sha256=Uwq9qIFZAHOVCgEfatfWe4YoW-QYYy6xVA1bMjPvx3k,5601
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=4fuXhB590QTj5qI353Y_5rFqDeErbqxyPvpM_U8GaL4,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
@@ -171,7 +171,7 @@ vellum/client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy
171
171
  vellum/client/errors/too_many_requests_error.py,sha256=SJJemdgUlQHV_VpxK8UfFNexgZebNT5_MTOeQs6oVgc,397
172
172
  vellum/client/errors/unauthorized_error.py,sha256=waPl5Swiqsk3FQK-Lljzx4KDh4RPZ0wL6BLHjM8onQ8,394
173
173
  vellum/client/raw_client.py,sha256=IJNaTvVzigyiqHZ9g-nLZzXsV8P7aRUZHdXV0U3ddn8,112401
174
- vellum/client/reference.md,sha256=oGKMw2vruJgy2hmDYu0adKkhmb_55J3UU8jB5iWjoNk,95172
174
+ vellum/client/reference.md,sha256=Y5xeW_q9baKaA9Dcd9RL8MQLcGEGAQZXbiCmcrA7yr0,95032
175
175
  vellum/client/resources/__init__.py,sha256=R10JFtO6U6QRvNubrmDIjncT7e5q4AiOKjXSK4wFuXc,1609
176
176
  vellum/client/resources/ad_hoc/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
177
177
  vellum/client/resources/ad_hoc/client.py,sha256=AbK_g9HPL2xEBHymwQ9rGO7js7X1YpNYcqPa-PxlsyM,14400
@@ -232,20 +232,20 @@ vellum/client/resources/workflow_executions/__init__.py,sha256=_VhToAyIt_5axN6CL
232
232
  vellum/client/resources/workflow_executions/client.py,sha256=842zA9XaKSgY0scgGZG0ICerJrJyDfVerSGf_zHXPcY,4177
233
233
  vellum/client/resources/workflow_executions/raw_client.py,sha256=y5iJ61fTqe4h6-YcqeIxXXMwChxJF80LFmym5t3oWNY,4728
234
234
  vellum/client/resources/workflow_sandboxes/__init__.py,sha256=fWzZgZDNIbJgdYSnL3f0lGa3lbb2bnmaofmodrlVG6o,195
235
- vellum/client/resources/workflow_sandboxes/client.py,sha256=w8fWQCIFbDLXl4OX1OT_cKoVPA_q65qgOhb-I_zXO1k,10457
236
- vellum/client/resources/workflow_sandboxes/raw_client.py,sha256=_C2MzCk36NP8Do4pat0Q0aPSSbP6KhOqBOaGtqNxwk0,12643
235
+ vellum/client/resources/workflow_sandboxes/client.py,sha256=tsf2ujDOxZLcjZQp8FKXnNewQlxzv8s-3nIRgVv26uc,10089
236
+ vellum/client/resources/workflow_sandboxes/raw_client.py,sha256=iQpaFR-D96ygLLh4xYbYGK88UH-wttapsPxMc1xkvas,12323
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=-PQEF1IO-RdF7X4YeQf2ZO-OCPvy0pYxt11__WpVxso,71638
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
@@ -324,7 +325,7 @@ vellum/client/types/delimiter_chunking_request.py,sha256=zZ1Y-hKzM9ie2kzuTjKain2
324
325
  vellum/client/types/deployment_history_item.py,sha256=E48hjXMKGQfpf4Shw1_WLk2i9IjKKAh4ntDzKmbLJ6s,1225
325
326
  vellum/client/types/deployment_provider_payload_response.py,sha256=VIpzush2vTmhurLs9Jf16mo19je2WoKyLJxEHwVeKtk,782
326
327
  vellum/client/types/deployment_provider_payload_response_payload.py,sha256=xHLQnWFN0AZRZdrOiKawwpoKK7BTmnZfp0P7FCc2ZqE,188
327
- vellum/client/types/deployment_read.py,sha256=CzudxnNjP2uoL3bZrJ0XwrMJzqOTkNJLbYl7hucnfy0,2063
328
+ vellum/client/types/deployment_read.py,sha256=gfkVoVD84glJuUFDX61uMwmhDYg46h2UXcXIhTEA-ls,2040
328
329
  vellum/client/types/deployment_release_tag_deployment_history_item.py,sha256=wVzgUnsa4Up9ReH_rP_l5ssfA0J1Nsfd4AN6lRsxhv4,595
329
330
  vellum/client/types/deployment_release_tag_read.py,sha256=SV_kKYFIjhfD5CR9Ab35pdJpAJSx-7jhk2x_HUiz-Uk,1242
330
331
  vellum/client/types/docker_service_token.py,sha256=rv0F19r2Sgba_Hbz757HFfTV8UioAQTV2xXkWxfn4sg,578
@@ -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
@@ -639,14 +658,14 @@ vellum/client/types/sentence_chunker_config.py,sha256=WQGyc0jUiATYhQ7ezbBN06--ul
639
658
  vellum/client/types/sentence_chunker_config_request.py,sha256=Da2ANuD4icLxI74emC4z2EEZjeY2k1w9HnEQt2g1AvI,680
640
659
  vellum/client/types/sentence_chunking.py,sha256=MyEImiN0dhWEVFvD76Q6mCqIEjZcyY__Hhu0j9Gjs6Y,747
641
660
  vellum/client/types/sentence_chunking_request.py,sha256=itrdqiKJJ7UKWVGTfj9sJu3kMSThkBF_Qj-3KqFunP4,776
642
- vellum/client/types/slim_deployment_read.py,sha256=yg1T-Ly642S3_ozdZuhMPy0lLJjH7nvHlbg_-IH0Ypc,1744
661
+ vellum/client/types/slim_deployment_read.py,sha256=lEJ8Fx7QSmqjEK-LcR0y_hX2ywcaPbYjxINwPGy_ofw,1733
643
662
  vellum/client/types/slim_document.py,sha256=2eSbvk2u8NsFsT3SPmDRvdBJsytJ8zPAVhuTsC-hF8E,2359
644
663
  vellum/client/types/slim_document_document_to_document_index.py,sha256=Ogo8OFjtmcHjDmIynB9vckfjSZxFNhKM-cYpqSfREGI,1515
645
664
  vellum/client/types/slim_release_review.py,sha256=vWNkPXk5wZ_scHsWHz_77PfMZRDn-4qUkqVbCKqY1zQ,747
646
- vellum/client/types/slim_workflow_deployment.py,sha256=Gm3zwOXx-7Pwm8bh8lgmNsJ8zsZiGUKvDQkNJx9I5qI,2103
665
+ vellum/client/types/slim_workflow_deployment.py,sha256=jIciGPCW9QNtDRdq3w_zUdrrE4cg1LWkcoyGM-L6cs0,2085
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
@@ -800,7 +824,7 @@ vellum/client/types/video_vellum_value_request.py,sha256=q6dptI5XdJNFwtTRlNyPqU0
800
824
  vellum/client/types/workflow_deployment_event_executions_response.py,sha256=KXzRC0iaXsBu9ezA4p7PIHL4-IWIQ-lX6NW6noTHtZ4,1570
801
825
  vellum/client/types/workflow_deployment_history_item.py,sha256=RF_ByBLXRo47MhAuyUV4FkxmN_j879-UylfRyZaYAm0,1327
802
826
  vellum/client/types/workflow_deployment_parent_context.py,sha256=1JdTw3LL6tgCgiMVrX35SZVu7mZcxz6SbxWPCUBZ09s,1796
803
- vellum/client/types/workflow_deployment_read.py,sha256=dLot3_qIrajmCdDVKSHm7fq5wCwjcQe7gSn8BgcM0kA,2277
827
+ vellum/client/types/workflow_deployment_read.py,sha256=rQQZmRy92tfXie8kg14dRI9t_lZ1StbXSEtSFPMTV9E,2247
804
828
  vellum/client/types/workflow_deployment_release.py,sha256=yd9Okgpdm8Oob9VmIKaksZjmRv2uLHGJtc-H5sO10F8,1520
805
829
  vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=ZmQhemAQEqARhkSvc9DFdgfTKQfSHvRTS9reW1Wx9dI,550
806
830
  vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=VbVrwsDHapwPSsGEt8OM9Gjs31esIqkp8ta5zrZvPTw,885
@@ -854,16 +878,20 @@ 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
861
885
  vellum/client/types/workflow_release_tag_workflow_deployment_history_item.py,sha256=we8Qj3udlnbOtIz5hZRpGgtxIxjr_2OSleaNutuB3f0,601
886
+ vellum/client/types/workflow_request_audio_input_request.py,sha256=wKTsNDj4cvvr9mkGlACq1hdiDtffc5IdpvJmBjRyw3s,823
862
887
  vellum/client/types/workflow_request_chat_history_input_request.py,sha256=JiiqxniYKIrwOhQAVUHkffNx6YTqWBhMmwg5Pf-6e-Y,862
863
- vellum/client/types/workflow_request_input_request.py,sha256=REr7j_FA1ugRt-9-2EWm5OQrj7hsReetPaNDMTS57HA,633
888
+ vellum/client/types/workflow_request_document_input_request.py,sha256=MWDi6Ttd62KK2uSkNQdMgf-l8QRlHepA6tTz5YH9BVU,843
889
+ vellum/client/types/workflow_request_image_input_request.py,sha256=NNlkMhYlz3ZzfMx223T9UleMDpeIFrgIJpT2jZAjlWM,823
890
+ vellum/client/types/workflow_request_input_request.py,sha256=CVLyzs3rfFpx_UR-guH2jr-Mp3_PYedTGBZ3F0L6_-Y,1126
864
891
  vellum/client/types/workflow_request_json_input_request.py,sha256=LZu_IblkMhk5JWAcfaUYEv4TV2FeAkd4zCjPnZbFUPM,781
865
892
  vellum/client/types/workflow_request_number_input_request.py,sha256=1eesPBjUA7wKWLR90x6in3U9H1ZuIt_2_OqIYjy-V9s,760
866
893
  vellum/client/types/workflow_request_string_input_request.py,sha256=oqdelrQTkpCH5d6tN6ytaTFVkBHJynl_bF8a_Grokh4,758
894
+ vellum/client/types/workflow_request_video_input_request.py,sha256=SAZ-tX5w7Cfx_u5HueZhN9BUv3K9BLlz0nnUbNc9QrE,822
867
895
  vellum/client/types/workflow_result_event.py,sha256=LRA5i2sE9cZYQwZSygp7MnKXvHP8dB9gWVVxWY2w1f0,1343
868
896
  vellum/client/types/workflow_result_event_output_data.py,sha256=S_S_h42LMnqJv9FLEEASFS3HsqX2RZHT_kQeeWOSj28,1222
869
897
  vellum/client/types/workflow_result_event_output_data_array.py,sha256=pjEc56lhN5uTtB2DLXDkzH6mwj4glGNNXKG_dCAG_Io,1318
@@ -1020,6 +1048,7 @@ vellum/types/array_vellum_value.py,sha256=7_gccasRhEX_dekrfpiM6sqGVXxnT6f5sLB904
1020
1048
  vellum/types/array_vellum_value_request.py,sha256=-tnyAoCArVJRaTQFPDqgTHuzec1UgWpXqjEbUbhZbyI,164
1021
1049
  vellum/types/audio_chat_message_content.py,sha256=beZpZqUrJQHis0bkhiPnJO9qbl8c2DZyv74dd1OZf8o,164
1022
1050
  vellum/types/audio_chat_message_content_request.py,sha256=ySZZ8IARXUocjczLZ27CHEmRX3uY2UhBfTzaOE8CeRo,172
1051
+ vellum/types/audio_input.py,sha256=gi6X2IlDIxj5K1FtOURHXsZYf8ip6sEwFwXN8bJRGSs,149
1023
1052
  vellum/types/audio_input_request.py,sha256=vmN-KTn6OEuE6MK2t_lllo9lr1ln1839PjwgAXOLfnc,157
1024
1053
  vellum/types/audio_prompt_block.py,sha256=zpQcvY3Fic82mPlPyOLCjZBBq0dFyCyKuGRkYNDWQko,156
1025
1054
  vellum/types/audio_vellum_value.py,sha256=-9HkLXeBD-IMh_TwKdmQVfAD_F0et2gYKT2ykb_jaAM,156
@@ -1090,6 +1119,7 @@ vellum/types/document_index_chunking_request.py,sha256=QA6WzSFgBU9pfBI-IeTuM0Iwa
1090
1119
  vellum/types/document_index_indexing_config.py,sha256=q-thOinZy-BBQsKXZcw2jRu3cABujG5Ib6caSOiNw04,168
1091
1120
  vellum/types/document_index_indexing_config_request.py,sha256=m9fL0NlibO4iTqVaJM90VFUQNvV9aG5b57NNh0hvgU0,176
1092
1121
  vellum/types/document_index_read.py,sha256=7053CeFkTD9X5MRrVpiCRwKHGAQNtzNd6LnVCDePsM0,157
1122
+ vellum/types/document_input.py,sha256=ncU0Ph8tdPpBZ4lJIblwH9so08g3ERmTQG1tzUyldOA,152
1093
1123
  vellum/types/document_input_request.py,sha256=gF6tWYznhxg2_4Q-uzP6db1FhGFJlT8FebYF3uRzZ70,160
1094
1124
  vellum/types/document_processing_state.py,sha256=7EKGnlG1AFm62N_xxeWVrbRVfSrNeJ_3rbnZAlle1nQ,163
1095
1125
  vellum/types/document_prompt_block.py,sha256=ioBoNvFp4GpAuQhiu6EnipQb4AG1laY2uHYOdOB8NHg,159
@@ -1189,6 +1219,7 @@ vellum/types/hkunlp_instructor_xl_vectorizer.py,sha256=JRH8sgsDEfVUF9H-83eoirSU4
1189
1219
  vellum/types/hkunlp_instructor_xl_vectorizer_request.py,sha256=zb2L8_LUSxtOQOWjr9tDU_mK2a_azmKO8DqNQi52EQM,177
1190
1220
  vellum/types/image_chat_message_content.py,sha256=hNVlrv_xoUm1-euBK5DkZDInoMfL0eXb4Klx3juCWYU,164
1191
1221
  vellum/types/image_chat_message_content_request.py,sha256=-_twjYRyGrsbc79xyd0vZ2xkt3Z4rsjJb2Ts0xRX-dY,172
1222
+ vellum/types/image_input.py,sha256=39a99_N15qQ2vcsnVXPDaS2DU-KXm9hGIu_PKVkH_A8,149
1192
1223
  vellum/types/image_input_request.py,sha256=zQ1rGM0u1uSuhLULzJai5Ld5dq7yrdTFjve4-zDI-lo,157
1193
1224
  vellum/types/image_prompt_block.py,sha256=K5eXoltiu3ifZqeLtNUTz6DUKu-aqnK0hUyWNvPGByg,156
1194
1225
  vellum/types/image_vellum_value.py,sha256=aCrL399s9TeVKI5dvF7_qus43IgGYoy1erUqOk_iHB8,156
@@ -1227,18 +1258,28 @@ vellum/types/metric_node_result.py,sha256=Q_bUgbdRnSP26nEcJ-vZD7k2oLIcThN3JjW9hX
1227
1258
  vellum/types/ml_model_read.py,sha256=d_CPwZ3bhXtC8c5jwXkuNVvobDqPI-I_byZ6WnVla1Q,151
1228
1259
  vellum/types/ml_model_usage.py,sha256=Q-7_W6GfL8rMnqjhSiZirw8oB60GFc0p_mNYdZdlMjY,152
1229
1260
  vellum/types/ml_model_usage_wrapper.py,sha256=anoup7KWug4Mrt-JhsB_S1zuKcdq9ncXsz3y8t_I52g,160
1261
+ vellum/types/named_scenario_input_audio_variable_value_request.py,sha256=oRpROG3chl9AT6Yhq_7gqsw5-g77kG75wU3krW_NCGs,187
1230
1262
  vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=Sfwba1cvocP8UR6CCDEjE7HsI5Xs6Dopk1W88Zf1ng8,194
1263
+ vellum/types/named_scenario_input_document_variable_value_request.py,sha256=NlHPaksjTuhgZ7gH8Z9GSOZcjpWiV-mVsJrjYDRawkc,190
1264
+ vellum/types/named_scenario_input_image_variable_value_request.py,sha256=E6B0Fz6l238g2MRHG85Mnsp_KrR-DR9kYDdtAvM_oWQ,187
1231
1265
  vellum/types/named_scenario_input_json_variable_value_request.py,sha256=1kZ4Y7TttH8O897rmtkEIMraql5dTIyEVvFZn0I5Py8,186
1232
1266
  vellum/types/named_scenario_input_request.py,sha256=E7TcL4YRw7dcEyMEws3AsiCw7GSHnrXpktBKOoVSytA,166
1233
1267
  vellum/types/named_scenario_input_string_variable_value_request.py,sha256=pVeiCCR2WwJheqFKCTXgLKV_R09pgXeS5MxR-GGq64c,188
1268
+ vellum/types/named_scenario_input_video_variable_value_request.py,sha256=ZrEBSn2vb-bfmnaxmR4IusR16-L6XypmAL_9r2ZdZhQ,187
1234
1269
  vellum/types/named_test_case_array_variable_value.py,sha256=5xCeo5yEVfcx_beN2Ve38wAbZ2XNPksaPVTZUFq7ckE,174
1235
1270
  vellum/types/named_test_case_array_variable_value_request.py,sha256=pzLYTykbKMzEiuphP4BkghFywBfxZwf5c0oB3fQXfOE,182
1271
+ vellum/types/named_test_case_audio_variable_value.py,sha256=HNeEPFIGaZXKT4QG3LU4qYmqRiUAFuhv7PlZ6AvFw2g,174
1272
+ vellum/types/named_test_case_audio_variable_value_request.py,sha256=DSg_YTUGzAQwWOoQiTrZm2nlqqLpmmcY1OkR60FbuuQ,182
1236
1273
  vellum/types/named_test_case_chat_history_variable_value.py,sha256=EwiVT1aqZTALWbhAC4HHchESBhMADmUMt9Tnk7WSZvo,181
1237
1274
  vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=aZZE4xRE8Z0_GaiMN3YV7d0sRXSH0bcRmf4P-Yd6HNI,189
1275
+ vellum/types/named_test_case_document_variable_value.py,sha256=vP8geASPsZ-HVB2tHkZu_S60OYcJdMHcqTQ8oJdJ8yY,177
1276
+ vellum/types/named_test_case_document_variable_value_request.py,sha256=Yz2VA8s-766PE1oN0YokLq40odzZB9X1nfTmG51EPqk,185
1238
1277
  vellum/types/named_test_case_error_variable_value.py,sha256=3au_-sa-X7eX9JzIpqPNE5jBXk1K9nMHej5t3PKMwos,174
1239
1278
  vellum/types/named_test_case_error_variable_value_request.py,sha256=dBSi83hBg2h0e1ZUXt0IPu20hoL-x_jUvihgCismisk,182
1240
1279
  vellum/types/named_test_case_function_call_variable_value.py,sha256=i8nILtJMDguhI0l8lQgSYKaR5Qo-fYODIq-iaGqcXbk,182
1241
1280
  vellum/types/named_test_case_function_call_variable_value_request.py,sha256=TY_vy-9v9BSY__esqZKDTNpu6-hlNatvdKiYKQCkny8,190
1281
+ vellum/types/named_test_case_image_variable_value.py,sha256=EUQmO6IWTIOtJk0lpYM6Xx7xMlVm4KaCTz8Eo79SJks,174
1282
+ vellum/types/named_test_case_image_variable_value_request.py,sha256=XidH57y8eouIdSUvGPEMYmx4yj2xOeMTXVj1p0JQNNw,182
1242
1283
  vellum/types/named_test_case_json_variable_value.py,sha256=F2JNC845GWt0QmEw9FweozW2IHSI2kLmvDRnrwGc04U,173
1243
1284
  vellum/types/named_test_case_json_variable_value_request.py,sha256=nfggu6sP4ZNcd58rPLLGeaE1Ic_I1_9r-uAX_EEtQDE,181
1244
1285
  vellum/types/named_test_case_number_variable_value.py,sha256=2FOTydeCFcvE-xK2ByxV7ieFc70babLRCradQRFxZD4,175
@@ -1249,6 +1290,8 @@ vellum/types/named_test_case_string_variable_value.py,sha256=_PcNHHue12g2KNgdIIL
1249
1290
  vellum/types/named_test_case_string_variable_value_request.py,sha256=yMc4MHFYQxp74x65fYS3J9vdEjD2mQ0Fn15ProANxF4,183
1250
1291
  vellum/types/named_test_case_variable_value.py,sha256=IQUDNPYT5IDTaAE85Ux-IZOCfPXhkX6Q6THSYwuKDDM,168
1251
1292
  vellum/types/named_test_case_variable_value_request.py,sha256=6F5TyadMY5Syh0DlRjnQ2nHW5fzWR7WecKMqswF9Xl4,176
1293
+ vellum/types/named_test_case_video_variable_value.py,sha256=AX_ABJB7Xj43LcJjuxwmswT-LOKu8uKUazgOb_qmlFk,174
1294
+ vellum/types/named_test_case_video_variable_value_request.py,sha256=piWCKrPPFi6rSvZQCBpoiwrjJonE9S72Jaz3gZCcRCQ,182
1252
1295
  vellum/types/new_member_join_behavior_enum.py,sha256=sXTcMrRvSzdLnDRrwQSeHdvZHwjDTW7ciHCX2SgGaVc,167
1253
1296
  vellum/types/node_execution_fulfilled_body.py,sha256=5q7mgPXXOJfg4MkEAwitpCmg7pRMJav3nkULeJtS9i8,167
1254
1297
  vellum/types/node_execution_fulfilled_event.py,sha256=jtCNpRkOaBk-RZAWFdM4_OpP7z8VYVqpEprGDF-4NPI,168
@@ -1369,9 +1412,13 @@ vellum/types/rich_text_child_block.py,sha256=W8xJl-2DOKrpht1-Dx9EcVa4XDO5t7CS1B5
1369
1412
  vellum/types/rich_text_prompt_block.py,sha256=shNFuLbLu4EioA6NIdpje6rMjjGHf7Zcj6Xq1jmDIBw,160
1370
1413
  vellum/types/sandbox_scenario.py,sha256=5UNeSCS3Fsdwvw86BRk684fpJ4eL3H1EDtkardylQAM,154
1371
1414
  vellum/types/scenario_input.py,sha256=7hPNra79WHM-gq4fQl8IyCyGIXZitAjExO7BxqGnghU,152
1415
+ vellum/types/scenario_input_audio_variable_value.py,sha256=hKnYoejs-4CW6EBnscTjyLyqO1nmLVB9H9a4LL_38ak,173
1372
1416
  vellum/types/scenario_input_chat_history_variable_value.py,sha256=2qRhXl9HAj-YZpxyeWcB9OWlTt1SkixLanQ4e8StMIQ,180
1417
+ vellum/types/scenario_input_document_variable_value.py,sha256=8d4QUpOZmkLCB926mqitSQPmFHp5U5QYp_G5g3B9En8,176
1418
+ vellum/types/scenario_input_image_variable_value.py,sha256=3-AEkjeo0QUp1RQiyouATyPQaoNPO_HL0MctBr8_3DI,173
1373
1419
  vellum/types/scenario_input_json_variable_value.py,sha256=_SdTrpu5-zfBvQmTbq1LHVLjdFZR8HAQT8ckU7ZzOcQ,172
1374
1420
  vellum/types/scenario_input_string_variable_value.py,sha256=MoHVC5ArkofAtemyk1m1SXkco1_6OZ59C7ilGrYyTlA,174
1421
+ vellum/types/scenario_input_video_variable_value.py,sha256=5I7uQvn2zDTnJr0owPhb3ZvlmoSvh7ABjI1gLAAJwgQ,173
1375
1422
  vellum/types/search_filters_request.py,sha256=5FsWAJNOvgErJ9hl_1arivGCFWs4aN_rDshzjj58rIk,160
1376
1423
  vellum/types/search_node_result.py,sha256=BY0a_9sB6PhLKgyFlrrGOHwC2d-8PhcDrZg1yB7eZQA,156
1377
1424
  vellum/types/search_node_result_data.py,sha256=mIUpEUBwh6_5Vp0cRrUI2peHREOwKYDi0WesMPiPHNs,161
@@ -1438,14 +1485,18 @@ vellum/types/terminal_node_result_output.py,sha256=g4UmUdDHF3CL81e80hmciqdpBIOUq
1438
1485
  vellum/types/terminal_node_search_results_result.py,sha256=k8fH9IKOroUNoGEMUS5haaBoyF4y5YXiG07h1eWRYXs,173
1439
1486
  vellum/types/terminal_node_string_result.py,sha256=MqllLuOFL_mIu4OldgYvvn0DNY0XoIZkHL5hfGuU8i8,165
1440
1487
  vellum/types/test_case_array_variable_value.py,sha256=nDfrBJMn2FLSjqpa25HNTNrkO0C5Ze0zpR0isO3f6m0,168
1488
+ vellum/types/test_case_audio_variable_value.py,sha256=lCz6LPAMDnUW6QU6lEMukY2ojObq8N-7NsiZcFLNfsg,168
1441
1489
  vellum/types/test_case_chat_history_variable_value.py,sha256=cKO4ky1I08fm3I2rIJGV5rUFTqHWl2qhoAurUznWCEU,175
1490
+ vellum/types/test_case_document_variable_value.py,sha256=xa38ZlTflWUJLUlCOz7Nwr-FWsqMjEdCKGXacnFQQwk,171
1442
1491
  vellum/types/test_case_error_variable_value.py,sha256=OxS-UCKb6XUQb7ibikRglCOBW0B2Hzx3bJHNIGPdyfo,168
1443
1492
  vellum/types/test_case_function_call_variable_value.py,sha256=z8sshmsl2WqUW4b3Ib5gY52kWst3G1gsbAYN7-6a3ng,176
1493
+ vellum/types/test_case_image_variable_value.py,sha256=4l21cO74TpouUPqh-UJgMAbAi62k6gVCpmpBt0enBPc,168
1444
1494
  vellum/types/test_case_json_variable_value.py,sha256=slUDUtiy_d_ykgwy6A0xWpowSp4u8xqHW9l_sWgz9Jg,167
1445
1495
  vellum/types/test_case_number_variable_value.py,sha256=yn-G7dRMWQy1hIDxvxkWPziSNJLh8v1KVgyP7daXBFc,169
1446
1496
  vellum/types/test_case_search_results_variable_value.py,sha256=4RLsTPMHA8dMWE20Ylt0Fmo-dDMyOEMqVp9Fbe3aNBo,177
1447
1497
  vellum/types/test_case_string_variable_value.py,sha256=E4ilEzJ57yeSN1zPIvXZHzmrgaqjSKI7YzYW-oLXMTo,169
1448
1498
  vellum/types/test_case_variable_value.py,sha256=_hbfEbScyjxxWm9n5196eeAL7aDnycY2MXUASzS1lS0,162
1499
+ vellum/types/test_case_video_variable_value.py,sha256=EZhQ_sdfk3esalVipOA4zaS31do5TTFAyitSHMurY6E,168
1449
1500
  vellum/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=10fYG5_R0w4fsMv-jCpenA4VbCfxifB0woXNSYe1OgU,187
1450
1501
  vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=SW_TLQGZjocS7IXdtoJMTSqX7SXewvLyzoYWKtV3M9A,192
1451
1502
  vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=sUxE_4ywcOperfssPyIcbAPe8vFDM7t00w_hRrVc2ec,200
@@ -1547,6 +1598,7 @@ vellum/types/vellum_video_request.py,sha256=BL0H-Vk5yRq6MUSvLdYTe9nBCSe9MMvB5kVG
1547
1598
  vellum/types/vellum_workflow_execution_event.py,sha256=EI7XANl17nOtYskD9b4FmdejkKsK7cFDwe9asr2xGC8,169
1548
1599
  vellum/types/video_chat_message_content.py,sha256=x2YaRST3U9u3escOgvNNcdY49plQHg1ccrdJXbj8Xzs,164
1549
1600
  vellum/types/video_chat_message_content_request.py,sha256=oTkqgOJTbmSJrPJ-mAPq1brkWe4rOCOPXfWfGeGuqFw,172
1601
+ vellum/types/video_input.py,sha256=bptuP_7DGkM8PKLhw1ofy7SH_E4EBNzSnvW90-5bIlE,149
1550
1602
  vellum/types/video_input_request.py,sha256=6pDU5OXPS8AxJGlM9KoaQiVAl7UthQsr0aTCMyjZ0KY,157
1551
1603
  vellum/types/video_prompt_block.py,sha256=hraiqOCqrjZ6g5b7sH_oUCqitstkKJphuz2-uzmXEkk,156
1552
1604
  vellum/types/video_vellum_value.py,sha256=h7AtjZ4YA7BJpTsB78nJ01c6oKjk4ZNfxRQxjevZEwQ,156
@@ -1613,11 +1665,15 @@ vellum/types/workflow_push_exec_config.py,sha256=UCpZQx6no5gyaf-jNhqcKNqGyQ8xoKQ
1613
1665
  vellum/types/workflow_push_response.py,sha256=3R8pxlK0HXaqJFMQ3ImohWmpAfPpLn-jaHmkc1lLA6g,160
1614
1666
  vellum/types/workflow_release_tag_read.py,sha256=n4Rd4Ju2LYtE_ESjaVImf4ybpxzWWkzfuwl9ynW5xZ8,163
1615
1667
  vellum/types/workflow_release_tag_workflow_deployment_history_item.py,sha256=slQ8VEaWoC9JEJUNENmiDaLMLCKYqZa3Oggaw6x7TGI,191
1668
+ vellum/types/workflow_request_audio_input_request.py,sha256=PZ0kscIMggI1T4ihIHIZhU9SDlNpt3JLp1CB-NqJasc,174
1616
1669
  vellum/types/workflow_request_chat_history_input_request.py,sha256=eyyTyEIdhYpBzd4boLyonevA0x3QF8bkFQPTNgbYioo,181
1670
+ vellum/types/workflow_request_document_input_request.py,sha256=bGKzwRm2a6UgtUvHPtPFrmiscqt_NR2hP-VDFckLvfM,177
1671
+ vellum/types/workflow_request_image_input_request.py,sha256=5SPnlRRmRw3QHJsjY-UIkAN_Rd74XN6V1UsxyolbNPs,174
1617
1672
  vellum/types/workflow_request_input_request.py,sha256=SVJ5Zu-uuEpFEqoJwEnuHJz1ldpBm-W40b02HPE9dNg,168
1618
1673
  vellum/types/workflow_request_json_input_request.py,sha256=fkeZTjEns0R1UdA1oX8DWEmIMrwYgSy8ia0rJyOUb74,173
1619
1674
  vellum/types/workflow_request_number_input_request.py,sha256=C5GareD-9BxO_LkcWnLTaUx_O7Z3iGy760gvrT2_Iyo,175
1620
1675
  vellum/types/workflow_request_string_input_request.py,sha256=ivQxu4db3dB7tlDlD8GUiVpn6IbsPVsuxdXeA2Jtk-4,175
1676
+ vellum/types/workflow_request_video_input_request.py,sha256=x4f5IMo8EaLGz0gckHBl-1bXHP9I5QrL8A-wBa11FYc,174
1621
1677
  vellum/types/workflow_result_event.py,sha256=JifChSMV7_5gIVYwHlvOxe2JD-HfSWBfTsCQghpO0yU,159
1622
1678
  vellum/types/workflow_result_event_output_data.py,sha256=jfl2_Oo21LmC1HOsZpt2Xkm6NhsW_DY9gt1EUfxOdJU,171
1623
1679
  vellum/types/workflow_result_event_output_data_array.py,sha256=MnUSnSZgUdFSOblnHhV6juyLEDvanINvmXCo7ixwZVw,177
@@ -1670,7 +1726,7 @@ vellum/workflows/events/stream.py,sha256=xhXJTZirFi0xad5neAQNogrIQ4h47fpnKbVC3vC
1670
1726
  vellum/workflows/events/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1671
1727
  vellum/workflows/events/tests/test_basic_workflow.py,sha256=Pj6orHsXz37jWC5FARi0Sx2Gjf99Owri2Cvr6Chb79k,1765
1672
1728
  vellum/workflows/events/tests/test_event.py,sha256=c2pM8ZOuES_8XjLYP4cU4cChrZUZ1ZZ3HUNIaaPAxXk,18411
1673
- vellum/workflows/events/types.py,sha256=5iU8KmS_fl0l42XBQshiNLPl2yLdPMEQKQ8nYP--0L0,4940
1729
+ vellum/workflows/events/types.py,sha256=mVrqAH9Hs9SpXm08Hcxdyap_ImQPwGsxRr56rSNMP34,5043
1674
1730
  vellum/workflows/events/workflow.py,sha256=gjg4Dt5i40jaTMK_-AaGtW9lzX1JGn3FUAu1XqhduJ8,8753
1675
1731
  vellum/workflows/exceptions.py,sha256=NiBiR3ggfmPxBVqD-H1SqmjI-7mIn0EStSN1BqApvCM,1213
1676
1732
  vellum/workflows/expressions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1728,9 +1784,9 @@ vellum/workflows/inputs/tests/test_inputs.py,sha256=lioA8917mFLYq7Ml69UNkqUjcWbb
1728
1784
  vellum/workflows/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1729
1785
  vellum/workflows/integrations/composio_service.py,sha256=rSliaZtNiBcDSvDxz9k5i1KkyUIrbxyegu0yU9cDByU,6023
1730
1786
  vellum/workflows/integrations/mcp_service.py,sha256=9DYb8dg2_kgc1UOu830kxhaFlt9yTbhKPhK3L6kb1t4,9831
1731
- vellum/workflows/integrations/tests/test_mcp_service.py,sha256=xQVtcqRbgq6Bx4pyxLdgUtZFNGISPfISvpXcyd0U6Hc,4595
1787
+ vellum/workflows/integrations/tests/test_mcp_service.py,sha256=q_DYrDkIqI4sQBNgID4YdbM4e9tneLVWY8YmI4R26d8,8859
1732
1788
  vellum/workflows/logging.py,sha256=_a217XogktV4Ncz6xKFz7WfYmZAzkfVRVuC0rWob8ls,437
1733
- vellum/workflows/nodes/__init__.py,sha256=aVdQVv7Y3Ro3JlqXGpxwaU2zrI06plDHD2aumH5WUIs,1157
1789
+ vellum/workflows/nodes/__init__.py,sha256=zymtc3_iW2rFmMR-sayTLuN6ZsAw8VnJweWPsjQk2-Q,1197
1734
1790
  vellum/workflows/nodes/bases/__init__.py,sha256=cniHuz_RXdJ4TQgD8CBzoiKDiPxg62ErdVpCbWICX64,58
1735
1791
  vellum/workflows/nodes/bases/base.py,sha256=9vOPHP6K6oK36bEby1KFRXpMevMwq6slwuSRhC-bWFc,20752
1736
1792
  vellum/workflows/nodes/bases/base_adornment_node.py,sha256=hrgzuTetM4ynPd9YGHoK8Vwwn4XITi3aZZ_OCnQrq4Y,3433
@@ -1759,7 +1815,7 @@ vellum/workflows/nodes/core/try_node/__init__.py,sha256=JVD4DrldTIqFQQFrubs9KtWC
1759
1815
  vellum/workflows/nodes/core/try_node/node.py,sha256=XdyOvlwQ3m4h0-_WNtaBl2t_CdlzPXclulkLOtUcX3E,4388
1760
1816
  vellum/workflows/nodes/core/try_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1761
1817
  vellum/workflows/nodes/core/try_node/tests/test_node.py,sha256=h6eUc3SggvhzBWlOD0PrPUlkoCSQHwjqYn81VkxSIxU,4948
1762
- vellum/workflows/nodes/displayable/__init__.py,sha256=zH7SFotr4i8sO-r5_k53yPipQwDouDmHxTfCE6dXAoU,1093
1818
+ vellum/workflows/nodes/displayable/__init__.py,sha256=7U82xW397jdeo0910ksf_Twx6etn5xtiKcZIsB9TOE8,1157
1763
1819
  vellum/workflows/nodes/displayable/api_node/__init__.py,sha256=MoxdQSnidIj1Nf_d-hTxlOxcZXaZnsWFDbE-PkTK24o,56
1764
1820
  vellum/workflows/nodes/displayable/api_node/node.py,sha256=F7ucsuEmrVYlTKMIoi60fFJ_ELYgGuc7jEmJCEyQczw,2956
1765
1821
  vellum/workflows/nodes/displayable/api_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1833,6 +1889,8 @@ vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service
1833
1889
  vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=GZoeybB9uM7ai8sBLAtUMHrMVgh-WrJDWrKZci6feDs,11892
1834
1890
  vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py,sha256=SIu5GCj4tIE4fz-cAcdULtQfqZIhrcc3Doo6TWLXBws,8804
1835
1891
  vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=7pM6MH3Z7r0k7Kpr3d-26QXUo_4GrxLflKwFTxRPREY,22844
1892
+ vellum/workflows/nodes/displayable/web_search_node/__init__.py,sha256=8FOnEP-n-U68cvxTlJW9wphIAGHq5aqjzLM-DoSSXnU,61
1893
+ vellum/workflows/nodes/displayable/web_search_node/node.py,sha256=NQYux2bOtuBF5E4tn-fXi5y3btURPRrNqMSM9MAZYI4,5091
1836
1894
  vellum/workflows/nodes/experimental/README.md,sha256=eF6DfIL8t-HbF9-mcofOMymKrraiBHDLKTlnBa51ZiE,284
1837
1895
  vellum/workflows/nodes/experimental/__init__.py,sha256=jCQgvZEknXKfuNhGSOou4XPfrPqZ1_XBj5F0n0fgiWM,106
1838
1896
  vellum/workflows/nodes/experimental/openai_chat_completion_node/__init__.py,sha256=lsyD9laR9p7kx5-BXGH2gUTM242UhKy8SMV0SR6S2iE,90
@@ -1862,13 +1920,16 @@ vellum/workflows/references/tests/test_lazy.py,sha256=0s50-LizMTlSTBQahpK0fg_xqC
1862
1920
  vellum/workflows/references/vellum_secret.py,sha256=Od4d19a5yletWMqNfJR5d_mZQUkVcFzj29mE-T9J7yE,480
1863
1921
  vellum/workflows/references/workflow_input.py,sha256=W3rOK1EPd2gYHb04WJwmNm1CUSdvZ9LKrs8RMKxACBs,1751
1864
1922
  vellum/workflows/resolvers/__init__.py,sha256=eH6hTvZO4IciDaf_cf7aM2vs-DkBDyJPycOQevJxQnI,82
1865
- vellum/workflows/resolvers/base.py,sha256=WHra9LRtlTuB1jmuNqkfVE2JUgB61Cyntn8f0b0WZg4,411
1923
+ vellum/workflows/resolvers/base.py,sha256=wrQiSC02Bw4-dBwgFjJIHsjpe-4xz4rUJs_1RdErKA0,1164
1924
+ vellum/workflows/resolvers/resolver.py,sha256=0Y9ArmN_2Gu62TpgYjFvSzhFMMFy7oGWOJh9zg3jaFk,4085
1925
+ vellum/workflows/resolvers/tests/test_resolver.py,sha256=JX6-zjIQShNvt4XYmub6zmY0iUf6z90KZynqvEd33qA,5202
1926
+ vellum/workflows/resolvers/types.py,sha256=Hndhlk69g6EKLh_LYg5ILepW5U_h_BYNllfzhS9k8p4,237
1866
1927
  vellum/workflows/runner/__init__.py,sha256=i1iG5sAhtpdsrlvwgH6B-m49JsINkiWyPWs8vyT-bqM,72
1867
- vellum/workflows/runner/runner.py,sha256=sADrp593ia4auJ8fIP6jc5na3b5WaTvvBdjpkTthboY,36929
1928
+ vellum/workflows/runner/runner.py,sha256=jdFFDr-MCVzTm5NKEzOgrw_9osuwdiVk97SRo73uLRQ,39366
1868
1929
  vellum/workflows/sandbox.py,sha256=jwlFFQjHDwmbVoBah_Q3i8K_BrzOt-F6TXFauiyVyIk,3021
1869
1930
  vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
1870
1931
  vellum/workflows/state/base.py,sha256=m9fCqbZn21GshCVCjJTD1dPZEQjFrsMXqlg7tM9fIwM,24283
1871
- vellum/workflows/state/context.py,sha256=xcDe7FB_omse3lLCZkWigcEQvk-hnhruENItaqXNUGo,6956
1932
+ vellum/workflows/state/context.py,sha256=khM30U1iDNts5Xp8LXa_WfpkITNITexrDUUFJ5wZ2W4,8445
1872
1933
  vellum/workflows/state/delta.py,sha256=7h8wR10lRCm15SykaPj-gSEvvsMjCwYLPsOx3nsvBQg,440
1873
1934
  vellum/workflows/state/encoder.py,sha256=HdNlabmBOcFSeY_dgn4LNtQEugyzsw3p4mvn2ChC1Io,3380
1874
1935
  vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
@@ -1899,15 +1960,16 @@ vellum/workflows/utils/tests/test_uuids.py,sha256=i77ABQ0M3S-aFLzDXHJq_yr5FPkJEW
1899
1960
  vellum/workflows/utils/tests/test_vellum_variables.py,sha256=vbnKgm41aB5OXlO-ZIPbhQ6xDiZkT8KMxCLqz4zocWY,1791
1900
1961
  vellum/workflows/utils/uuids.py,sha256=IaZQANz7fhF7la0_J1O50Y6D2PIYv_taRDTRzBT9aWw,1284
1901
1962
  vellum/workflows/utils/vellum_variables.py,sha256=-CohqD3AeyCYzqwyrPZ7mt_lt7ibWLyx0MuS484feJk,5503
1963
+ vellum/workflows/utils/zip.py,sha256=HVg_YZLmBOTXKaDV3Xhaf3V6sYnfqqZXQ8CpuafkbPY,1181
1902
1964
  vellum/workflows/vellum_client.py,sha256=xkfoucodxNK5JR2-lbRqZx3xzDgExWkP6kySrpi_Ubc,1079
1903
1965
  vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
1904
- vellum/workflows/workflows/base.py,sha256=TPsdIj8bcMZikytxIJd-wyS7TGSf1FkAQnfVkf6zSrI,27393
1966
+ vellum/workflows/workflows/base.py,sha256=PT7Hveate5A4Nt1UQoS6wwFehxgZQ5fuYjS1vLnlkl0,28008
1905
1967
  vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
1906
1968
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1907
1969
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=ptMntHzVyy8ZuzNgeTuk7hREgKQ5UBdgq8VJFSGaW4Y,20832
1908
1970
  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,,
1971
+ vellum_ai-1.3.0.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1972
+ vellum_ai-1.3.0.dist-info/METADATA,sha256=9uebeUcPKeXDi69pDtSoKp_lhlFi_rf49wUKY8fR9S4,5547
1973
+ vellum_ai-1.3.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1974
+ vellum_ai-1.3.0.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1975
+ vellum_ai-1.3.0.dist-info/RECORD,,
@@ -1,31 +1,14 @@
1
- import io
2
1
  import json
3
2
  import os
4
3
  from unittest.mock import patch
5
- import zipfile
6
4
 
7
5
  from click.testing import CliRunner
8
6
  from pydash import snake_case
9
7
 
8
+ from vellum.workflows.utils.zip import zip_file_map
10
9
  from vellum_cli import main as cli_main
11
10
 
12
11
 
13
- def _zip_file_map(file_map: dict[str, str]) -> bytes:
14
- # Create an in-memory bytes buffer to store the zip
15
- zip_buffer = io.BytesIO()
16
-
17
- # Create zip file and add files from file_map
18
- with zipfile.ZipFile(zip_buffer, "w", zipfile.ZIP_DEFLATED) as zip_file:
19
- for filename, content in file_map.items():
20
- zip_file.writestr(filename, content)
21
-
22
- # Get the bytes from the buffer
23
- zip_bytes = zip_buffer.getvalue()
24
- zip_buffer.close()
25
-
26
- return zip_bytes
27
-
28
-
29
12
  class MockTemplate:
30
13
  def __init__(self, id, label):
31
14
  self.id = id
@@ -44,7 +27,7 @@ def test_init_command(vellum_client, mock_module):
44
27
  vellum_client.workflow_sandboxes.list_workflow_sandbox_examples.return_value.results = fake_templates
45
28
 
46
29
  # AND the workflow pull API call returns a zip file
47
- vellum_client.workflows.pull.return_value = iter([_zip_file_map({"workflow.py": "print('hello')"})])
30
+ vellum_client.workflows.pull.return_value = iter([zip_file_map({"workflow.py": "print('hello')"})])
48
31
 
49
32
  # WHEN the user runs the `init` command and selects the first template
50
33
  runner = CliRunner()
@@ -173,7 +156,7 @@ def test_init_command_target_directory_exists(vellum_client, mock_module):
173
156
  vellum_client.workflow_sandboxes.list_workflow_sandbox_examples.return_value.results = fake_templates
174
157
 
175
158
  # AND the workflow pull API call returns a zip file
176
- vellum_client.workflows.pull.return_value = iter([_zip_file_map({"workflow.py": "print('hello')"})])
159
+ vellum_client.workflows.pull.return_value = iter([zip_file_map({"workflow.py": "print('hello')"})])
177
160
 
178
161
  # WHEN the user runs the `init` command and selects the template
179
162
  runner = CliRunner()
@@ -214,7 +197,7 @@ def test_init_command_with_template_name(vellum_client, mock_module):
214
197
  vellum_client.workflow_sandboxes.list_workflow_sandbox_examples.return_value.results = fake_templates
215
198
 
216
199
  # AND the workflow pull API call returns a zip file
217
- vellum_client.workflows.pull.return_value = iter([_zip_file_map({"workflow.py": "print('hello')"})])
200
+ vellum_client.workflows.pull.return_value = iter([zip_file_map({"workflow.py": "print('hello')"})])
218
201
 
219
202
  # WHEN the user runs the `init` command with a specific template name
220
203
  template_name = snake_case("Another Workflow")
@@ -309,7 +292,7 @@ def test_init__with_target_dir(vellum_client, mock_module):
309
292
  vellum_client.workflow_sandboxes.list_workflow_sandbox_examples.return_value.results = fake_templates
310
293
 
311
294
  # AND the workflow pull API call returns a zip file
312
- vellum_client.workflows.pull.return_value = iter([_zip_file_map({"workflow.py": "print('hello')"})])
295
+ vellum_client.workflows.pull.return_value = iter([zip_file_map({"workflow.py": "print('hello')"})])
313
296
 
314
297
  # AND a target directory
315
298
  target_dir = os.path.join(temp_dir, "dir")
@@ -364,7 +347,7 @@ def test_init__with_nested_target_dir(vellum_client, mock_module):
364
347
  vellum_client.workflow_sandboxes.list_workflow_sandbox_examples.return_value.results = fake_templates
365
348
 
366
349
  # AND the workflow pull API call returns a zip file
367
- vellum_client.workflows.pull.return_value = iter([_zip_file_map({"workflow.py": "print('hello')"})])
350
+ vellum_client.workflows.pull.return_value = iter([zip_file_map({"workflow.py": "print('hello')"})])
368
351
 
369
352
  # AND a nested target directory that doesn't exist yet
370
353
  nested_target_dir = os.path.join(temp_dir, "dir-1", "dir-2")
@@ -422,7 +405,7 @@ def test_init__with_template_name_and_target_dir(vellum_client, mock_module):
422
405
  vellum_client.workflow_sandboxes.list_workflow_sandbox_examples.return_value.results = fake_templates
423
406
 
424
407
  # AND the workflow pull API call returns a zip file
425
- vellum_client.workflows.pull.return_value = iter([_zip_file_map({"workflow.py": "print('hello')"})])
408
+ vellum_client.workflows.pull.return_value = iter([zip_file_map({"workflow.py": "print('hello')"})])
426
409
 
427
410
  # AND a target directory
428
411
  target_dir = os.path.join(temp_dir, "dir")