vellum-ai 1.1.2__py3-none-any.whl → 1.1.4__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 (693) hide show
  1. vellum/__init__.py +18 -0
  2. vellum/client/README.md +77 -0
  3. vellum/client/__init__.py +149 -600
  4. vellum/client/core/__init__.py +2 -0
  5. vellum/client/core/api_error.py +13 -5
  6. vellum/client/core/client_wrapper.py +16 -4
  7. vellum/client/core/force_multipart.py +16 -0
  8. vellum/client/core/http_client.py +70 -24
  9. vellum/client/core/http_response.py +19 -11
  10. vellum/client/core/pydantic_utilities.py +71 -114
  11. vellum/client/core/serialization.py +6 -1
  12. vellum/client/errors/__init__.py +2 -0
  13. vellum/client/errors/bad_request_error.py +4 -3
  14. vellum/client/errors/forbidden_error.py +4 -3
  15. vellum/client/errors/internal_server_error.py +4 -3
  16. vellum/client/errors/not_found_error.py +4 -3
  17. vellum/client/raw_client.py +1041 -128
  18. vellum/client/reference.md +692 -19
  19. vellum/client/resources/__init__.py +2 -0
  20. vellum/client/resources/ad_hoc/__init__.py +2 -0
  21. vellum/client/resources/ad_hoc/client.py +37 -195
  22. vellum/client/resources/ad_hoc/raw_client.py +322 -31
  23. vellum/client/resources/container_images/__init__.py +2 -0
  24. vellum/client/resources/container_images/client.py +26 -49
  25. vellum/client/resources/container_images/raw_client.py +23 -24
  26. vellum/client/resources/deployments/__init__.py +2 -0
  27. vellum/client/resources/deployments/client.py +55 -102
  28. vellum/client/resources/deployments/raw_client.py +73 -66
  29. vellum/client/resources/deployments/types/__init__.py +2 -0
  30. vellum/client/resources/document_indexes/__init__.py +2 -0
  31. vellum/client/resources/document_indexes/client.py +43 -100
  32. vellum/client/resources/document_indexes/raw_client.py +42 -43
  33. vellum/client/resources/document_indexes/types/__init__.py +2 -0
  34. vellum/client/resources/documents/__init__.py +2 -0
  35. vellum/client/resources/documents/client.py +29 -52
  36. vellum/client/resources/documents/raw_client.py +51 -44
  37. vellum/client/resources/folder_entities/__init__.py +2 -0
  38. vellum/client/resources/folder_entities/client.py +16 -21
  39. vellum/client/resources/folder_entities/raw_client.py +15 -16
  40. vellum/client/resources/folder_entities/types/__init__.py +2 -0
  41. vellum/client/resources/metric_definitions/__init__.py +2 -0
  42. vellum/client/resources/metric_definitions/client.py +16 -27
  43. vellum/client/resources/metric_definitions/raw_client.py +17 -18
  44. vellum/client/resources/ml_models/__init__.py +2 -0
  45. vellum/client/resources/ml_models/client.py +7 -14
  46. vellum/client/resources/ml_models/raw_client.py +11 -12
  47. vellum/client/resources/organizations/__init__.py +2 -0
  48. vellum/client/resources/organizations/client.py +7 -12
  49. vellum/client/resources/organizations/raw_client.py +10 -11
  50. vellum/client/resources/prompts/__init__.py +2 -0
  51. vellum/client/resources/prompts/client.py +12 -19
  52. vellum/client/resources/prompts/raw_client.py +40 -33
  53. vellum/client/resources/sandboxes/__init__.py +2 -0
  54. vellum/client/resources/sandboxes/client.py +17 -34
  55. vellum/client/resources/sandboxes/raw_client.py +20 -21
  56. vellum/client/resources/test_suite_runs/__init__.py +2 -0
  57. vellum/client/resources/test_suite_runs/client.py +19 -34
  58. vellum/client/resources/test_suite_runs/raw_client.py +20 -21
  59. vellum/client/resources/test_suites/__init__.py +2 -0
  60. vellum/client/resources/test_suites/client.py +26 -100
  61. vellum/client/resources/test_suites/raw_client.py +172 -21
  62. vellum/client/resources/workflow_deployments/__init__.py +2 -0
  63. vellum/client/resources/workflow_deployments/client.py +61 -120
  64. vellum/client/resources/workflow_deployments/raw_client.py +48 -49
  65. vellum/client/resources/workflow_deployments/types/__init__.py +2 -0
  66. vellum/client/resources/workflow_executions/__init__.py +2 -0
  67. vellum/client/resources/workflow_executions/client.py +8 -13
  68. vellum/client/resources/workflow_executions/raw_client.py +11 -12
  69. vellum/client/resources/workflow_sandboxes/__init__.py +2 -0
  70. vellum/client/resources/workflow_sandboxes/client.py +14 -23
  71. vellum/client/resources/workflow_sandboxes/raw_client.py +16 -17
  72. vellum/client/resources/workflow_sandboxes/types/__init__.py +2 -0
  73. vellum/client/resources/workflows/__init__.py +2 -0
  74. vellum/client/resources/workflows/client.py +16 -16
  75. vellum/client/resources/workflows/raw_client.py +75 -57
  76. vellum/client/resources/workspace_secrets/__init__.py +2 -0
  77. vellum/client/resources/workspace_secrets/client.py +11 -28
  78. vellum/client/resources/workspace_secrets/raw_client.py +15 -16
  79. vellum/client/resources/workspaces/__init__.py +2 -0
  80. vellum/client/resources/workspaces/client.py +7 -12
  81. vellum/client/resources/workspaces/raw_client.py +10 -11
  82. vellum/client/types/__init__.py +18 -0
  83. vellum/client/types/ad_hoc_execute_prompt_event.py +3 -2
  84. vellum/client/types/ad_hoc_expand_meta.py +2 -2
  85. vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py +3 -3
  86. vellum/client/types/ad_hoc_initiated_prompt_execution_meta.py +2 -2
  87. vellum/client/types/ad_hoc_rejected_prompt_execution_meta.py +3 -3
  88. vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py +2 -2
  89. vellum/client/types/api_node_result.py +3 -3
  90. vellum/client/types/api_node_result_data.py +4 -4
  91. vellum/client/types/api_request_parent_context.py +11 -11
  92. vellum/client/types/array_chat_message_content.py +3 -3
  93. vellum/client/types/array_chat_message_content_item.py +7 -4
  94. vellum/client/types/array_chat_message_content_item_request.py +7 -4
  95. vellum/client/types/array_chat_message_content_request.py +3 -3
  96. vellum/client/types/array_input.py +12 -6
  97. vellum/client/types/array_vellum_value.py +4 -4
  98. vellum/client/types/array_vellum_value_request.py +4 -4
  99. vellum/client/types/audio_chat_message_content.py +3 -3
  100. vellum/client/types/audio_chat_message_content_request.py +3 -3
  101. vellum/client/types/audio_prompt_block.py +4 -4
  102. vellum/client/types/audio_vellum_value.py +3 -3
  103. vellum/client/types/audio_vellum_value_request.py +3 -3
  104. vellum/client/types/base_output.py +2 -2
  105. vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py +2 -2
  106. vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py +2 -2
  107. vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py +2 -2
  108. vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py +2 -2
  109. vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py +2 -2
  110. vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py +2 -2
  111. vellum/client/types/chat_history_input.py +3 -3
  112. vellum/client/types/chat_history_input_request.py +3 -3
  113. vellum/client/types/chat_history_vellum_value.py +3 -3
  114. vellum/client/types/chat_history_vellum_value_request.py +3 -3
  115. vellum/client/types/chat_message.py +4 -4
  116. vellum/client/types/chat_message_content.py +7 -4
  117. vellum/client/types/chat_message_content_request.py +7 -4
  118. vellum/client/types/chat_message_prompt_block.py +7 -7
  119. vellum/client/types/chat_message_request.py +4 -4
  120. vellum/client/types/code_execution_node_array_result.py +11 -5
  121. vellum/client/types/code_execution_node_chat_history_result.py +3 -3
  122. vellum/client/types/code_execution_node_error_result.py +3 -3
  123. vellum/client/types/code_execution_node_function_call_result.py +3 -3
  124. vellum/client/types/code_execution_node_json_result.py +2 -2
  125. vellum/client/types/code_execution_node_number_result.py +2 -2
  126. vellum/client/types/code_execution_node_result.py +10 -4
  127. vellum/client/types/code_execution_node_result_data.py +10 -4
  128. vellum/client/types/code_execution_node_result_output.py +6 -5
  129. vellum/client/types/code_execution_node_search_results_result.py +3 -3
  130. vellum/client/types/code_execution_node_string_result.py +2 -2
  131. vellum/client/types/code_execution_package.py +2 -2
  132. vellum/client/types/code_executor_input.py +7 -6
  133. vellum/client/types/code_executor_response.py +11 -5
  134. vellum/client/types/code_executor_secret_input.py +3 -3
  135. vellum/client/types/code_resource_definition.py +3 -3
  136. vellum/client/types/compile_prompt_deployment_expand_meta_request.py +2 -2
  137. vellum/client/types/compile_prompt_meta.py +2 -2
  138. vellum/client/types/conditional_node_result.py +3 -3
  139. vellum/client/types/conditional_node_result_data.py +2 -2
  140. vellum/client/types/container_image_build_config.py +3 -3
  141. vellum/client/types/container_image_container_image_tag.py +2 -2
  142. vellum/client/types/container_image_read.py +5 -5
  143. vellum/client/types/create_test_suite_test_case_request.py +9 -3
  144. vellum/client/types/deployment_history_item.py +10 -4
  145. vellum/client/types/deployment_provider_payload_response.py +4 -4
  146. vellum/client/types/deployment_read.py +10 -4
  147. vellum/client/types/deployment_release_tag_deployment_history_item.py +2 -2
  148. vellum/client/types/deployment_release_tag_read.py +4 -4
  149. vellum/client/types/docker_service_token.py +2 -2
  150. vellum/client/types/document_chat_message_content.py +3 -3
  151. vellum/client/types/document_chat_message_content_request.py +3 -3
  152. vellum/client/types/document_document_to_document_index.py +3 -3
  153. vellum/client/types/document_index_chunking.py +1 -0
  154. vellum/client/types/document_index_chunking_request.py +1 -0
  155. vellum/client/types/document_index_indexing_config.py +4 -4
  156. vellum/client/types/document_index_indexing_config_request.py +4 -4
  157. vellum/client/types/document_index_read.py +4 -4
  158. vellum/client/types/document_prompt_block.py +4 -4
  159. vellum/client/types/document_read.py +4 -4
  160. vellum/client/types/document_vellum_value.py +3 -3
  161. vellum/client/types/document_vellum_value_request.py +3 -3
  162. vellum/client/types/enriched_normalized_completion.py +3 -3
  163. vellum/client/types/ephemeral_prompt_cache_config.py +3 -3
  164. vellum/client/types/error_input.py +3 -3
  165. vellum/client/types/error_vellum_value.py +3 -3
  166. vellum/client/types/error_vellum_value_request.py +3 -3
  167. vellum/client/types/execute_api_request_bearer_token.py +1 -0
  168. vellum/client/types/execute_api_request_headers_value.py +1 -0
  169. vellum/client/types/execute_api_response.py +5 -5
  170. vellum/client/types/execute_prompt_event.py +3 -2
  171. vellum/client/types/execute_prompt_response.py +1 -0
  172. vellum/client/types/execute_workflow_response.py +10 -4
  173. vellum/client/types/execute_workflow_workflow_result_event.py +1 -0
  174. vellum/client/types/execution_array_vellum_value.py +12 -6
  175. vellum/client/types/execution_chat_history_vellum_value.py +3 -3
  176. vellum/client/types/execution_error_vellum_value.py +3 -3
  177. vellum/client/types/execution_function_call_vellum_value.py +3 -3
  178. vellum/client/types/execution_json_vellum_value.py +3 -3
  179. vellum/client/types/execution_number_vellum_value.py +3 -3
  180. vellum/client/types/execution_search_results_vellum_value.py +3 -3
  181. vellum/client/types/execution_string_vellum_value.py +3 -3
  182. vellum/client/types/execution_thinking_vellum_value.py +3 -3
  183. vellum/client/types/execution_vellum_value.py +6 -5
  184. vellum/client/types/external_input_descriptor.py +3 -3
  185. vellum/client/types/external_parent_context.py +11 -11
  186. vellum/client/types/external_test_case_execution.py +10 -4
  187. vellum/client/types/external_test_case_execution_request.py +10 -4
  188. vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py +2 -2
  189. vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.py +2 -2
  190. vellum/client/types/folder_entity.py +4 -3
  191. vellum/client/types/folder_entity_dataset.py +3 -3
  192. vellum/client/types/folder_entity_dataset_data.py +3 -3
  193. vellum/client/types/folder_entity_document_index.py +3 -3
  194. vellum/client/types/folder_entity_document_index_data.py +4 -4
  195. vellum/client/types/folder_entity_folder.py +3 -3
  196. vellum/client/types/folder_entity_folder_data.py +2 -2
  197. vellum/client/types/folder_entity_prompt_sandbox.py +3 -3
  198. vellum/client/types/folder_entity_prompt_sandbox_data.py +3 -3
  199. vellum/client/types/folder_entity_test_suite.py +3 -3
  200. vellum/client/types/folder_entity_test_suite_data.py +3 -3
  201. vellum/client/types/folder_entity_workflow_sandbox.py +3 -3
  202. vellum/client/types/folder_entity_workflow_sandbox_data.py +3 -3
  203. vellum/client/types/fulfilled_ad_hoc_execute_prompt_event.py +4 -4
  204. vellum/client/types/fulfilled_execute_prompt_event.py +4 -4
  205. vellum/client/types/fulfilled_execute_prompt_response.py +3 -3
  206. vellum/client/types/fulfilled_execute_workflow_workflow_result_event.py +11 -5
  207. vellum/client/types/fulfilled_prompt_execution_meta.py +3 -3
  208. vellum/client/types/fulfilled_workflow_node_result_event.py +12 -6
  209. vellum/client/types/function_call.py +2 -2
  210. vellum/client/types/function_call_chat_message_content.py +3 -3
  211. vellum/client/types/function_call_chat_message_content_request.py +3 -3
  212. vellum/client/types/function_call_chat_message_content_value.py +2 -2
  213. vellum/client/types/function_call_chat_message_content_value_request.py +2 -2
  214. vellum/client/types/function_call_input.py +3 -3
  215. vellum/client/types/function_call_prompt_block.py +4 -4
  216. vellum/client/types/function_call_request.py +2 -2
  217. vellum/client/types/function_call_vellum_value.py +3 -3
  218. vellum/client/types/function_call_vellum_value_request.py +3 -3
  219. vellum/client/types/function_definition.py +4 -4
  220. vellum/client/types/generate_options_request.py +3 -3
  221. vellum/client/types/generate_request.py +2 -2
  222. vellum/client/types/generate_response.py +3 -3
  223. vellum/client/types/generate_result.py +3 -3
  224. vellum/client/types/generate_result_data.py +3 -3
  225. vellum/client/types/generate_result_error.py +3 -3
  226. vellum/client/types/generate_stream_response.py +3 -3
  227. vellum/client/types/generate_stream_result.py +4 -4
  228. vellum/client/types/generate_stream_result_data.py +3 -3
  229. vellum/client/types/google_vertex_ai_vectorizer_config.py +2 -2
  230. vellum/client/types/google_vertex_ai_vectorizer_config_request.py +2 -2
  231. vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001.py +3 -3
  232. vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py +3 -3
  233. vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004.py +3 -3
  234. vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004_request.py +3 -3
  235. vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py +3 -3
  236. vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py +3 -3
  237. vellum/client/types/hkunlp_instructor_xl_vectorizer.py +3 -3
  238. vellum/client/types/hkunlp_instructor_xl_vectorizer_request.py +3 -3
  239. vellum/client/types/image_chat_message_content.py +3 -3
  240. vellum/client/types/image_chat_message_content_request.py +3 -3
  241. vellum/client/types/image_prompt_block.py +4 -4
  242. vellum/client/types/image_vellum_value.py +3 -3
  243. vellum/client/types/image_vellum_value_request.py +3 -3
  244. vellum/client/types/indexing_config_vectorizer.py +7 -6
  245. vellum/client/types/indexing_config_vectorizer_request.py +7 -6
  246. vellum/client/types/initiated_ad_hoc_execute_prompt_event.py +3 -3
  247. vellum/client/types/initiated_execute_prompt_event.py +3 -3
  248. vellum/client/types/initiated_prompt_execution_meta.py +2 -2
  249. vellum/client/types/initiated_workflow_node_result_event.py +12 -6
  250. vellum/client/types/instructor_vectorizer_config.py +2 -2
  251. vellum/client/types/instructor_vectorizer_config_request.py +2 -2
  252. vellum/client/types/invoked_port.py +2 -2
  253. vellum/client/types/jinja_prompt_block.py +4 -4
  254. vellum/client/types/json_input.py +3 -3
  255. vellum/client/types/json_input_request.py +3 -3
  256. vellum/client/types/json_vellum_value.py +2 -2
  257. vellum/client/types/json_vellum_value_request.py +2 -2
  258. vellum/client/types/map_node_result.py +3 -3
  259. vellum/client/types/map_node_result_data.py +3 -3
  260. vellum/client/types/merge_node_result.py +3 -3
  261. vellum/client/types/merge_node_result_data.py +2 -2
  262. vellum/client/types/metadata_filter_config_request.py +12 -6
  263. vellum/client/types/metadata_filter_rule_request.py +5 -5
  264. vellum/client/types/metadata_filters_request.py +1 -0
  265. vellum/client/types/metric_definition_execution.py +10 -4
  266. vellum/client/types/metric_definition_history_item.py +10 -4
  267. vellum/client/types/metric_definition_input.py +3 -2
  268. vellum/client/types/metric_node_result.py +2 -2
  269. vellum/client/types/ml_model_read.py +6 -3
  270. vellum/client/types/ml_model_usage.py +2 -2
  271. vellum/client/types/ml_model_usage_wrapper.py +3 -3
  272. vellum/client/types/named_scenario_input_chat_history_variable_value_request.py +3 -3
  273. vellum/client/types/named_scenario_input_json_variable_value_request.py +2 -2
  274. vellum/client/types/named_scenario_input_request.py +3 -2
  275. vellum/client/types/named_scenario_input_string_variable_value_request.py +2 -2
  276. vellum/client/types/named_test_case_array_variable_value.py +11 -5
  277. vellum/client/types/named_test_case_array_variable_value_request.py +11 -5
  278. vellum/client/types/named_test_case_chat_history_variable_value.py +3 -3
  279. vellum/client/types/named_test_case_chat_history_variable_value_request.py +3 -3
  280. vellum/client/types/named_test_case_error_variable_value.py +3 -3
  281. vellum/client/types/named_test_case_error_variable_value_request.py +3 -3
  282. vellum/client/types/named_test_case_function_call_variable_value.py +3 -3
  283. vellum/client/types/named_test_case_function_call_variable_value_request.py +3 -3
  284. vellum/client/types/named_test_case_json_variable_value.py +2 -2
  285. vellum/client/types/named_test_case_json_variable_value_request.py +2 -2
  286. vellum/client/types/named_test_case_number_variable_value.py +2 -2
  287. vellum/client/types/named_test_case_number_variable_value_request.py +2 -2
  288. vellum/client/types/named_test_case_search_results_variable_value.py +3 -3
  289. vellum/client/types/named_test_case_search_results_variable_value_request.py +3 -3
  290. vellum/client/types/named_test_case_string_variable_value.py +2 -2
  291. vellum/client/types/named_test_case_string_variable_value_request.py +2 -2
  292. vellum/client/types/named_test_case_variable_value.py +6 -5
  293. vellum/client/types/named_test_case_variable_value_request.py +6 -5
  294. vellum/client/types/node_execution_fulfilled_body.py +4 -4
  295. vellum/client/types/node_execution_fulfilled_event.py +22 -16
  296. vellum/client/types/node_execution_initiated_body.py +3 -3
  297. vellum/client/types/node_execution_initiated_event.py +22 -16
  298. vellum/client/types/node_execution_paused_body.py +3 -3
  299. vellum/client/types/node_execution_paused_event.py +22 -16
  300. vellum/client/types/node_execution_rejected_body.py +4 -4
  301. vellum/client/types/node_execution_rejected_event.py +22 -16
  302. vellum/client/types/node_execution_resumed_body.py +3 -3
  303. vellum/client/types/node_execution_resumed_event.py +22 -16
  304. vellum/client/types/node_execution_span.py +21 -13
  305. vellum/client/types/node_execution_span_attributes.py +2 -2
  306. vellum/client/types/node_execution_streaming_body.py +4 -4
  307. vellum/client/types/node_execution_streaming_event.py +22 -16
  308. vellum/client/types/node_input_compiled_array_value.py +11 -5
  309. vellum/client/types/node_input_compiled_chat_history_value.py +3 -3
  310. vellum/client/types/node_input_compiled_error_value.py +3 -3
  311. vellum/client/types/node_input_compiled_function_call_value.py +3 -3
  312. vellum/client/types/node_input_compiled_json_value.py +2 -2
  313. vellum/client/types/node_input_compiled_number_value.py +2 -2
  314. vellum/client/types/node_input_compiled_search_results_value.py +3 -3
  315. vellum/client/types/node_input_compiled_secret_value.py +3 -3
  316. vellum/client/types/node_input_compiled_string_value.py +2 -2
  317. vellum/client/types/node_input_variable_compiled_value.py +6 -5
  318. vellum/client/types/node_output_compiled_array_value.py +12 -6
  319. vellum/client/types/node_output_compiled_chat_history_value.py +3 -3
  320. vellum/client/types/node_output_compiled_error_value.py +3 -3
  321. vellum/client/types/node_output_compiled_function_call_value.py +3 -3
  322. vellum/client/types/node_output_compiled_json_value.py +3 -3
  323. vellum/client/types/node_output_compiled_number_value.py +3 -3
  324. vellum/client/types/node_output_compiled_search_results_value.py +3 -3
  325. vellum/client/types/node_output_compiled_string_value.py +3 -3
  326. vellum/client/types/node_output_compiled_thinking_value.py +3 -3
  327. vellum/client/types/node_output_compiled_value.py +6 -5
  328. vellum/client/types/node_parent_context.py +12 -12
  329. vellum/client/types/normalized_log_probs.py +3 -3
  330. vellum/client/types/normalized_token_log_probs.py +2 -2
  331. vellum/client/types/number_input.py +3 -3
  332. vellum/client/types/number_vellum_value.py +2 -2
  333. vellum/client/types/number_vellum_value_request.py +2 -2
  334. vellum/client/types/open_ai_vectorizer_config.py +3 -3
  335. vellum/client/types/open_ai_vectorizer_config_request.py +3 -3
  336. vellum/client/types/open_ai_vectorizer_text_embedding_3_large.py +3 -3
  337. vellum/client/types/open_ai_vectorizer_text_embedding_3_large_request.py +3 -3
  338. vellum/client/types/open_ai_vectorizer_text_embedding_3_small.py +3 -3
  339. vellum/client/types/open_ai_vectorizer_text_embedding_3_small_request.py +3 -3
  340. vellum/client/types/open_ai_vectorizer_text_embedding_ada_002.py +3 -3
  341. vellum/client/types/open_ai_vectorizer_text_embedding_ada_002_request.py +3 -3
  342. vellum/client/types/organization_read.py +4 -4
  343. vellum/client/types/paginated_container_image_read_list.py +3 -3
  344. vellum/client/types/paginated_deployment_release_tag_read_list.py +3 -3
  345. vellum/client/types/paginated_document_index_read_list.py +3 -3
  346. vellum/client/types/paginated_folder_entity_list.py +3 -3
  347. vellum/client/types/paginated_slim_deployment_read_list.py +10 -4
  348. vellum/client/types/paginated_slim_document_list.py +3 -3
  349. vellum/client/types/paginated_slim_workflow_deployment_list.py +10 -4
  350. vellum/client/types/paginated_test_suite_run_execution_list.py +10 -4
  351. vellum/client/types/paginated_test_suite_test_case_list.py +10 -4
  352. vellum/client/types/paginated_workflow_release_tag_read_list.py +3 -3
  353. vellum/client/types/paginated_workflow_sandbox_example_list.py +3 -3
  354. vellum/client/types/parent_context.py +5 -5
  355. vellum/client/types/pdf_search_result_meta_source.py +2 -2
  356. vellum/client/types/pdf_search_result_meta_source_request.py +2 -2
  357. vellum/client/types/plain_text_prompt_block.py +4 -4
  358. vellum/client/types/price.py +3 -3
  359. vellum/client/types/prompt_block.py +9 -6
  360. vellum/client/types/prompt_deployment_expand_meta_request.py +2 -2
  361. vellum/client/types/prompt_deployment_input_request.py +3 -2
  362. vellum/client/types/prompt_deployment_parent_context.py +11 -11
  363. vellum/client/types/prompt_deployment_release.py +6 -6
  364. vellum/client/types/prompt_deployment_release_prompt_deployment.py +2 -2
  365. vellum/client/types/prompt_deployment_release_prompt_version.py +4 -4
  366. vellum/client/types/prompt_exec_config.py +15 -9
  367. vellum/client/types/prompt_execution_meta.py +3 -3
  368. vellum/client/types/prompt_node_execution_meta.py +3 -3
  369. vellum/client/types/prompt_node_result.py +3 -3
  370. vellum/client/types/prompt_node_result_data.py +3 -3
  371. vellum/client/types/prompt_output.py +3 -2
  372. vellum/client/types/prompt_parameters.py +2 -2
  373. vellum/client/types/prompt_push_response.py +2 -2
  374. vellum/client/types/prompt_request_chat_history_input.py +3 -3
  375. vellum/client/types/prompt_request_input.py +3 -2
  376. vellum/client/types/prompt_request_json_input.py +3 -3
  377. vellum/client/types/prompt_request_string_input.py +3 -3
  378. vellum/client/types/prompt_settings.py +2 -2
  379. vellum/client/types/prompt_version_build_config_sandbox.py +2 -2
  380. vellum/client/types/raw_prompt_execution_overrides_request.py +2 -2
  381. vellum/client/types/reducto_chunker_config.py +2 -2
  382. vellum/client/types/reducto_chunker_config_request.py +2 -2
  383. vellum/client/types/reducto_chunking.py +3 -3
  384. vellum/client/types/reducto_chunking_request.py +3 -3
  385. vellum/client/types/rejected_ad_hoc_execute_prompt_event.py +4 -4
  386. vellum/client/types/rejected_execute_prompt_event.py +4 -4
  387. vellum/client/types/rejected_execute_prompt_response.py +3 -3
  388. vellum/client/types/rejected_execute_workflow_workflow_result_event.py +4 -4
  389. vellum/client/types/rejected_prompt_execution_meta.py +3 -3
  390. vellum/client/types/rejected_workflow_node_result_event.py +12 -6
  391. vellum/client/types/release_created_by.py +2 -2
  392. vellum/client/types/release_environment.py +2 -2
  393. vellum/client/types/release_release_tag.py +3 -3
  394. vellum/client/types/release_review_reviewer.py +2 -2
  395. vellum/client/types/release_tag_release.py +2 -2
  396. vellum/client/types/replace_test_suite_test_case_request.py +9 -3
  397. vellum/client/types/rich_text_child_block.py +2 -1
  398. vellum/client/types/rich_text_prompt_block.py +4 -4
  399. vellum/client/types/sandbox_scenario.py +3 -3
  400. vellum/client/types/scenario_input.py +3 -2
  401. vellum/client/types/scenario_input_chat_history_variable_value.py +3 -3
  402. vellum/client/types/scenario_input_json_variable_value.py +2 -2
  403. vellum/client/types/scenario_input_string_variable_value.py +2 -2
  404. vellum/client/types/search_filters_request.py +11 -5
  405. vellum/client/types/search_node_result.py +3 -3
  406. vellum/client/types/search_node_result_data.py +3 -3
  407. vellum/client/types/search_request_options_request.py +13 -7
  408. vellum/client/types/search_response.py +3 -3
  409. vellum/client/types/search_result.py +3 -3
  410. vellum/client/types/search_result_document.py +2 -2
  411. vellum/client/types/search_result_document_request.py +2 -2
  412. vellum/client/types/search_result_merging_request.py +2 -2
  413. vellum/client/types/search_result_meta.py +3 -3
  414. vellum/client/types/search_result_meta_request.py +3 -3
  415. vellum/client/types/search_result_request.py +3 -3
  416. vellum/client/types/search_results_input.py +3 -3
  417. vellum/client/types/search_results_vellum_value.py +3 -3
  418. vellum/client/types/search_results_vellum_value_request.py +3 -3
  419. vellum/client/types/search_weights_request.py +2 -2
  420. vellum/client/types/sentence_chunker_config.py +2 -2
  421. vellum/client/types/sentence_chunker_config_request.py +2 -2
  422. vellum/client/types/sentence_chunking.py +3 -3
  423. vellum/client/types/sentence_chunking_request.py +3 -3
  424. vellum/client/types/slim_deployment_read.py +10 -4
  425. vellum/client/types/slim_document.py +5 -5
  426. vellum/client/types/slim_document_document_to_document_index.py +3 -3
  427. vellum/client/types/slim_release_review.py +4 -4
  428. vellum/client/types/slim_workflow_deployment.py +11 -5
  429. vellum/client/types/slim_workflow_execution_read.py +21 -15
  430. vellum/client/types/span_link.py +12 -12
  431. vellum/client/types/streaming_ad_hoc_execute_prompt_event.py +4 -4
  432. vellum/client/types/streaming_execute_prompt_event.py +3 -3
  433. vellum/client/types/streaming_prompt_execution_meta.py +2 -2
  434. vellum/client/types/streaming_workflow_node_result_event.py +12 -6
  435. vellum/client/types/string_chat_message_content.py +2 -2
  436. vellum/client/types/string_chat_message_content_request.py +2 -2
  437. vellum/client/types/string_input.py +3 -3
  438. vellum/client/types/string_input_request.py +3 -3
  439. vellum/client/types/string_vellum_value.py +2 -2
  440. vellum/client/types/string_vellum_value_request.py +2 -2
  441. vellum/client/types/submit_completion_actual_request.py +3 -3
  442. vellum/client/types/submit_workflow_execution_actual_request.py +3 -2
  443. vellum/client/types/subworkflow_node_result.py +3 -3
  444. vellum/client/types/subworkflow_node_result_data.py +2 -2
  445. vellum/client/types/templating_node_array_result.py +11 -5
  446. vellum/client/types/templating_node_chat_history_result.py +3 -3
  447. vellum/client/types/templating_node_error_result.py +3 -3
  448. vellum/client/types/templating_node_function_call_result.py +3 -3
  449. vellum/client/types/templating_node_json_result.py +2 -2
  450. vellum/client/types/templating_node_number_result.py +2 -2
  451. vellum/client/types/templating_node_result.py +10 -4
  452. vellum/client/types/templating_node_result_data.py +10 -4
  453. vellum/client/types/templating_node_result_output.py +6 -5
  454. vellum/client/types/templating_node_search_results_result.py +3 -3
  455. vellum/client/types/templating_node_string_result.py +2 -2
  456. vellum/client/types/terminal_node_array_result.py +11 -5
  457. vellum/client/types/terminal_node_chat_history_result.py +2 -2
  458. vellum/client/types/terminal_node_error_result.py +2 -2
  459. vellum/client/types/terminal_node_function_call_result.py +2 -2
  460. vellum/client/types/terminal_node_json_result.py +2 -2
  461. vellum/client/types/terminal_node_number_result.py +2 -2
  462. vellum/client/types/terminal_node_result.py +10 -4
  463. vellum/client/types/terminal_node_result_data.py +10 -4
  464. vellum/client/types/terminal_node_result_output.py +6 -5
  465. vellum/client/types/terminal_node_search_results_result.py +2 -2
  466. vellum/client/types/terminal_node_string_result.py +2 -2
  467. vellum/client/types/test_case_array_variable_value.py +11 -5
  468. vellum/client/types/test_case_chat_history_variable_value.py +3 -3
  469. vellum/client/types/test_case_error_variable_value.py +3 -3
  470. vellum/client/types/test_case_function_call_variable_value.py +3 -3
  471. vellum/client/types/test_case_json_variable_value.py +2 -2
  472. vellum/client/types/test_case_number_variable_value.py +2 -2
  473. vellum/client/types/test_case_search_results_variable_value.py +3 -3
  474. vellum/client/types/test_case_string_variable_value.py +2 -2
  475. vellum/client/types/test_case_variable_value.py +6 -5
  476. vellum/client/types/test_suite_run_deployment_release_tag_exec_config.py +3 -3
  477. vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py +3 -3
  478. vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +3 -3
  479. vellum/client/types/test_suite_run_deployment_release_tag_exec_config_request.py +3 -3
  480. vellum/client/types/test_suite_run_exec_config.py +2 -1
  481. vellum/client/types/test_suite_run_exec_config_request.py +2 -1
  482. vellum/client/types/test_suite_run_execution.py +11 -5
  483. vellum/client/types/test_suite_run_execution_array_output.py +11 -5
  484. vellum/client/types/test_suite_run_execution_chat_history_output.py +3 -3
  485. vellum/client/types/test_suite_run_execution_error_output.py +3 -3
  486. vellum/client/types/test_suite_run_execution_function_call_output.py +3 -3
  487. vellum/client/types/test_suite_run_execution_json_output.py +2 -2
  488. vellum/client/types/test_suite_run_execution_metric_definition.py +2 -2
  489. vellum/client/types/test_suite_run_execution_metric_result.py +11 -5
  490. vellum/client/types/test_suite_run_execution_number_output.py +2 -2
  491. vellum/client/types/test_suite_run_execution_output.py +6 -5
  492. vellum/client/types/test_suite_run_execution_search_results_output.py +3 -3
  493. vellum/client/types/test_suite_run_execution_string_output.py +2 -2
  494. vellum/client/types/test_suite_run_external_exec_config.py +10 -4
  495. vellum/client/types/test_suite_run_external_exec_config_data.py +10 -4
  496. vellum/client/types/test_suite_run_external_exec_config_data_request.py +10 -4
  497. vellum/client/types/test_suite_run_external_exec_config_request.py +10 -4
  498. vellum/client/types/test_suite_run_metric_array_output.py +11 -5
  499. vellum/client/types/test_suite_run_metric_error_output.py +3 -3
  500. vellum/client/types/test_suite_run_metric_json_output.py +2 -2
  501. vellum/client/types/test_suite_run_metric_number_output.py +2 -2
  502. vellum/client/types/test_suite_run_metric_output.py +5 -4
  503. vellum/client/types/test_suite_run_metric_string_output.py +2 -2
  504. vellum/client/types/test_suite_run_progress.py +2 -2
  505. vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py +3 -3
  506. vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py +3 -3
  507. vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config.py +3 -3
  508. vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data.py +3 -3
  509. vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data_request.py +3 -3
  510. vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_request.py +3 -3
  511. vellum/client/types/test_suite_run_read.py +12 -6
  512. vellum/client/types/test_suite_run_test_suite.py +2 -2
  513. vellum/client/types/test_suite_run_workflow_release_tag_exec_config.py +3 -3
  514. vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data.py +3 -3
  515. vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +3 -3
  516. vellum/client/types/test_suite_run_workflow_release_tag_exec_config_request.py +3 -3
  517. vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py +3 -3
  518. vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py +3 -3
  519. vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config.py +3 -3
  520. vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data.py +3 -3
  521. vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data_request.py +3 -3
  522. vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_request.py +3 -3
  523. vellum/client/types/test_suite_test_case.py +10 -4
  524. vellum/client/types/test_suite_test_case_bulk_operation_request.py +2 -1
  525. vellum/client/types/test_suite_test_case_bulk_result.py +2 -1
  526. vellum/client/types/test_suite_test_case_create_bulk_operation_request.py +10 -4
  527. vellum/client/types/test_suite_test_case_created_bulk_result.py +3 -3
  528. vellum/client/types/test_suite_test_case_created_bulk_result_data.py +2 -2
  529. vellum/client/types/test_suite_test_case_delete_bulk_operation_data_request.py +2 -2
  530. vellum/client/types/test_suite_test_case_delete_bulk_operation_request.py +3 -3
  531. vellum/client/types/test_suite_test_case_deleted_bulk_result.py +3 -3
  532. vellum/client/types/test_suite_test_case_deleted_bulk_result_data.py +2 -2
  533. vellum/client/types/test_suite_test_case_rejected_bulk_result.py +2 -2
  534. vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py +10 -4
  535. vellum/client/types/test_suite_test_case_replaced_bulk_result.py +3 -3
  536. vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py +2 -2
  537. vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py +10 -4
  538. vellum/client/types/thinking_vellum_value.py +3 -3
  539. vellum/client/types/thinking_vellum_value_request.py +3 -3
  540. vellum/client/types/token_overlapping_window_chunker_config.py +2 -2
  541. vellum/client/types/token_overlapping_window_chunker_config_request.py +2 -2
  542. vellum/client/types/token_overlapping_window_chunking.py +3 -3
  543. vellum/client/types/token_overlapping_window_chunking_request.py +3 -3
  544. vellum/client/types/upload_document_response.py +3 -3
  545. vellum/client/types/upsert_test_suite_test_case_request.py +9 -3
  546. vellum/client/types/variable_prompt_block.py +4 -4
  547. vellum/client/types/vellum_audio.py +3 -3
  548. vellum/client/types/vellum_audio_request.py +3 -3
  549. vellum/client/types/vellum_code_resource_definition.py +2 -2
  550. vellum/client/types/vellum_document.py +2 -2
  551. vellum/client/types/vellum_document_request.py +2 -2
  552. vellum/client/types/vellum_error.py +3 -3
  553. vellum/client/types/vellum_error_request.py +3 -3
  554. vellum/client/types/vellum_image.py +2 -2
  555. vellum/client/types/vellum_image_request.py +2 -2
  556. vellum/client/types/vellum_node_execution_event.py +4 -3
  557. vellum/client/types/vellum_sdk_error.py +3 -3
  558. vellum/client/types/vellum_secret.py +2 -2
  559. vellum/client/types/vellum_span.py +2 -1
  560. vellum/client/types/vellum_value.py +11 -8
  561. vellum/client/types/vellum_value_logical_condition_group_request.py +6 -6
  562. vellum/client/types/vellum_value_logical_condition_request.py +13 -7
  563. vellum/client/types/vellum_value_logical_expression_request.py +2 -1
  564. vellum/client/types/vellum_value_request.py +11 -8
  565. vellum/client/types/vellum_variable.py +13 -7
  566. vellum/client/types/vellum_variable_extensions.py +2 -2
  567. vellum/client/types/vellum_variable_type.py +2 -1
  568. vellum/client/types/vellum_video.py +24 -0
  569. vellum/client/types/vellum_video_request.py +24 -0
  570. vellum/client/types/vellum_workflow_execution_event.py +4 -3
  571. vellum/client/types/video_chat_message_content.py +25 -0
  572. vellum/client/types/video_chat_message_content_request.py +25 -0
  573. vellum/client/types/video_prompt_block.py +29 -0
  574. vellum/client/types/video_vellum_value.py +25 -0
  575. vellum/client/types/video_vellum_value_request.py +25 -0
  576. vellum/client/types/workflow_deployment_event_executions_response.py +18 -12
  577. vellum/client/types/workflow_deployment_history_item.py +10 -4
  578. vellum/client/types/workflow_deployment_parent_context.py +11 -11
  579. vellum/client/types/workflow_deployment_read.py +11 -5
  580. vellum/client/types/workflow_deployment_release.py +13 -7
  581. vellum/client/types/workflow_deployment_release_workflow_deployment.py +2 -2
  582. vellum/client/types/workflow_deployment_release_workflow_version.py +10 -4
  583. vellum/client/types/workflow_error.py +1 -0
  584. vellum/client/types/workflow_event_error.py +3 -3
  585. vellum/client/types/workflow_event_execution_read.py +22 -16
  586. vellum/client/types/workflow_execution_actual.py +10 -4
  587. vellum/client/types/workflow_execution_actual_chat_history_request.py +2 -2
  588. vellum/client/types/workflow_execution_actual_json_request.py +2 -2
  589. vellum/client/types/workflow_execution_actual_string_request.py +2 -2
  590. vellum/client/types/workflow_execution_detail.py +22 -16
  591. vellum/client/types/workflow_execution_fulfilled_body.py +3 -3
  592. vellum/client/types/workflow_execution_fulfilled_event.py +22 -16
  593. vellum/client/types/workflow_execution_initiated_body.py +3 -3
  594. vellum/client/types/workflow_execution_initiated_event.py +22 -16
  595. vellum/client/types/workflow_execution_node_result_event.py +10 -4
  596. vellum/client/types/workflow_execution_paused_body.py +4 -4
  597. vellum/client/types/workflow_execution_paused_event.py +22 -16
  598. vellum/client/types/workflow_execution_rejected_body.py +4 -4
  599. vellum/client/types/workflow_execution_rejected_event.py +22 -16
  600. vellum/client/types/workflow_execution_resumed_body.py +3 -3
  601. vellum/client/types/workflow_execution_resumed_event.py +22 -16
  602. vellum/client/types/workflow_execution_snapshotted_body.py +3 -3
  603. vellum/client/types/workflow_execution_snapshotted_event.py +22 -16
  604. vellum/client/types/workflow_execution_span.py +20 -12
  605. vellum/client/types/workflow_execution_span_attributes.py +2 -2
  606. vellum/client/types/workflow_execution_streaming_body.py +4 -4
  607. vellum/client/types/workflow_execution_streaming_event.py +22 -16
  608. vellum/client/types/workflow_execution_usage_calculation_error.py +3 -3
  609. vellum/client/types/workflow_execution_usage_calculation_fulfilled_body.py +22 -0
  610. vellum/client/types/workflow_execution_usage_result.py +3 -3
  611. vellum/client/types/workflow_execution_view_online_eval_metric_result.py +10 -4
  612. vellum/client/types/workflow_execution_workflow_result_event.py +10 -4
  613. vellum/client/types/workflow_expand_meta_request.py +2 -2
  614. vellum/client/types/workflow_initialization_error.py +2 -2
  615. vellum/client/types/workflow_node_result_data.py +8 -7
  616. vellum/client/types/workflow_node_result_event.py +3 -2
  617. vellum/client/types/workflow_output.py +6 -5
  618. vellum/client/types/workflow_output_array.py +12 -6
  619. vellum/client/types/workflow_output_chat_history.py +3 -3
  620. vellum/client/types/workflow_output_error.py +3 -3
  621. vellum/client/types/workflow_output_function_call.py +3 -3
  622. vellum/client/types/workflow_output_image.py +3 -3
  623. vellum/client/types/workflow_output_json.py +3 -3
  624. vellum/client/types/workflow_output_number.py +3 -3
  625. vellum/client/types/workflow_output_search_results.py +3 -3
  626. vellum/client/types/workflow_output_string.py +3 -3
  627. vellum/client/types/workflow_parent_context.py +12 -12
  628. vellum/client/types/workflow_push_deployment_config_request.py +2 -2
  629. vellum/client/types/workflow_push_response.py +2 -2
  630. vellum/client/types/workflow_release_tag_read.py +4 -4
  631. vellum/client/types/workflow_release_tag_workflow_deployment_history_item.py +2 -2
  632. vellum/client/types/workflow_request_chat_history_input_request.py +3 -3
  633. vellum/client/types/workflow_request_input_request.py +3 -2
  634. vellum/client/types/workflow_request_json_input_request.py +3 -3
  635. vellum/client/types/workflow_request_number_input_request.py +3 -3
  636. vellum/client/types/workflow_request_string_input_request.py +3 -3
  637. vellum/client/types/workflow_result_event.py +13 -7
  638. vellum/client/types/workflow_result_event_output_data.py +7 -6
  639. vellum/client/types/workflow_result_event_output_data_array.py +12 -6
  640. vellum/client/types/workflow_result_event_output_data_chat_history.py +3 -3
  641. vellum/client/types/workflow_result_event_output_data_error.py +3 -3
  642. vellum/client/types/workflow_result_event_output_data_function_call.py +3 -3
  643. vellum/client/types/workflow_result_event_output_data_json.py +3 -3
  644. vellum/client/types/workflow_result_event_output_data_number.py +3 -3
  645. vellum/client/types/workflow_result_event_output_data_search_results.py +3 -3
  646. vellum/client/types/workflow_result_event_output_data_string.py +3 -3
  647. vellum/client/types/workflow_sandbox_example.py +2 -2
  648. vellum/client/types/workflow_sandbox_parent_context.py +11 -11
  649. vellum/client/types/workflow_stream_event.py +2 -1
  650. vellum/client/types/workspace_read.py +3 -3
  651. vellum/client/types/workspace_secret_read.py +3 -3
  652. vellum/core/force_multipart.py +3 -0
  653. vellum/prompts/blocks/compilation.py +22 -10
  654. vellum/types/vellum_video.py +3 -0
  655. vellum/types/vellum_video_request.py +3 -0
  656. vellum/types/video_chat_message_content.py +3 -0
  657. vellum/types/video_chat_message_content_request.py +3 -0
  658. vellum/types/video_prompt_block.py +3 -0
  659. vellum/types/video_vellum_value.py +3 -0
  660. vellum/types/video_vellum_value_request.py +3 -0
  661. vellum/types/workflow_execution_usage_calculation_fulfilled_body.py +3 -0
  662. vellum/workflows/events/node.py +25 -10
  663. vellum/workflows/events/tests/test_event.py +19 -19
  664. vellum/workflows/events/workflow.py +11 -0
  665. vellum/workflows/graph/graph.py +103 -1
  666. vellum/workflows/graph/tests/test_graph.py +99 -0
  667. vellum/workflows/nodes/bases/base.py +9 -1
  668. vellum/workflows/nodes/displayable/bases/utils.py +4 -2
  669. vellum/workflows/nodes/displayable/tool_calling_node/node.py +19 -18
  670. vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py +17 -7
  671. vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py +7 -7
  672. vellum/workflows/nodes/displayable/tool_calling_node/utils.py +47 -80
  673. vellum/workflows/references/environment_variable.py +10 -0
  674. vellum/workflows/runner/runner.py +18 -2
  675. vellum/workflows/state/context.py +101 -12
  676. vellum/workflows/state/encoder.py +2 -4
  677. vellum/workflows/types/definition.py +11 -1
  678. vellum/workflows/types/tests/test_definition.py +19 -0
  679. vellum/workflows/utils/functions.py +1 -1
  680. vellum/workflows/utils/vellum_variables.py +9 -5
  681. vellum/workflows/workflows/base.py +12 -5
  682. {vellum_ai-1.1.2.dist-info → vellum_ai-1.1.4.dist-info}/METADATA +2 -2
  683. {vellum_ai-1.1.2.dist-info → vellum_ai-1.1.4.dist-info}/RECORD +693 -675
  684. vellum_ee/workflows/display/nodes/vellum/code_execution_node.py +1 -1
  685. vellum_ee/workflows/display/nodes/vellum/tests/test_code_execution_node.py +55 -1
  686. vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +164 -47
  687. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py +15 -49
  688. vellum_ee/workflows/display/types.py +14 -1
  689. vellum_ee/workflows/display/utils/expressions.py +13 -4
  690. vellum_ee/workflows/display/workflows/base_workflow_display.py +6 -19
  691. {vellum_ai-1.1.2.dist-info → vellum_ai-1.1.4.dist-info}/LICENSE +0 -0
  692. {vellum_ai-1.1.2.dist-info → vellum_ai-1.1.4.dist-info}/WHEEL +0 -0
  693. {vellum_ai-1.1.2.dist-info → vellum_ai-1.1.4.dist-info}/entry_points.txt +0 -0
@@ -37,7 +37,7 @@ vellum_ee/workflows/display/nodes/utils.py,sha256=sloya5TpXsnot1HURc9L51INwflRqU
37
37
  vellum_ee/workflows/display/nodes/vellum/__init__.py,sha256=nUIgH2s0-7IbQRNrBhLPyRNe8YIrx3Yo9HeeW-aXXFk,1668
38
38
  vellum_ee/workflows/display/nodes/vellum/api_node.py,sha256=lGS-C9cd-nlYVZuaXmArJUJFdwPUMLNJwf1bpa7Ufys,9400
39
39
  vellum_ee/workflows/display/nodes/vellum/base_adornment_node.py,sha256=FHhPoGmmny4Xcxi2pm12Sk3ZOREanWEVrOWcjRhncH4,6337
40
- vellum_ee/workflows/display/nodes/vellum/code_execution_node.py,sha256=2v6-2ihLPCTJYU9Uvl-LFsRYcxSq6ck7sUZVajAE03c,4707
40
+ vellum_ee/workflows/display/nodes/vellum/code_execution_node.py,sha256=f1pMgg_Nus5F7MdzR4Czxc4fsvRk3WupkHuePsUuQxQ,4728
41
41
  vellum_ee/workflows/display/nodes/vellum/conditional_node.py,sha256=OEw8QRPliL4P8J6oEZdQH8Oc-0u7aFa_Jqx0RyL6F-M,11656
42
42
  vellum_ee/workflows/display/nodes/vellum/error_node.py,sha256=YhMsi2TG1zSR8E7IpxzzSncOyVLcvqTuGa3mr4RqHd8,2364
43
43
  vellum_ee/workflows/display/nodes/vellum/final_output_node.py,sha256=zo-nalsuayMqeb2GwR2OB9SFK3y2U5aG-rtwrsjdasQ,3089
@@ -54,7 +54,7 @@ vellum_ee/workflows/display/nodes/vellum/subworkflow_deployment_node.py,sha256=w
54
54
  vellum_ee/workflows/display/nodes/vellum/templating_node.py,sha256=TdIJWh2l8p4tw7ejRexGOFQKnviirUqie3WYwsrVQ4g,3339
55
55
  vellum_ee/workflows/display/nodes/vellum/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  vellum_ee/workflows/display/nodes/vellum/tests/test_api_node.py,sha256=DQAtsabvn6BE6xWwKNHzMOppzoy1-1dssNnrwbHUdRU,1490
57
- vellum_ee/workflows/display/nodes/vellum/tests/test_code_execution_node.py,sha256=Wsxy464fZrzg7oqUkWady1ojzMTJXKHeE6ac0Ce9sHs,8084
57
+ vellum_ee/workflows/display/nodes/vellum/tests/test_code_execution_node.py,sha256=teZ1IXoF6t56xd7F9mDtyHeuG8nGptL5_1v0MigkNaI,10775
58
58
  vellum_ee/workflows/display/nodes/vellum/tests/test_error_node.py,sha256=540FoWMpJ3EN_DPjHsr9ODJWCRVcUa5hZBn-5T2GiHU,1665
59
59
  vellum_ee/workflows/display/nodes/vellum/tests/test_inline_subworkflow_node.py,sha256=SKOYan-dxY4gsO0R4JyQUyWrABHBN8XImKw9Eeo4wGo,3535
60
60
  vellum_ee/workflows/display/nodes/vellum/tests/test_note_node.py,sha256=uiMB0cOxKZzos7YKnj4ef4DFa2bOvZJWIv-hfbUV6Go,1218
@@ -64,7 +64,7 @@ vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=h93ysol
64
64
  vellum_ee/workflows/display/nodes/vellum/tests/test_search_node.py,sha256=KvByxgbUkVyfPIVxTUBUk6a92JiJMi8eReZWxzfPExU,3864
65
65
  vellum_ee/workflows/display/nodes/vellum/tests/test_subworkflow_deployment_node.py,sha256=BUzHJgjdWnPeZxjFjHfDBKnbFjYjnbXPjc-1hne1B2Y,3965
66
66
  vellum_ee/workflows/display/nodes/vellum/tests/test_templating_node.py,sha256=LSk2gx9TpGXbAqKe8dggQW8yJZqj-Cf0EGJFeGGlEcw,3321
67
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=FlltEqHE5qdRprlDrSYrnnA1nJVtuVoXof-zOT2EIW0,8646
67
+ vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=KF31033chAPfMOC_YOWJH_92ZoNfCdavNWzrEeB0QUc,13819
68
68
  vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=Khjsb53PKpZuyhKoRMgKAL45eGp5hZqXvHmVeQWRw4w,2289
69
69
  vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=rHybfUAWwa0LlstQTNthGb-zYXrUCLADFtn_4SGsbw8,4807
70
70
  vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=z9Omo676RRc7mQjLoL7hjiHhUj0OWVLhrrb97YTN4QA,4086
@@ -97,24 +97,24 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_n
97
97
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=hDWtKXmGI1CKhTwTNqpu_d5RkE5n7SolMLtgd87KqTI,3856
98
98
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_composio_serialization.py,sha256=AUfULtIangNYkvLH3jd2Ar8X5ulW4tGmezeCfMmXFUU,3697
99
99
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py,sha256=4t1lkN2nsZF6lFqP6QnskUQWJlhasF8C2_f6atzk8ZY,26298
100
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py,sha256=InTdnaFHWO5sRJX41PMZ_rLG8uVxH_loPf1wuahYaNQ,4303
100
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py,sha256=9ORex-okcpwbbkxEDJyyRlbPid6zLSDduK0fBfrp8kk,2415
101
101
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py,sha256=B0rDsCvO24qPp0gkmj8SdTDY5CxZYkvKwknsKBuAPyA,10017
102
102
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=XIZZr5POo2NLn2uEWm9EC3rejeBMoO4X-JtzTH6mvp4,4074
103
103
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py,sha256=pLCyMScV88DTBXRH7jXaXOEA1GBq8NIipCUFwIAWnwI,2771
104
104
  vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=J4ouI8KxbMfxQP2Zq_9cWMGYgbjCWmKzjCJEtnSJb0I,5829
105
105
  vellum_ee/workflows/display/tests/workflow_serialization/test_workflow_input_parameterization_error.py,sha256=vAdmn3YTBDpo55znbydQxsgg9ASqHcvsUPwiBR_7wfo,1461
106
- vellum_ee/workflows/display/types.py,sha256=i4T7ElU5b5h-nA1i3scmEhO1BqmNDc4eJDHavATD88w,2821
106
+ vellum_ee/workflows/display/types.py,sha256=qRSh7HstBjcAft6dIrij9dLZTanlRWhNwDFfggqJXzs,3174
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
109
  vellum_ee/workflows/display/utils/exceptions.py,sha256=LSwwxCYNxFkf5XMUcFkaZKpQ13OSrI7y_bpEUwbKVk0,169
110
- vellum_ee/workflows/display/utils/expressions.py,sha256=UvRnkwfKTtE6ZbxG3vNzFtOoWg4s5s7dUWte4-M-D5E,16329
110
+ vellum_ee/workflows/display/utils/expressions.py,sha256=vzytRJ46iGHgOEiBio05EZ0XgXSSdEazRS37S4EYVhQ,16601
111
111
  vellum_ee/workflows/display/utils/registry.py,sha256=fWIm5Jj-10gNFjgn34iBu4RWv3Vd15ijtSN0V97bpW8,1513
112
112
  vellum_ee/workflows/display/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
113
  vellum_ee/workflows/display/utils/tests/test_auto_layout.py,sha256=vfXI769418s9vda5Gb5NFBH747WMOwSgHRXeLCTLVm8,2356
114
114
  vellum_ee/workflows/display/utils/vellum.py,sha256=mtoXmSYwR7rvrq-d6CzCW_auaJXTct0Mi1F0xpRCiNQ,5627
115
115
  vellum_ee/workflows/display/vellum.py,sha256=J2mdJZ1sdLW535DDUkq_Vm8Z572vhuxHxVZF9deKSdk,391
116
116
  vellum_ee/workflows/display/workflows/__init__.py,sha256=JTB9ObEV3l4gGGdtfBHwVJtTTKC22uj-a-XjTVwXCyA,148
117
- vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=ulsUvNj90OBF7nGBarDuwphZftuzi34C4BsFOIdJa74,41629
117
+ vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=ysOq1_con5SvdaeCMeECWEVC1qJzSBTIKA_lJNU0zqQ,41412
118
118
  vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py,sha256=gxz76AeCqgAZ9D2lZeTiZzxY9eMgn3qOSfVgiqYcOh8,2028
119
119
  vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=9CkgKbM_zgq0l2bwst1hLFGyOigpjsBO4ZU6qSMXND4,36027
120
120
  vellum_ee/workflows/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -142,708 +142,718 @@ vellum_ee/workflows/tests/test_display_meta.py,sha256=PkXJVnMZs9GNooDkd59n4YTBAX
142
142
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=EVrCRAP0lpvd0GIDlg2tnGfJzDNooNDXPfGFPLAqmbI,1870
143
143
  vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
144
144
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
145
- vellum/__init__.py,sha256=d6HOicr5YrsgNg6BQStVucKavziG1CbwoLaQ7MaQAQ0,43115
146
- vellum/client/README.md,sha256=isKIKsunq_JOIkKDgA67k5yNO7QFaok-RrUlxX634zc,3757
147
- vellum/client/__init__.py,sha256=zs7kH7o3QHvIeulMc1nw3zn8I1OK1VqbA8_kMFDJwyo,93222
148
- vellum/client/core/__init__.py,sha256=JZDozMOUlhvOLnOO6kGBxye5Ctfg_KDOjeUTSUoMmV8,1542
149
- vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
150
- vellum/client/core/client_wrapper.py,sha256=VXq8nOWajBONQONOHs5wCSjJknQxudGiKKk9hCz6qyE,2383
145
+ vellum/__init__.py,sha256=iqkCA7SoYec2cOIyNBQeu7f0reFyxwR4zlSAYg71ncM,43613
146
+ vellum/client/README.md,sha256=gxc7JlJRBrBZpN5LHa2ORxYTRHFLPnWmnIugN8pmQh4,5600
147
+ vellum/client/__init__.py,sha256=NEcLUhKRIK0OGGXTSQbarRaacFkJWFmM5iY4F9lgIDI,72131
148
+ vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
149
+ vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
150
+ vellum/client/core/client_wrapper.py,sha256=6vp_q4aKby-T0ukw9WHtdpLBDqY6TQ7mpOcJmVsaiE4,2840
151
151
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
152
152
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
153
- vellum/client/core/http_client.py,sha256=cKs2w0ybDBk1wHQf-fTALm_MmvaMe3cZKcYJxqmCxkE,19539
154
- vellum/client/core/http_response.py,sha256=Argerx6pFZdCpe637AT3EejZw5zlMGgsshZq6rb7krQ,1005
153
+ vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
154
+ vellum/client/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
155
+ vellum/client/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
155
156
  vellum/client/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
156
- vellum/client/core/pydantic_utilities.py,sha256=sLkq8EEND-Gxd3IdQM59rzCeRwCBoUvwOCj2ahOq_Fs,12691
157
+ vellum/client/core/pydantic_utilities.py,sha256=ATCcFYxgyV2sQ5XmRM1tYiQiApi2kHasnBxrN94icd8,11319
157
158
  vellum/client/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
158
159
  vellum/client/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
159
160
  vellum/client/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
160
- vellum/client/core/serialization.py,sha256=AMtvLgUpF6ugN96V7bvOMP3W-z06gH2n4-1vl9nPbLE,9600
161
+ vellum/client/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
161
162
  vellum/client/environment.py,sha256=bcAFjoE9XXd7tiysYS90Os669IJmUMZS2JZ_ZQn0Dpg,498
162
- vellum/client/errors/__init__.py,sha256=HZB8vVqzDNx0M2uFJ05S5RcGTH95iVDl4v3rQ4xRqSw,343
163
- vellum/client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
164
- vellum/client/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
165
- vellum/client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
166
- vellum/client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
167
- vellum/client/raw_client.py,sha256=IMBkkLgO-GOy8TakMQO1_RbCgW5qwIG_o5XrDvLuAD4,66014
168
- vellum/client/reference.md,sha256=_-WW1Fj0ofH9xbqgdu7zCX8ILjZbC1VwDsLtu7maLJ4,81385
169
- vellum/client/resources/__init__.py,sha256=Hyb51zNnMEHvW5fu448E_9ZD3-ZYRqNIqt6LgNAoa2M,1563
170
- vellum/client/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
171
- vellum/client/resources/ad_hoc/client.py,sha256=BH-e1qh_HBaRTGxuHX8YZtdmtS_fk_WZrrOEHpvYleo,22394
172
- vellum/client/resources/ad_hoc/raw_client.py,sha256=erRtZ0jFnGsrLUkESyfbPeXW8Zk2w5IvNW2QDUHZrDQ,11481
173
- vellum/client/resources/container_images/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
174
- vellum/client/resources/container_images/client.py,sha256=qA6qUDOer5jTzjnUSm94PNvKzGwXyc1wpX5OoP9TNCY,10180
175
- vellum/client/resources/container_images/raw_client.py,sha256=fM8oKEb5hrhnlWSODqZfpqDgmgkMAyS_V_R0bSuqvwo,13960
176
- vellum/client/resources/deployments/__init__.py,sha256=m64MNuPx3qVazOnTNwOY8oEeDrAkNwMJvUEe5xoMDvs,239
177
- vellum/client/resources/deployments/client.py,sha256=16oyzlIWZWvNjW07UBzxn2ckSjYqePkZKa6A51tTESc,28818
178
- vellum/client/resources/deployments/raw_client.py,sha256=bNOeUMg2pz5tzjln3HMr1KXnMKgVxMPt8FUkP76cz2M,40321
179
- vellum/client/resources/deployments/types/__init__.py,sha256=29GVdoLOJsADSSSqZwb6CQPeEmPjkKrbsWfru1bemj8,321
163
+ vellum/client/errors/__init__.py,sha256=i1Cxfwfm2tL1DRuYRbTEXZ5MIhobgDE8zm38gqGSNKY,363
164
+ vellum/client/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
165
+ vellum/client/errors/forbidden_error.py,sha256=JhKThpM90vF0BEmaBn-8P_0NVYmgJ2BE9kvWmLxU_nA,337
166
+ vellum/client/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
167
+ vellum/client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy1UQUp2IOE8,336
168
+ vellum/client/raw_client.py,sha256=IJNaTvVzigyiqHZ9g-nLZzXsV8P7aRUZHdXV0U3ddn8,112401
169
+ vellum/client/reference.md,sha256=EOMv5NjpNIFecOvFluLum54Q7MoZjrPMHM12sgQ4w4Y,93546
170
+ vellum/client/resources/__init__.py,sha256=zeXbZomGY-9AxQT2izDp1RXpy1bB894aCnIZuBxjZd8,1583
171
+ vellum/client/resources/ad_hoc/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
172
+ vellum/client/resources/ad_hoc/client.py,sha256=AbK_g9HPL2xEBHymwQ9rGO7js7X1YpNYcqPa-PxlsyM,14400
173
+ vellum/client/resources/ad_hoc/raw_client.py,sha256=2eBoWQyB02LUqe7tF8ZZNJdF97XdeHyVY0N3O6EJIxc,24723
174
+ vellum/client/resources/container_images/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
175
+ vellum/client/resources/container_images/client.py,sha256=o3K1T2zuU738YsNvHeImytorl8sRCgnuv-u6F9O5fZk,9874
176
+ vellum/client/resources/container_images/raw_client.py,sha256=ddsLR8tbDa7D-hJsjPU8n3GeTYN71CMwTfPK2_L5Sc4,14422
177
+ vellum/client/resources/deployments/__init__.py,sha256=Aze0YlID_nRBVASy8dUOrXmtn7_l_z6oG576vsr2n4g,259
178
+ vellum/client/resources/deployments/client.py,sha256=NWvDrhQVNuk27nR1KdI89nBVDVf1tmDR3e6LLic2wKY,28234
179
+ vellum/client/resources/deployments/raw_client.py,sha256=Gbjv0NysAcwR_mB9xCkVMoBBMJVb-JthX_lQE-Hmkk0,41783
180
+ vellum/client/resources/deployments/types/__init__.py,sha256=IjycypLdKnmutjjli7a--GHMT4r4vLI2cGrF7UHThxo,341
180
181
  vellum/client/resources/deployments/types/deployments_list_request_status.py,sha256=CxlQD16KZXme7x31YYCe_3aAgEueutDTeJo5A4Au-aU,174
181
182
  vellum/client/resources/deployments/types/list_deployment_release_tags_request_source.py,sha256=hRGgWMYZL9uKCmD_2dU8-u9RCPUUGItpNn1tUY-NXKY,180
182
- vellum/client/resources/document_indexes/__init__.py,sha256=YpOl_9IV7xOlH4OmusQxtAJB11kxQfCSMDyT1_UD0oM,165
183
- vellum/client/resources/document_indexes/client.py,sha256=JKhjG0lF-2uArvpZ3bBxZv3bGsQBS-tp8xKcrKeZCwA,24903
184
- vellum/client/resources/document_indexes/raw_client.py,sha256=8FBQ9E1fng20Arx2zl42acds5xIsI_8btI3G9VUW_ik,31073
185
- vellum/client/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
183
+ vellum/client/resources/document_indexes/__init__.py,sha256=cCCSLBe93_1w6-u6Q-IYM0XXS57PW9Xw14myKqdcaqc,185
184
+ vellum/client/resources/document_indexes/client.py,sha256=cMJo6xEPnHW7-rX-3vOb4-jupdH_M3u9oA6uuxaTIO8,24213
185
+ vellum/client/resources/document_indexes/raw_client.py,sha256=HOBjCtuP1slPMIShqkDv0uoDl2bbu7CQrGG3paLDFN4,32063
186
+ vellum/client/resources/document_indexes/types/__init__.py,sha256=HaAObnALQo1B9vq9-6NxBcr5z-IRjqaPojE2Q6thkPM,216
186
187
  vellum/client/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=sfUEB0cvOSmlE2iITqnMVyHv05Zy2fWP4QjCIYqMg0M,178
187
- vellum/client/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
188
- vellum/client/resources/documents/client.py,sha256=oMXWg3rXcxQ9BG6_iTbWH4YWuQY8ATbOct1FbXzix2c,17091
189
- vellum/client/resources/documents/raw_client.py,sha256=Hr69KLYUJ1S8vLXch0MxJ9N8xqjWRmGhUVcYrIkH23M,24976
190
- vellum/client/resources/folder_entities/__init__.py,sha256=QOp7UMMB3a32GrfVaud35ECn4fqPBKXxCyClsDgd6GE,175
191
- vellum/client/resources/folder_entities/client.py,sha256=jvgmLvyWgIHxB34P7vJoWkBknqjWpT7S3cX8_4cAYwc,9391
192
- vellum/client/resources/folder_entities/raw_client.py,sha256=K4iyxQiJsJUyN80RAfY9ykjzc9wLAhm30zHpoK56yx4,10499
193
- vellum/client/resources/folder_entities/types/__init__.py,sha256=cHabrupjC-HL3kj-UZ9WdVzqHoQHCu6QsLFB3wlOs7k,212
188
+ vellum/client/resources/documents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
189
+ vellum/client/resources/documents/client.py,sha256=1IjqPf-ucvYK4A5CdtGP_0M4y9l1vBUn_Kq1GeqisxU,16791
190
+ vellum/client/resources/documents/raw_client.py,sha256=-_94wO-A7RoSY9bea1mp1Qskurak9BJNw9IQ1Jz_MTI,25992
191
+ vellum/client/resources/folder_entities/__init__.py,sha256=BSfCsUFsB-bXr4AwYaCcEU48j5U61VFxajugpspfDS0,195
192
+ vellum/client/resources/folder_entities/client.py,sha256=F60BvZtI4Bnk2h7Z405JshsCLx7qh_yXZkqe3rPdpus,9291
193
+ vellum/client/resources/folder_entities/raw_client.py,sha256=uYTdVE-lpzoPzxnXIKCb_A4N8L1R7R-K0rq_0txtV04,10697
194
+ vellum/client/resources/folder_entities/types/__init__.py,sha256=i-kAMISROYcwU6XqRceoYrbgOcHZHLTV-xDqw9kBMP8,232
194
195
  vellum/client/resources/folder_entities/types/folder_entities_list_request_entity_status.py,sha256=nK9b9fRSeCfjn2V2Hifl1IbhFeVsNkoeXJ8rCAPADFg,183
195
- vellum/client/resources/metric_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
196
- vellum/client/resources/metric_definitions/client.py,sha256=Hy7c2em7yJ_wc6T8ICo-BawI9VDagNVAbXRH94ZTIuI,7639
197
- vellum/client/resources/metric_definitions/raw_client.py,sha256=4RGuRQk_hoNeKAd3OsLY2t_v_Us3-zJChOeMnzCmEpA,8885
198
- vellum/client/resources/ml_models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
199
- vellum/client/resources/ml_models/client.py,sha256=TEoPvE0Eo-7KVtAIOSXU0jT_o0_-pV20kgoOy7T9TzU,3233
200
- vellum/client/resources/ml_models/raw_client.py,sha256=ZsiCVXcXDD5629a-46LpYn0Nzq811zCHU4ICpSpNO14,3682
201
- vellum/client/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
202
- vellum/client/resources/organizations/client.py,sha256=Y1aIchkytLqYw3XrXVur6gSapavqLVf3HNhUFTG1z8I,3126
203
- vellum/client/resources/organizations/raw_client.py,sha256=ozRxLDKGQI4w4Qr_qEQJl6csJEiS3QSP-sJWScNsSHs,3505
204
- vellum/client/resources/prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
205
- vellum/client/resources/prompts/client.py,sha256=n-XDYpRHNbGZl2ilHA01XHGC-uHjwPXhSqBe4TA-k1s,9355
206
- vellum/client/resources/prompts/raw_client.py,sha256=55ryGsv72Be9h9GBs_0yfqJrYvsFgODvD8NqGbBpflE,13223
207
- vellum/client/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
208
- vellum/client/resources/sandboxes/client.py,sha256=-LowpWeUGrhOtXEFJ_DyTiNPBul_0H3RsOnvZliwStU,13897
209
- vellum/client/resources/sandboxes/raw_client.py,sha256=3R0BIe57br69pNmbrbn6mzcz6atlqmcz-MzRGi9-Fgs,15942
210
- vellum/client/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
211
- vellum/client/resources/test_suite_runs/client.py,sha256=T8KBpebvKYmz3MlM0pA81BLsJaM_U8X5D7Ft8Xtm_8k,11195
212
- vellum/client/resources/test_suite_runs/raw_client.py,sha256=D8SwzwwZnqtRM-xv4BD3WC_xlw9xMwYAFZUbfgDo9LY,13668
213
- vellum/client/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
214
- vellum/client/resources/test_suites/client.py,sha256=VR9GpdXnKTG_gdmC8ComT85zQYh7arxfhfdI2R1X74U,23996
215
- vellum/client/resources/test_suites/raw_client.py,sha256=uOHbV3CRFFCXXl88DCl6DobIA0ZEDq-1s-1niT__dmI,15498
216
- vellum/client/resources/workflow_deployments/__init__.py,sha256=_duH6m1CDWcfqX6DTBNjO3ar4Xrl-f5PozMaTcT4Kow,251
217
- vellum/client/resources/workflow_deployments/client.py,sha256=7WY-S6Ogg0vsU_p_ctus_nLA6PrKSnrZeq0NqT-g7Ig,27842
218
- vellum/client/resources/workflow_deployments/raw_client.py,sha256=JZxlJ16723_rD5hjVxn7s7mYTCkKoUn8Ot94snZC_po,36159
219
- vellum/client/resources/workflow_deployments/types/__init__.py,sha256=W7DKJ1nduwhRckYLvH7wHLdaGH9MXHTZkxwG7FdTngY,340
196
+ vellum/client/resources/metric_definitions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
197
+ vellum/client/resources/metric_definitions/client.py,sha256=_wp7Ki9DlPSjfmYyyrGEBhoq3IkrFDpxJVPKJEP1yUk,7467
198
+ vellum/client/resources/metric_definitions/raw_client.py,sha256=aGTcWa2UnI5DkxfFfg9-Uo1kzLN5a7qLaZURIk1MTtA,9083
199
+ vellum/client/resources/ml_models/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
200
+ vellum/client/resources/ml_models/client.py,sha256=SdpyEZ5rcWc1S2DYEcKvDorvlrCREARCj8oIgwrezeI,3111
201
+ vellum/client/resources/ml_models/raw_client.py,sha256=TIaiaIjPtHlLIej3J0YkF4U-H0ptwCrSS5WebILbPS8,3748
202
+ vellum/client/resources/organizations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
203
+ vellum/client/resources/organizations/client.py,sha256=wfn2W7mymzscNKorB100l0j1J-KMsC74DDEjls2CBW0,3028
204
+ vellum/client/resources/organizations/raw_client.py,sha256=3U-6zU7Ii6ekJVLUbsFJjXMhZTxv_6i6UhLgBsl-dPQ,3571
205
+ vellum/client/resources/prompts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
206
+ vellum/client/resources/prompts/client.py,sha256=cn9BdmVHKpCRhB9NkRIxxpk7xYehfubhAcGj4eXOd7o,9235
207
+ vellum/client/resources/prompts/raw_client.py,sha256=a7Ozdu3QPUvKQvZKxB5T0t0WuXH0Mz0aU1HJVJvyQ0E,13893
208
+ vellum/client/resources/sandboxes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
209
+ vellum/client/resources/sandboxes/client.py,sha256=KoS5OLBYqSS9xhfV1iG37F84QfqMiyLPZVtXdiZ7xRk,13661
210
+ vellum/client/resources/sandboxes/raw_client.py,sha256=sVpEe_0ZPzOQ_gfnbWt2w1Fl5B2Mc-GkgK8dwSq109s,16272
211
+ vellum/client/resources/test_suite_runs/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
212
+ vellum/client/resources/test_suite_runs/client.py,sha256=ga6M9DaoyGUEBDYel2pFTDzLVtAwgG-G0j0VDVYLY14,10983
213
+ vellum/client/resources/test_suite_runs/raw_client.py,sha256=zIDLUYDc7eiKCp_hOabuGLorFe3dToLJx287fA0Y92k,13998
214
+ vellum/client/resources/test_suites/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
215
+ vellum/client/resources/test_suites/client.py,sha256=xo197bXk84jj6gEieRmJuhqBbQ8IB-VMNLki7gdqhlo,20753
216
+ vellum/client/resources/test_suites/raw_client.py,sha256=XfDqmJa7fngPsHAirTSSNBMHy2O4mKOaNS16IL567L8,22335
217
+ vellum/client/resources/workflow_deployments/__init__.py,sha256=MVnGG7CkZA7F8p__MGerey22DTg6oYqfay77mdlDjBc,271
218
+ vellum/client/resources/workflow_deployments/client.py,sha256=OjISxlNMMw241kmQN5uD3Cp9cOtQYJgbGh_yABG9J4o,27114
219
+ vellum/client/resources/workflow_deployments/raw_client.py,sha256=ypDXg7CzASIiTsThqJZhTmgpKuDQERgNJenFPWAnugU,37281
220
+ vellum/client/resources/workflow_deployments/types/__init__.py,sha256=2Lrjd-cX_h9gZEgxsF7e9nhCWUcTNXQyEaOjytC1NEM,360
220
221
  vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
221
222
  vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
222
- vellum/client/resources/workflow_executions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
223
- vellum/client/resources/workflow_executions/client.py,sha256=s51ejfTpVDmk2hBzuao29E7iLWyKKB_JJYmeNkZ7dP0,3455
224
- vellum/client/resources/workflow_executions/raw_client.py,sha256=QULbiQz0_JcxeNikxVp-dUPNqpyP-oX-ZxktPXNZXow,3714
225
- vellum/client/resources/workflow_sandboxes/__init__.py,sha256=OR3wE3pTgsZlTS-0ukeMWzSuEZF8PszuQTCHDh6JybI,175
226
- vellum/client/resources/workflow_sandboxes/client.py,sha256=NfgevqkT0KPVWpBeh-T4uZowRpgTkRy_YKBM1X89--c,10603
227
- vellum/client/resources/workflow_sandboxes/raw_client.py,sha256=5AV6jXa6_d6VJioNE_ClTwhjqmYaCRTwnkNQy4VlHw0,12445
228
- vellum/client/resources/workflow_sandboxes/types/__init__.py,sha256=EaGVRU1w6kJiiHrbZOeEa0c3ggjfgv_jBqsyOkCRWOI,212
223
+ vellum/client/resources/workflow_executions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
224
+ vellum/client/resources/workflow_executions/client.py,sha256=8zbeUzUWBYUUeFvZVao86hmySjMX7hir1fVeBxs2dyY,3355
225
+ vellum/client/resources/workflow_executions/raw_client.py,sha256=8SLOjmHRj8Xm2r53LumJT4esK9_pRZseh_tKX7ecCQI,3780
226
+ vellum/client/resources/workflow_sandboxes/__init__.py,sha256=fWzZgZDNIbJgdYSnL3f0lGa3lbb2bnmaofmodrlVG6o,195
227
+ vellum/client/resources/workflow_sandboxes/client.py,sha256=w8fWQCIFbDLXl4OX1OT_cKoVPA_q65qgOhb-I_zXO1k,10457
228
+ vellum/client/resources/workflow_sandboxes/raw_client.py,sha256=_C2MzCk36NP8Do4pat0Q0aPSSbP6KhOqBOaGtqNxwk0,12643
229
+ vellum/client/resources/workflow_sandboxes/types/__init__.py,sha256=mZxwNpOmBfllmNZrhp8e_M62hUFI73B2fNlvgG8vi3Y,232
229
230
  vellum/client/resources/workflow_sandboxes/types/list_workflow_sandbox_examples_request_tag.py,sha256=TEwWit20W3X-zWPPLAhmUG05UudG9gaBSJ4Q4-rNJws,188
230
- vellum/client/resources/workflows/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
231
- vellum/client/resources/workflows/client.py,sha256=3whmMqa4Cl53l6Fcl7PwyOlyL6v8YyD0pcc_o4RL-JI,7398
232
- vellum/client/resources/workflows/raw_client.py,sha256=I9y84Nr7rhCtWoj_yqbBOmx8kHXWVFwIsQKFiwGPBEg,11523
233
- vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
234
- vellum/client/resources/workspace_secrets/client.py,sha256=CEYKLYELn1CzHgjZiFsHTiMzeILKYgnR8YEYC38ubI0,5958
235
- vellum/client/resources/workspace_secrets/raw_client.py,sha256=NRwj3F8fBBM7yu6AJzGL8R5Jl9et2y5wEWS0vCAuGl4,7634
236
- vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
237
- vellum/client/resources/workspaces/client.py,sha256=xJn8e9ee9eoRYOyHdge0KoScIneV0xhFeQAu0uqKsHY,3034
238
- vellum/client/resources/workspaces/raw_client.py,sha256=o5IzFQnSaEwLz1nwxLOgDKzuy8m_Bu8zy51qS7-7C5w,3451
239
- vellum/client/types/__init__.py,sha256=Wp-Fc2cUyL0RbGDsbjT0V2Pf6YtUYgRajgXspQzE6Cg,65345
240
- vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
241
- vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
242
- vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=oDG60TpwK1YNSKhRsBbiP2O3ZF9PKR-M9chGIfKw4R4,1004
243
- vellum/client/types/ad_hoc_initiated_prompt_execution_meta.py,sha256=gOHP4kmnVCJJkTpfRPOgkFB70mhz5ySg_c2qRffDGWQ,785
244
- vellum/client/types/ad_hoc_rejected_prompt_execution_meta.py,sha256=Yo3TNjemHUfxU9R3EMzAGh-ey9pSClpEX7uGgGZiXDg,849
245
- vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=OVSyUL81lpkbXdxnQmPD6qPIxrErEDAgDofQ9lGWLXk,741
231
+ vellum/client/resources/workflows/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
232
+ vellum/client/resources/workflows/client.py,sha256=spLsngBjyIvGknFSg9-_tc-_5nqnzOm7s1Q0UP1nez8,7387
233
+ vellum/client/resources/workflows/raw_client.py,sha256=zBAbayxBUqzKb52938qCKPpEvjZzknp8_iEuKsNcAlQ,12642
234
+ vellum/client/resources/workspace_secrets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
235
+ vellum/client/resources/workspace_secrets/client.py,sha256=rKyHM9EJalA0adkQ0SDN5CmXjiddgVCO73y7Q4qqRP0,5722
236
+ vellum/client/resources/workspace_secrets/raw_client.py,sha256=ZfiNd1NisolmK07QPyojW_KFlIWpnjVNLA8Aq5JC-zQ,7832
237
+ vellum/client/resources/workspaces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
238
+ vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKeiOA6grOYoCc0Gi3E,2936
239
+ vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
240
+ vellum/client/types/__init__.py,sha256=36Mg9VFcvjsQUndOd0ebF873ww3-hxY1LY3YOxKFvbI,66120
241
+ vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
242
+ vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
243
+ vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
244
+ vellum/client/types/ad_hoc_initiated_prompt_execution_meta.py,sha256=2yFw2XRaT9Q3AKA6778GT91Wn5TRonpfZdmGgDdvYZo,749
245
+ vellum/client/types/ad_hoc_rejected_prompt_execution_meta.py,sha256=lqygrDY8yb0baJAszVtyZOOwtdNo5ISm4ZXQo0lq7sU,813
246
+ vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=lIQ1nKrBGDG0D4SWqUCPKwtwMxSVHEZ4Xaa53nxHtKs,705
246
247
  vellum/client/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
247
- vellum/client/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
248
- vellum/client/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
249
- vellum/client/types/api_request_parent_context.py,sha256=IQOUkgF3zT3LXk8u6wO7b7_U_UJEVkvr-JhUBaSPScs,1462
248
+ vellum/client/types/api_node_result.py,sha256=xXj04OXiuSxcw2GieKh92Pkf3EdBDsLrhRs_yJw5vC0,693
249
+ vellum/client/types/api_node_result_data.py,sha256=x8aH2HmPG7v5d58y8z5Vi_yD2fLu0atmDzOXui898pQ,873
250
+ vellum/client/types/api_request_parent_context.py,sha256=iQgu3KCZLeJuw-8k0NVWq07vjnqWXpWjHDdhf4PQmlI,1486
250
251
  vellum/client/types/api_version_enum.py,sha256=PObXD86PDEuoxBpLg2pIv_xEeHbN99r2tgAKnCiu5hk,166
251
- vellum/client/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
252
- vellum/client/types/array_chat_message_content_item.py,sha256=udxHZTZLQ1Ekg6X1D616a61crYxlQDz8QU6-CAHznrQ,625
253
- vellum/client/types/array_chat_message_content_item_request.py,sha256=3ULz8jtWvJIGl2SaGfw_hX9sKJxZaM4uUrZXyORlMhQ,742
254
- vellum/client/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
255
- vellum/client/types/array_input.py,sha256=IKF2Buei1n0jSoflfh2vSYwkkudjvf9iWGllO3bxIco,848
256
- vellum/client/types/array_vellum_value.py,sha256=6ZDizIzijUFX29JD4lnNv1mOH-venLD_c_sIiONWzqE,915
257
- vellum/client/types/array_vellum_value_request.py,sha256=SUIfUTeJTDcsH76mb_PfQv3q0GEUkVr4Gk-dqn2Qr-I,951
258
- vellum/client/types/audio_chat_message_content.py,sha256=159ELbeifFmAOvqPKaVSemHytSJ6OR0kOCtspCj4Lmc,725
259
- vellum/client/types/audio_chat_message_content_request.py,sha256=0iy-fv_AYp_3FIJUNza3aqCZrnHBsYN-IwQO690qeUk,754
260
- vellum/client/types/audio_prompt_block.py,sha256=4gbzRmZfT_crv3YcGTq265LE-HnzB_bxxtK0aUKzEJY,1013
261
- vellum/client/types/audio_vellum_value.py,sha256=8tbwNkj5UtnjZhFIQZ18O233yCt4fK3BhXpR7S5VEt4,745
262
- vellum/client/types/audio_vellum_value_request.py,sha256=KnEyYDvTVqNdYcb4v2AGs5nLbcWFSj351_A9nM2ad8Y,774
263
- vellum/client/types/base_output.py,sha256=WsCnB8EYCuGp96pKIFaOFWPmvRcJkg2I4ihM2zcPYL4,715
264
- vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
265
- vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
266
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
267
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py,sha256=QDv4d6ml773U6EpiAkNRJCHi3jgiRPOoCLXXMhGyJ7o,918
268
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py,sha256=n1ijP1zw-lQnxbj_ZfederNYD4LW-FGDklUOlYewxwg,911
269
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py,sha256=Y79jx-9QkbTzb7jSx8xF6YtbAB914u9E9uXOapk8TQc,918
252
+ vellum/client/types/array_chat_message_content.py,sha256=g4qSJDNPSrSC9GSMSJP80tT8qgWlnVD9Oo3KMEfcZIU,744
253
+ vellum/client/types/array_chat_message_content_item.py,sha256=WOzctR-ilus8AntH0XLCkCz2ryjGXpip-YH-KXUGrYQ,719
254
+ vellum/client/types/array_chat_message_content_item_request.py,sha256=Yy-egPD1jTzA6UwUKdABSa2hqV9WixU3QOD0e-CsaT4,858
255
+ vellum/client/types/array_chat_message_content_request.py,sha256=84iKAntFWj4-qt6tHeuM6SPuYd3p7ymsw0f07FuVh2I,773
256
+ vellum/client/types/array_input.py,sha256=bIU_4B1xu1aZLM5uX-r_fivdeZ0fvkxtc1Ww808Y-GY,958
257
+ vellum/client/types/array_vellum_value.py,sha256=nhmFNPPhXmHMdb8etAvpk-Mh1TVDP6KVGpX03q2Y5uU,855
258
+ vellum/client/types/array_vellum_value_request.py,sha256=RDlUXioqAcqd1nxAhsp6d-yo2Q-Zzm5m320M_P8aCrE,891
259
+ vellum/client/types/audio_chat_message_content.py,sha256=uX4RbTpCEzPMolK1oXJecwALTDQzFdZXHgNgyaTThBw,689
260
+ vellum/client/types/audio_chat_message_content_request.py,sha256=YAv76BUWgVSTaK9VgcN158loFFeKKawx2StWXwsSy4k,718
261
+ vellum/client/types/audio_prompt_block.py,sha256=5GXedTnmZF7vDiq-sIDMtksm3CExNNYoJVXMgRnmuR8,977
262
+ vellum/client/types/audio_vellum_value.py,sha256=TPZYq8sjlFFhSfHGif9OuGVWUtzeZ4LjDPYcLXDjI7I,709
263
+ vellum/client/types/audio_vellum_value_request.py,sha256=Hn4qkUV5hBNaNxdmwDA18BtmLxOFqwLeOdKI7k8HHJk,738
264
+ vellum/client/types/base_output.py,sha256=-O5DOk4K11MKQU8otOVeu3HMjtFdKLmpKHgYyXq1DXc,679
265
+ vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=D1Fs9_9Tm8XuiB4ErmkdHqXWq6nvbZX6rYObnKaSDTA,791
266
+ vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=7rJ589uXvc-WotTpRoBQjz6PE2bnuYBBms3RlyC3tLI,798
267
+ vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=ow8VLf5jeFsnvAVwU6kVTgaxWZJkd9e0H84_Nf1zV00,875
268
+ vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py,sha256=13nbZbyg2q5VZvziP98sFvvMggG4X0CNgDLKWb1PCRA,882
269
+ vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py,sha256=2ngs5WfmXdj8LQa5-Ek-0eNiYLZlRa5v77dNp87KaCA,875
270
+ vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py,sha256=f2M0aHwjvykK82PsIobkHRbs0QMK9lgyLipMM8w51o4,882
270
271
  vellum/client/types/build_status_enum.py,sha256=wvfnq2BV4ZJX_kVgXDCNwtSCnkYazWLKEuNBHlk86sU,195
271
- vellum/client/types/chat_history_input.py,sha256=lNh5j5mFxs0nTknzsL8kt9yAERpAWid7EWUU0i8BybM,853
272
- vellum/client/types/chat_history_input_request.py,sha256=0dmWfRWN9lOGEorQ3P1jKPAQtcXVexxiU9UEoJKP_pU,882
273
- vellum/client/types/chat_history_vellum_value.py,sha256=_yg6qk2Jci_rjFPOd3KNkXY0AduoEX1Tk8oPzQVpBYw,763
274
- vellum/client/types/chat_history_vellum_value_request.py,sha256=HzAiysncG5unJ-tlb43HhGZF8oYxN3rN7HGxG9g6Jiw,792
275
- vellum/client/types/chat_message.py,sha256=EOA8v5Ebx2KS9BtwBBGbuvSK-pn4xWYZiioHuuPWvzw,916
276
- vellum/client/types/chat_message_content.py,sha256=Mktcgw8PVOeqksaPn_40kohCdBG_113f81YTxKNHT6U,709
277
- vellum/client/types/chat_message_content_request.py,sha256=D9laBMCSgYuayRkcc8eW9qV7fX7qaRctt07BcD5bMhM,848
278
- vellum/client/types/chat_message_prompt_block.py,sha256=b6WmJqAc6r15XhHKsq3VmZBP-uoKV4jCSO-_xrDY5Qw,1351
279
- vellum/client/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
272
+ vellum/client/types/chat_history_input.py,sha256=qpf7t2aGvCgf2lFglICYEMpttKeejIl8ykwgn5VyEfU,817
273
+ vellum/client/types/chat_history_input_request.py,sha256=6qn910N7xz5WJpfhmVspXweyPduA5qZRaKXB5JMP7kI,846
274
+ vellum/client/types/chat_history_vellum_value.py,sha256=BFGUDpSli6c3Qu_YIzbTEOnV7VYxgXHdm-8DacMUsRA,727
275
+ vellum/client/types/chat_history_vellum_value_request.py,sha256=RHWICWTDXMSAALoxGqHzyfXlXpCBwsiBLERa_A4mPZc,756
276
+ vellum/client/types/chat_message.py,sha256=CvUNXyJhpdRbP5PmDMFMXg_xruIpZ-B8DieW8363HJA,880
277
+ vellum/client/types/chat_message_content.py,sha256=DkF3-VlVAihngMM00CNRY49evIwKIxY6JiupBQau7qQ,803
278
+ vellum/client/types/chat_message_content_request.py,sha256=vhMQ1nLw6RPbUpKxcK7FCjVrOgU7M1-WXjGqPWP6-ZI,964
279
+ vellum/client/types/chat_message_prompt_block.py,sha256=5zeuBconllhRbgwz9MhctvY7p5WD0YLdNuZesGHEbI4,1291
280
+ vellum/client/types/chat_message_request.py,sha256=CdvilJxsn9sheKZy9MYmgDzK1-PK_eU3d3iyMRyXJ2Q,909
280
281
  vellum/client/types/chat_message_role.py,sha256=-i0Jrcbwf72MkMoaFTGyxRduvlN7f5Y9ULhCXR5KNdA,182
281
- vellum/client/types/code_execution_node_array_result.py,sha256=7DK47w6mdbFLD2kaDXY06IDQZ2PU_UFmQ0-EXzL7xUI,760
282
- vellum/client/types/code_execution_node_chat_history_result.py,sha256=Kwb_jn_xmVz214bIGPmmpplKDczMAJCMAr6RxOJA-1Q,731
283
- vellum/client/types/code_execution_node_error_result.py,sha256=QlJEhZS-BKpCJc8bwG4MrsvUsTjDbY8iohYZh7--yBI,698
284
- vellum/client/types/code_execution_node_function_call_result.py,sha256=_3FYGMQhSvucFHC4gu9dHBXDKz8WpkTeDQ03aoASsn4,724
285
- vellum/client/types/code_execution_node_json_result.py,sha256=7FFqCR8B1fIjaRZ7Ix5fUhtAJfct_GDg7YWYAw7RUd4,656
286
- vellum/client/types/code_execution_node_number_result.py,sha256=PEhYlKvzPuJAoFwsZ2MTgFIswxhyjxc3AskDg9NBVWk,657
287
- vellum/client/types/code_execution_node_result.py,sha256=POlJRnRrHuzQ-kgU5uoMQPzDfX0AxoxCJJqp4AlTvFQ,851
288
- vellum/client/types/code_execution_node_result_data.py,sha256=yLRzycagwxgwi-NGx80qw0wV3VHhNb5ymUDX2oQnn9A,771
289
- vellum/client/types/code_execution_node_result_output.py,sha256=ZddnayoP01i5alC12OaoNdSgLoXr_Y4Nl343xGJvJeU,1069
290
- vellum/client/types/code_execution_node_search_results_result.py,sha256=yPh94v7pgFL-4x1JPSnXXGihUi42i-OfOaNVHLN4jE8,740
291
- vellum/client/types/code_execution_node_string_result.py,sha256=uH6KO57muMko4u_xISchhvP0E-VzJfhKD_rijXgisZ8,655
292
- vellum/client/types/code_execution_package.py,sha256=ONMwxtIcz6zSZOd0wKaPC4Rz6S_scbYeiNZHuDMD8U4,624
282
+ vellum/client/types/code_execution_node_array_result.py,sha256=-ukPf3id_-UApEfPac45ICKoEOo8qSxQJWZSnWl-sMY,888
283
+ vellum/client/types/code_execution_node_chat_history_result.py,sha256=zJoF5m08Sh--xlSZH9Et20h1Ohhi2z3zRttDMCHOqrc,695
284
+ vellum/client/types/code_execution_node_error_result.py,sha256=hIk-RSUxtYLYugd1rS4fe33efY-Oq9SyDKCYuKaWIvs,662
285
+ vellum/client/types/code_execution_node_function_call_result.py,sha256=B-wm9DQkCjeQdIoq2kdLDO3CFJqFa2Pdl22S7YuO87A,688
286
+ vellum/client/types/code_execution_node_json_result.py,sha256=T3qRzzcser3Wmaq6AGRbiknDt26GcoNMEw0GWCJP3qc,620
287
+ vellum/client/types/code_execution_node_number_result.py,sha256=nG60QzVELRo6iUjbqSur6tstlYLSDhOSOD0M5401dok,621
288
+ vellum/client/types/code_execution_node_result.py,sha256=vGP9h_fBW0UUhs7hug6oUHNvls81zD1-duR-MvTLrEU,946
289
+ vellum/client/types/code_execution_node_result_data.py,sha256=zPBdnXuJ_22Lbs17XqKUMYCu2onGt7a7mpKDJiIPMr0,870
290
+ vellum/client/types/code_execution_node_result_output.py,sha256=DblNjl6RvluRJNWpqyoZPe1OXQBaWYpKXin3oZBRAVM,1070
291
+ vellum/client/types/code_execution_node_search_results_result.py,sha256=9qPxpiQzq7jkQYDYoX1bX0vzVS2Tjpcz76nvAB7t0Pg,704
292
+ vellum/client/types/code_execution_node_string_result.py,sha256=E4igrNrXPJERYG4s8b7pxL3_A2_LkCrHLpmS0XtG_EI,619
293
+ vellum/client/types/code_execution_package.py,sha256=ONIjVnJgPRT37IaD9TTFQ2kIBeXggx_2wpR6vV3Qjl8,588
293
294
  vellum/client/types/code_execution_runtime.py,sha256=ucMXj7mUYl9-B_KentTfRuRIeDq33PV3OV_GWKiG-lo,181
294
- vellum/client/types/code_executor_input.py,sha256=Dj6XRaIRHjbXDZ-wR_XusJkrxYD_lJ1-UZY0Ga4xeqI,694
295
- vellum/client/types/code_executor_response.py,sha256=Xj2d86RMtodxHdfa4L0iaMkwyF0FgM7y6uBK-8WwOgE,673
296
- vellum/client/types/code_executor_secret_input.py,sha256=GmQG38-iQ6wTIvRw3fglOLepuw3LDL2I3joNXn3z-WA,766
297
- vellum/client/types/code_resource_definition.py,sha256=Yuw7osTazRMK3fsVSpLl8DUFq9M9Xzu7yRkGQEv-ats,835
298
- vellum/client/types/compile_prompt_deployment_expand_meta_request.py,sha256=z0iMR9nLGz5h2MbqamIwUxB8EiXGvqdf0tlYAQsBFbA,1136
299
- vellum/client/types/compile_prompt_meta.py,sha256=lQOFdrhMpzMOf_hasn4vb1AKnX2VuASr-1evaugJ4ro,848
295
+ vellum/client/types/code_executor_input.py,sha256=rgyeAJRMBBGpzTLllDrVpDWfRWkkpbAwWCnVk33Hk_Y,695
296
+ vellum/client/types/code_executor_response.py,sha256=C7lOiXbWjeaaFRqxC_oYlbnQGKWalcCYZlNn0aUgoPw,793
297
+ vellum/client/types/code_executor_secret_input.py,sha256=JxSS5NQ7r9_a7QFnbuKmoZ-Babv6mMnqBkxWmfYi4jU,730
298
+ vellum/client/types/code_resource_definition.py,sha256=0btqhVJWnRDkqFsOeud_d7JK0MN8UUwVe5xU3fIsrkw,799
299
+ vellum/client/types/compile_prompt_deployment_expand_meta_request.py,sha256=X97bEMMHKTt40ptQ5Vx_In-U6IavugEWghJ9ZYR20ko,1100
300
+ vellum/client/types/compile_prompt_meta.py,sha256=o3fxYObLrmFF__0b8jTl8MGd_tUknNKzivkQxn4zWq0,812
300
301
  vellum/client/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R6zLakrJMMn_1z9FIylBcxencQ6JHVPs7HSg,206
301
302
  vellum/client/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=FbgAsvMARYuSub2QQwFEkkbVeYwKkNmVi98nk7CxC-Q,235
302
303
  vellum/client/types/components_schemas_prompt_version_build_config_sandbox.py,sha256=OquKc9g8mgyxmNPKXcEq9E6PCgtKSbNi-RQqp2go9VI,230
303
304
  vellum/client/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
304
- vellum/client/types/conditional_node_result.py,sha256=vx8xo9F1KoJqOnYPtSevfOcBxKYAk8J8JGWFr1c4UO8,784
305
- vellum/client/types/conditional_node_result_data.py,sha256=yk4E7KHSzmKlweI9ce9eN_iW08V70KGmG1Z0K5455T0,604
306
- vellum/client/types/container_image_build_config.py,sha256=KcMGkFl6yMTLum4FUhlFXg5yPF1Z_Ru8Mgpm2lbMN10,704
307
- vellum/client/types/container_image_container_image_tag.py,sha256=ph9Xs0R386viUofCITdUfIKCLaDJokY5nzczf0iReuA,622
308
- vellum/client/types/container_image_read.py,sha256=pm2gZp08JgZh15pH__voBvJ2U7k39_cHe6h2bV89FKY,1137
309
- vellum/client/types/create_test_suite_test_case_request.py,sha256=3LmAy6U8tUJ75dmmnMMJyAJ4_xp7TT3iTzks8C8fHJk,1508
310
- vellum/client/types/deployment_history_item.py,sha256=-u7UYEFpVOlFijErPLGO99WYQxAnctZK52W-GM4KJJU,1132
311
- vellum/client/types/deployment_provider_payload_response.py,sha256=b0lkt0rK88ARQaMWn9MAHeWtMBsZKofDMlOAUsQvv7g,818
305
+ vellum/client/types/conditional_node_result.py,sha256=nN5fZPgjyWQU_McV3sL_NcgW1V1VWU-KBIFgGTyOZdo,748
306
+ vellum/client/types/conditional_node_result_data.py,sha256=Ui44n0Vd00O0RKzWb_mjOl8lVuV8XKOFNCYLple8L_8,568
307
+ vellum/client/types/container_image_build_config.py,sha256=Hl0PpR6fY8PDS8nvYktBsWydOvOxVpsFLvcjGuLk87Q,668
308
+ vellum/client/types/container_image_container_image_tag.py,sha256=TlXkSkD3udi_Cf-ZpiIAM_rkMzHyPrWJCUTm_3JWunA,586
309
+ vellum/client/types/container_image_read.py,sha256=9vyFH5TGg_WNMIlt47gVfy0pce-SOVyQdOkej7ZjKgk,1101
310
+ vellum/client/types/create_test_suite_test_case_request.py,sha256=qQCmHY3JcMuQ73l1VkY4Atmf0G2qUT20Tcax2uX3WCU,1610
311
+ vellum/client/types/deployment_history_item.py,sha256=E48hjXMKGQfpf4Shw1_WLk2i9IjKKAh4ntDzKmbLJ6s,1225
312
+ vellum/client/types/deployment_provider_payload_response.py,sha256=VIpzush2vTmhurLs9Jf16mo19je2WoKyLJxEHwVeKtk,782
312
313
  vellum/client/types/deployment_provider_payload_response_payload.py,sha256=xHLQnWFN0AZRZdrOiKawwpoKK7BTmnZfp0P7FCc2ZqE,188
313
- vellum/client/types/deployment_read.py,sha256=l6cy00p4y7JncJ-BwVl_NdCVWPNRjZqFz6DdL2vTTqY,1977
314
- vellum/client/types/deployment_release_tag_deployment_history_item.py,sha256=df4qKHT1f-z0jnRS4UmP8MQe6u3PwYej_d8KDF7EL88,631
315
- vellum/client/types/deployment_release_tag_read.py,sha256=dUrTOz9LH1gAvC_ktMB_7NztkeBnlNSX_9x15Ld3D3I,1278
316
- vellum/client/types/docker_service_token.py,sha256=T0icNHBKsIs6TrEiDRjckM_f37hcF1DMwEE8161tTvY,614
317
- vellum/client/types/document_chat_message_content.py,sha256=MiVYuMKtRUaT6_ve1MzihChb10SrOt_0VhpCB0x7hFQ,745
318
- vellum/client/types/document_chat_message_content_request.py,sha256=wMzj1SREQUeiSqZhOoLOOQzn6hmO_GDOMICDQ4fEXzs,774
319
- vellum/client/types/document_document_to_document_index.py,sha256=Yeb84grNv-T9nI2oFjMwioPHUEH2TLREaqhldWMYwhs,1609
320
- vellum/client/types/document_index_chunking.py,sha256=TU0Y7z0Xacm3dhzEDuDIG3ZKJCu3vNURRh3PqEd17mY,356
321
- vellum/client/types/document_index_chunking_request.py,sha256=g9BKCsHKg5kzjG7YYeMNQ_5R8TXLeSgumJlMXoSfBcs,435
322
- vellum/client/types/document_index_indexing_config.py,sha256=xL1pCzUOkw5sSie1OrBpasE3bVnv0UyZBn7uZztbhbs,781
323
- vellum/client/types/document_index_indexing_config_request.py,sha256=Wt-ys1o_acHNyLU0c1laG2PVT7rgCfwO54f5nudAxk4,832
324
- vellum/client/types/document_index_read.py,sha256=ePngiRszr65HLl9D0_FUdhAdMe84nRwyM3cKbr8rFpg,1177
314
+ vellum/client/types/deployment_read.py,sha256=CzudxnNjP2uoL3bZrJ0XwrMJzqOTkNJLbYl7hucnfy0,2063
315
+ vellum/client/types/deployment_release_tag_deployment_history_item.py,sha256=wVzgUnsa4Up9ReH_rP_l5ssfA0J1Nsfd4AN6lRsxhv4,595
316
+ vellum/client/types/deployment_release_tag_read.py,sha256=SV_kKYFIjhfD5CR9Ab35pdJpAJSx-7jhk2x_HUiz-Uk,1242
317
+ vellum/client/types/docker_service_token.py,sha256=rv0F19r2Sgba_Hbz757HFfTV8UioAQTV2xXkWxfn4sg,578
318
+ vellum/client/types/document_chat_message_content.py,sha256=pzedhUAhgcmI5jaZFHZB-Ei57f5oixCCneZYki90nGU,709
319
+ vellum/client/types/document_chat_message_content_request.py,sha256=S1Fb1ngDTbTfMR4z06YT9k5MQL83szNzV38BUxGhRqQ,738
320
+ vellum/client/types/document_document_to_document_index.py,sha256=MZbE3B7csVBY5kbTS7n0KsPId1wl6UbyYaqnZas77P8,1573
321
+ vellum/client/types/document_index_chunking.py,sha256=t2E_YIWb6HwabBulSFSZ6E606NESlwlDKESzH3xfo_Y,357
322
+ vellum/client/types/document_index_chunking_request.py,sha256=OJCsifMhT2CGsbuqGpRRiPbPQJ8PzM0IJOEfNc5_hv8,436
323
+ vellum/client/types/document_index_indexing_config.py,sha256=Mw7MBLLSMm9sAWzlyWORdHofOBaPdULHWjwxdrG10Vg,745
324
+ vellum/client/types/document_index_indexing_config_request.py,sha256=YG-TQ8KvNVd2MCgXOY7Bt7vmEgc1LM2YTTQJ2tybwOw,796
325
+ vellum/client/types/document_index_read.py,sha256=cNyxbLLfAghJnfWJ4PUkWCa_FJpVc6vbQHRcI8jNODc,1141
325
326
  vellum/client/types/document_processing_state.py,sha256=ISlurj7jQzwHzxPzDZTqeAIgSIIGMBBPgcOSoe04pTU,211
326
- vellum/client/types/document_prompt_block.py,sha256=sgFxN48PILFuuF2KUIwks6PbJ3XH6sCE_8ydLEE_doU,1019
327
- vellum/client/types/document_read.py,sha256=-KUCyU6OYiOG0QlDG3ci7J3MQGIoVza8U9sdakeiSWI,1853
327
+ vellum/client/types/document_prompt_block.py,sha256=CtADlAGRqIg7rU7hF8c6ehIKkJLODqLMI-KB24sbqDE,983
328
+ vellum/client/types/document_read.py,sha256=NiPtK2xzAobdM3mH0rdcgmY0B5tSacV1xQWDE1kCEiw,1817
328
329
  vellum/client/types/document_status.py,sha256=GD_TSoFmZUBJnPl-chAmaQFzQ2_TYO3PSqi3-9QfEHE,122
329
- vellum/client/types/document_vellum_value.py,sha256=a8WQhyntwy80iN9j8L9F5v6Jmq1L4j0ETJo9c9VGabs,768
330
- vellum/client/types/document_vellum_value_request.py,sha256=utpoRMMVhMIsa4S4ZOaOr2lX76BgrOVolPxCwy9-pUw,797
331
- vellum/client/types/enriched_normalized_completion.py,sha256=kdNabXh7azGZPGC4vdXLlXriH8L5sUmJ79uXYcJGh8o,1825
330
+ vellum/client/types/document_vellum_value.py,sha256=TqB3XNGNo98xFy5JBRc3I7NMjZEJuBmm_i5pKMsLVl0,732
331
+ vellum/client/types/document_vellum_value_request.py,sha256=ZeFAQR2apVFke_AZ0lFtffri0FvFsYMfAP8RlukVhP4,761
332
+ vellum/client/types/enriched_normalized_completion.py,sha256=KHsOEfuztrZWmxTJXz5wZqw4RGZSLlORm2iBLzVGYH8,1789
332
333
  vellum/client/types/entity_status.py,sha256=bY0jEpISwXqFnbWd3PSb3yXEr-ounPXlAO_fyvHV7l8,158
333
334
  vellum/client/types/entity_visibility.py,sha256=BX1KdYd7dirpv878XDDvtOHkMOqebM8-lkWmLyFLaw4,184
334
335
  vellum/client/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wBDGA,179
335
- vellum/client/types/ephemeral_prompt_cache_config.py,sha256=PK26yfHCLPAnXd89r8gz0rCD9hRR5pjKrE-o6-Mk-dI,712
336
+ vellum/client/types/ephemeral_prompt_cache_config.py,sha256=0dXcOiUFqfiByf_PhLNWXscb4TinQPepE1S5SRxg-2c,676
336
337
  vellum/client/types/ephemeral_prompt_cache_config_type_enum.py,sha256=houFyNbNr9r2uXTBoRTA0eZJaBDe0CFTIUbsDyWK2e4,145
337
- vellum/client/types/error_input.py,sha256=UiYDo7pxeCmW7REuk80ByzUp1hxEQwQCEA5isZc0ZUc,786
338
- vellum/client/types/error_vellum_value.py,sha256=Y7yO8Y1eOlbRyOqbOh6MyPRNHYKH48gIhlZIRcw1UaA,726
339
- vellum/client/types/error_vellum_value_request.py,sha256=o0aSn34dRcpnAwAfwW_sgwP7CkODGd5448w2Olg-spg,755
340
- vellum/client/types/execute_api_request_bearer_token.py,sha256=agAhp9lzfzZcYGZdzg2jHAEHCaHlqzbgp6qeeNebcto,183
338
+ vellum/client/types/error_input.py,sha256=L0b21Sa-hMCSGLbD99_oaGwsvhdJdtifEfKd-1uKn8U,750
339
+ vellum/client/types/error_vellum_value.py,sha256=5Q1iQJ3wfB-8KoARCK7FVLUxM4Upc9CFhOcKxJjgXLE,690
340
+ vellum/client/types/error_vellum_value_request.py,sha256=7E9ZGq5OOZLp3v-AUkyn8uXIYiz6MKUzJjfKoqvS_ws,719
341
+ vellum/client/types/execute_api_request_bearer_token.py,sha256=d2cP31_oLVIJ4Olm9wVbDMGfPVJoLgJgQTidJGyyJ7M,184
341
342
  vellum/client/types/execute_api_request_body.py,sha256=WySF2yj9rtx2vF4En0dfZkzPF2FNFtVRFW7P8Mw-hF8,217
342
- vellum/client/types/execute_api_request_headers_value.py,sha256=bHtGwOpknQDcQo6qtMKqJxaYpvbinDfwx2uaPzyuZ9s,184
343
- vellum/client/types/execute_api_response.py,sha256=LMnUlNFOSPrhuD4G3g0J_Y-c14R7gm0aVs7l6WYyNvk,867
343
+ vellum/client/types/execute_api_request_headers_value.py,sha256=W9Qrqzia725vZZ_cyTzuDMLvVQ5JNkq0GHhM-XewBGk,185
344
+ vellum/client/types/execute_api_response.py,sha256=n0Y-2DJ5azxZVx0VW5cV62e06j7dXfrI1IKINKLvyCw,831
344
345
  vellum/client/types/execute_api_response_json.py,sha256=80J1Du-JQGlVXIEECClC-IMYhTpcSTMtlYP_2Pq64kA,213
345
- vellum/client/types/execute_prompt_event.py,sha256=wq_TZBDJcmXQhSj25jR9nMTnN-mP8Ku5Vq3rLqmwE5Q,521
346
- vellum/client/types/execute_prompt_response.py,sha256=n6ODveXcO8uWG-kr_B9wXziHH8JUaVTUcUAZKifClEo,334
347
- vellum/client/types/execute_workflow_response.py,sha256=hZLm6vORhw3Yv3ziBsHjDDJrLVqH2d4q-FeOW0PHzWA,840
348
- vellum/client/types/execute_workflow_workflow_result_event.py,sha256=yLO-r6-lXGA86tonDGlWwuCI9VZEITTvEB9_yoV5308,435
349
- vellum/client/types/execution_array_vellum_value.py,sha256=U0b05uULtVUsnE4uWdMNr9FQgE_zO0nuYZXuJpA_y7M,938
350
- vellum/client/types/execution_chat_history_vellum_value.py,sha256=FBDP88wZKY9hz5h6cc8Z84fIgHritVZOybnE_tx5i3A,887
351
- vellum/client/types/execution_error_vellum_value.py,sha256=_1KRV9vG5x0wACKubh6O-uj9weKh3in8xvVVTATkN5w,850
352
- vellum/client/types/execution_function_call_vellum_value.py,sha256=3GmqmQOxYuVFqO3m58M3Bfp-zN9ENnbTzPRFryldIY8,883
353
- vellum/client/types/execution_json_vellum_value.py,sha256=oGY3CsJBKeOuEexmITfRYcidAn-F1t8o9WjUkOlWYBw,813
354
- vellum/client/types/execution_number_vellum_value.py,sha256=b2TpqyafRHCdl6EhgctNgUSLU-JBdouU6OgM8Jk_O78,809
355
- vellum/client/types/execution_search_results_vellum_value.py,sha256=HkxoXaUF6pMbfXd5wLk5VKmcXed2IRfEzkxsoGpwmg0,898
356
- vellum/client/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBggP7XkcdE_D2lGmEobkXWY7o,807
357
- vellum/client/types/execution_thinking_vellum_value.py,sha256=5WGuCVue3OMAdM881fDUFGjwOuWhImT6ALQq1qHyTks,866
358
- vellum/client/types/execution_vellum_value.py,sha256=gJ4UWA4KKzWGJZpEZGQV8Efqh27PmyWz6RZSsbtNux8,1088
359
- vellum/client/types/external_input_descriptor.py,sha256=ErOW2OfFMz1FDGmVY6NgiUBPsleaWhdJBekwFp4ru7o,805
360
- vellum/client/types/external_parent_context.py,sha256=LoHBtOzuUtgFpc9iIGNuXihYzsUPOk46IJiHzJ2azr4,1457
361
- vellum/client/types/external_test_case_execution.py,sha256=TkO1CQcEI8LA7sdYJfAqhbdkj27sXEkF8VL7zBeDBM4,877
362
- vellum/client/types/external_test_case_execution_request.py,sha256=xd80GZg4FbZP6FZRIhZL9V1uFetI3bcCj-wzanco5tQ,921
363
- vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py,sha256=XhNEBWd5qzFiXTestFPTusjxYfqW8j_kHBebCMfa58M,719
364
- vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.py,sha256=xC0-zak2HonnyyiooqXSWiQQyrQK6yf6BFogt_TzSCo,726
346
+ vellum/client/types/execute_prompt_event.py,sha256=iBM6GFu7vUuvRLt1lH858udx3CZzptj7Mhd5wLdBWVc,522
347
+ vellum/client/types/execute_prompt_response.py,sha256=Heec3Y6s0BlLNMpzW02X0Td_1brq3WTqOqgpkT1w-to,335
348
+ vellum/client/types/execute_workflow_response.py,sha256=feU2Ff3ZEVIboTkXgLQrb0QprPS3tM5ESHdNuAEXGrE,935
349
+ vellum/client/types/execute_workflow_workflow_result_event.py,sha256=A_4yaLJOe7NyCbhsGsuGC_7rX1J1wFh8-Ba5wgQCZTE,436
350
+ vellum/client/types/execution_array_vellum_value.py,sha256=HWZAwYhdY1dBVgb84AKeTsTsIVDOauZK1bmzAtZwOHY,1063
351
+ vellum/client/types/execution_chat_history_vellum_value.py,sha256=u-Ny3ID7wkYF6ns6xGBx2wXrp3-xn-nQ_qk_iOFBmD8,851
352
+ vellum/client/types/execution_error_vellum_value.py,sha256=0kt0h97KDc4STxF5G6VV5F-UPayZwTDmY5xjTQVRIco,814
353
+ vellum/client/types/execution_function_call_vellum_value.py,sha256=vxr0vL38om32URBec3oyu-YeFDonGWlPBHUwzYm3TSo,847
354
+ vellum/client/types/execution_json_vellum_value.py,sha256=67GIAeDidKGN4yh34lEqHcn0zuS8iF8DRnkI-MnAogQ,777
355
+ vellum/client/types/execution_number_vellum_value.py,sha256=MYZAbUBb2yogSEIy-DBjX-zdL-_6_IpJ44Ii7d3SblQ,773
356
+ vellum/client/types/execution_search_results_vellum_value.py,sha256=rdhnbg20rPaQRY6_al5x55nrIehKLg4zKf3B2GWEZRo,862
357
+ vellum/client/types/execution_string_vellum_value.py,sha256=TePjZ_TwFFh1yhpu9FflWoScUH7-1T_3KkOW5SusRBk,771
358
+ vellum/client/types/execution_thinking_vellum_value.py,sha256=SLlNVncFF_jieepHyiwXnYhJDIOwudZE0Opc1hQztYo,830
359
+ vellum/client/types/execution_vellum_value.py,sha256=zYw2Iw93H_Xoe6ZgpuxYsZwHQlx0AxZ4-b9MGUOASlM,1089
360
+ vellum/client/types/external_input_descriptor.py,sha256=nT7fF1LN7MLuJ9BF60tXTPN-Re2DIygOEA5avLKV7Mw,769
361
+ vellum/client/types/external_parent_context.py,sha256=rmv3Tojb-cGj-nR_PiR_jIbexgQkWr51Oh1Ag3IMtTE,1481
362
+ vellum/client/types/external_test_case_execution.py,sha256=C6Wf22sVXASR5pS-ZfYBngzDYJr4eAtDE6ONEW56OqQ,974
363
+ vellum/client/types/external_test_case_execution_request.py,sha256=NaoWvB9G1zzzORZb8Lpiy9U6zkYtGUfcHmsJBLhRQ5Q,1025
364
+ vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py,sha256=9X2mLej880ROWjrEzF-LUYaMAERMi0B_Omg34-ghARM,683
365
+ vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.py,sha256=Ka3-YZaL-ZdKBLAwUzZYl2bGmsrnzDBFu7LRP9SCadc,690
365
366
  vellum/client/types/finish_reason_enum.py,sha256=KoNjzvXMHDCT0AUhhwGoZ1_7bi4h3fZEFvvHyGyoTP8,169
366
- vellum/client/types/folder_entity.py,sha256=L9WTL2oRe39aYes4BS9PdUX_X_cwl3LvqCmBI4UpGd0,658
367
- vellum/client/types/folder_entity_dataset.py,sha256=ipe65L7OFDjSYaJ7j4Yfrqse0dPJTYj7w7BKo6P2oP8,793
368
- vellum/client/types/folder_entity_dataset_data.py,sha256=vsxpNGqhwe_1Fzo5UnoJAy9cViqh5MgBBDzaLVGHrgQ,711
369
- vellum/client/types/folder_entity_document_index.py,sha256=-Tg2qnzGhp2FLnvGrgoVr0ZBEKFmm2TjgYvlII8tkog,839
370
- vellum/client/types/folder_entity_document_index_data.py,sha256=1mQxkj4TlbKyGpqMY_aPgWyDFTN6YW9VfszROU1cmM4,844
371
- vellum/client/types/folder_entity_folder.py,sha256=1GWfyHdenyAI2GXiouIbnFhPK4ADqZGFh-6fpp_C6-U,792
372
- vellum/client/types/folder_entity_folder_data.py,sha256=JLYkhvRY63-ojNY84lfRTaUg25KjslSE-iNAC2NYCTI,674
373
- vellum/client/types/folder_entity_prompt_sandbox.py,sha256=7CGVcK5maoqO7CC7sFfi6F5X0QWdHVbEygqLyci_VDY,839
374
- vellum/client/types/folder_entity_prompt_sandbox_data.py,sha256=LMTtOshCdp0MpYHdKtrtBSdpXw9B9id5BfIpkg9SsY4,826
375
- vellum/client/types/folder_entity_test_suite.py,sha256=M5sb7ntUX2VsCyD0AYnz7dalt7G1ejOYQZvsUU33q2w,811
376
- vellum/client/types/folder_entity_test_suite_data.py,sha256=RGITy3Pip6NeIb77YGavDWgRr8GLFDB9sXrTU_Dm2OI,719
377
- vellum/client/types/folder_entity_workflow_sandbox.py,sha256=gFmkwKZGh5O9-9y4w6VGK1IRsKLf7NZ4SCC-pgucm8M,853
378
- vellum/client/types/folder_entity_workflow_sandbox_data.py,sha256=4_kzQSDrFXVJCSF1st73jo0LxKOicn_gE82XAk-QKJI,828
379
- vellum/client/types/fulfilled_ad_hoc_execute_prompt_event.py,sha256=19rFjVrzobaaAQhZlP_WGV9f_Rwrz4EPRXbT2aYkaJw,1016
380
- vellum/client/types/fulfilled_execute_prompt_event.py,sha256=E-iBwlMWvwQyRfzqPlgtX8KurE3IYsTRd5vWjXtbOmk,994
381
- vellum/client/types/fulfilled_execute_prompt_response.py,sha256=nKhDk2ZloCuE0uijX5XOE63_cq8PBo4UWs4hK4e3jUE,1227
382
- vellum/client/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=eu2ebge3Gt3JalyRjenVL-ElwoS0D1fYqTddKa7dZ8k,919
383
- vellum/client/types/fulfilled_prompt_execution_meta.py,sha256=yUn1X3zqfvh60U6Kd3Z9YUxcNU0LyjfLPMKbwLTo7AU,999
384
- vellum/client/types/fulfilled_workflow_node_result_event.py,sha256=imE258r3E99ba_ITbsw8p-GNhPwwtGZToQyDtE7IAEo,1203
385
- vellum/client/types/function_call.py,sha256=3f19emMu06jHo3DlO4pQb_bC7NjKCLjWdLq3gndiCqg,713
386
- vellum/client/types/function_call_chat_message_content.py,sha256=qXbrMQeXn_CLjfDzQvv9llmae2wvpoTlUSQWdfMvf-k,831
387
- vellum/client/types/function_call_chat_message_content_request.py,sha256=HVGxHs6jc4EBgW7rdJXlF8KRlugY5YHa0ujDrEQqPCo,860
388
- vellum/client/types/function_call_chat_message_content_value.py,sha256=DHRZYAMc4Y5MerUS_6CIxQBtORftKn-gBx8Skgivm_A,736
389
- vellum/client/types/function_call_chat_message_content_value_request.py,sha256=67EZ3qSR9zO5akOgloswRE0Pv8BcjtWhdTRJIwuQU04,743
390
- vellum/client/types/function_call_input.py,sha256=Iiqk2-IX6xUI2UnRj3bum5C0OlQn9jRmBwatUzJQQt8,820
391
- vellum/client/types/function_call_prompt_block.py,sha256=TFs-XtVM7F-Mg-KwVctOyOcSloVI1vIfsMEeEeLuu7Y,1052
392
- vellum/client/types/function_call_request.py,sha256=udGEdk66q1zTpEFE2xq-cu6w_ahMpfQv_9lIey9x1G0,720
393
- vellum/client/types/function_call_vellum_value.py,sha256=lLJb-S_-S_UXm6una1BMyCbqLpMhbbMcaVIYNO45h5o,759
394
- vellum/client/types/function_call_vellum_value_request.py,sha256=oUteuCfWcj7UJbSE_Vywmmva9kyTaeL9iv5WJHabDVs,788
395
- vellum/client/types/function_definition.py,sha256=UzlrrBtdWe7RMStfc1UVdcnr4s8N4mOhsM306p6x_CE,1693
396
- vellum/client/types/generate_options_request.py,sha256=MGoX4EemN7ZVy-cTAcOQ_VuVibSzY_Rix3Ltp5aqSlo,782
397
- vellum/client/types/generate_request.py,sha256=gL6ywAJe6YCJ5oKbtYwL2H_TMdC_6PJZAI7-P3UOF3I,1286
398
- vellum/client/types/generate_response.py,sha256=QjbBGFGRE1tHcyDodM6Avzq0YHI4gsprkAWpdqZRrh4,1135
399
- vellum/client/types/generate_result.py,sha256=gh3cLPIFv2Jx4ZLx4ZY7s1iOzAjoA0Saj7cXMdp4v-A,1094
400
- vellum/client/types/generate_result_data.py,sha256=iYqsDb1Bz38mxocZK1_caBYSpGfRklEDukQd1k3bSOI,790
401
- vellum/client/types/generate_result_error.py,sha256=GRk7lWoWxbPi-ikLRNZ9BnhXutTUdHfBAmlkIAABz7U,652
402
- vellum/client/types/generate_stream_response.py,sha256=IPwhHPN9KYQXV9Ow8uXnDIAL0QUf4R6J9wZOQht4Gy8,640
403
- vellum/client/types/generate_stream_result.py,sha256=d661Ptq-XDyoKGYYUgs7htUkuRocQ9GDaV9ePbAxdoc,807
404
- vellum/client/types/generate_stream_result_data.py,sha256=-wzHLPkJrCNL_7vQuX-nZKi3wKxJ8v1j8DRzLmagVNU,697
405
- vellum/client/types/google_vertex_ai_vectorizer_config.py,sha256=okGOJl721ONG1_aq1cphZ23WAJfi0FwLdwEoiuMMJP4,595
406
- vellum/client/types/google_vertex_ai_vectorizer_config_request.py,sha256=0SnNAz4PAgzCjB_BChH1AYwwkOXbW9ed1EO2KXuDwCo,602
407
- vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001.py,sha256=c1Q6yELRJ1VRFHZyNq2pqzIipVWb4LgBkBe8FcMsAzs,773
408
- vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py,sha256=Q7rp83x7EVn_d3Bw5rzRGt0yl_dX0bCRqxw_vrZh7xw,802
409
- vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004.py,sha256=V2owWci9ffII48PKfqOalDSliBA1JLholvPQYhknJ9o,767
410
- vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004_request.py,sha256=L_3gq3pe8JKvGg9ufsrhvHekQAveyzD9uzoxl2arwkE,796
411
- vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py,sha256=MoukrZZsuDVze43vuS5bEYygI6Jpok5QJTYPjHEz0tg,805
412
- vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py,sha256=Z6FliV8Efl9h-9L7kicfDlztu3utQPnRR5qXDVlx8C4,834
413
- vellum/client/types/hkunlp_instructor_xl_vectorizer.py,sha256=0wDZyilAQD3SQYIOBxfzBRxtt7wR4vVRIdcdb8cbnaA,803
414
- vellum/client/types/hkunlp_instructor_xl_vectorizer_request.py,sha256=Mtg_hl-IIfa134LWBonkxOQ1dhjXkGkz7maDZ57o_d4,832
415
- vellum/client/types/image_chat_message_content.py,sha256=1jHmNuLY2kuuSgJCqNmc4wUMw5aot6GLU6_hQ_99r2g,725
416
- vellum/client/types/image_chat_message_content_request.py,sha256=b0K1NnY-NneG_V3JAnyr4H2jrPGOC1OQ-OcCmS1GCvE,754
417
- vellum/client/types/image_prompt_block.py,sha256=JIcfWZAWYcOm04Y6XjmxPG58SaoXwIjuZwnVypEVahU,1008
418
- vellum/client/types/image_vellum_value.py,sha256=69XnqE9m-bd3dOdMD73WtfDm_kDrVg-y3fi35akuqsk,748
419
- vellum/client/types/image_vellum_value_request.py,sha256=-Q66T8M6fAf9K_v0LeRwZjB_6pkBUSyMUQc6plRRK5E,777
420
- vellum/client/types/indexing_config_vectorizer.py,sha256=d9HrryJRZR74y86oez9_yVn5HIFHD0UDQngsHvxGrro,1826
421
- vellum/client/types/indexing_config_vectorizer_request.py,sha256=uCl_42CcthsZ26iIP4LpWRRrUXUttDIp67kbhmzJfPY,2075
367
+ vellum/client/types/folder_entity.py,sha256=cODJiRWO2JgH6yxpGezpUeRDY32gvhqHlC9pUe1BFwY,659
368
+ vellum/client/types/folder_entity_dataset.py,sha256=nJDIWJgSRx4YWwyhYxVneX65GLD8_Dz3J_yHxkEfRHc,757
369
+ vellum/client/types/folder_entity_dataset_data.py,sha256=cIiNG-nsqZDFflSS03Osc9mi2cKs8X-O8h2qGgmc0No,675
370
+ vellum/client/types/folder_entity_document_index.py,sha256=zMkh-0WDCrSkqm_uN8DVtgHPftQRxTxu4K8z6Cei_tw,803
371
+ vellum/client/types/folder_entity_document_index_data.py,sha256=fTFhW3J3Mb9jeubpydRtYMnakuypVl8uGBUrmhuS5k0,808
372
+ vellum/client/types/folder_entity_folder.py,sha256=TCUKI_tuMV-kdFHupRXOKjj15YTur7X_lKkI6sNPRm4,756
373
+ vellum/client/types/folder_entity_folder_data.py,sha256=0oojAz4hZs6k-vpSlT8XzKoSUKbAZhdne1_ApRkVYDw,638
374
+ vellum/client/types/folder_entity_prompt_sandbox.py,sha256=BYaMxpLvDQ-P0Rr2XMPNjpUSeh_SZpDtnR7SmNslSAM,803
375
+ vellum/client/types/folder_entity_prompt_sandbox_data.py,sha256=k_pZCYt0hI6ABDkPWSM3pby2hVCz20Aoq-S6Db-SR-U,790
376
+ vellum/client/types/folder_entity_test_suite.py,sha256=z0OjJs6MG9EFZYtiFt6k6ggehGtQZ2fyLczWIsb4ae8,775
377
+ vellum/client/types/folder_entity_test_suite_data.py,sha256=Zh87sDgA8XPGXx_LV8M5Kf-9PG5oukpPvwYyrtiLkeA,683
378
+ vellum/client/types/folder_entity_workflow_sandbox.py,sha256=4cnY6wzLV_mrAqmfnvubKaaac-sFe2ju6q28uPvaGEY,817
379
+ vellum/client/types/folder_entity_workflow_sandbox_data.py,sha256=YSvzVmfIbfh59KSHsBNt24JUsRRxSyvvO5k0sy4nXiA,792
380
+ vellum/client/types/fulfilled_ad_hoc_execute_prompt_event.py,sha256=WT_zJx5tolrBWsvSbcMLRBLvrCAZ8QYSpp0hQ3WmEcQ,980
381
+ vellum/client/types/fulfilled_execute_prompt_event.py,sha256=l559OKxr9ALZ76FeK8l0ydqjRTGGe59yTXfvlFYyN7E,958
382
+ vellum/client/types/fulfilled_execute_prompt_response.py,sha256=BNPm6L-7QrH1F5hq_wLi8TYb8gcfDibPzTKA5sq3e_k,1191
383
+ vellum/client/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=y1l-UPJp_4-uA0RYjW-A1HgwFdSCxgs5z7tB6cRw5nw,1034
384
+ vellum/client/types/fulfilled_prompt_execution_meta.py,sha256=hsyOLhljW3ETowmUjD4GLeZ59rKJSoh3shemPg_cmiI,963
385
+ vellum/client/types/fulfilled_workflow_node_result_event.py,sha256=eCSdIp-tM_vK5T1LZkBSTTDOrOA8KE_hjcYj6FrgVsc,1307
386
+ vellum/client/types/function_call.py,sha256=WsvQ20GaMzUBY9mQuIW1rUNUAdCFmZkr0G1I8fnKZ_k,677
387
+ vellum/client/types/function_call_chat_message_content.py,sha256=9Jj1cmyYuydFTJK5EvgSXb27V14F8FwBdbR7-tp1hs8,795
388
+ vellum/client/types/function_call_chat_message_content_request.py,sha256=C1t9zs1RMYEuri3u8p4azewCjApqXWgHiCIdeTUCSLM,824
389
+ vellum/client/types/function_call_chat_message_content_value.py,sha256=5AFvWxfsTkzSnok21J-3t_2Lg_RUanfNT_RLZ_jHPCE,700
390
+ vellum/client/types/function_call_chat_message_content_value_request.py,sha256=0V_23Jzz0TjGtVDlly0K7JUqmJIqx0dZtPPYLc1tUgc,707
391
+ vellum/client/types/function_call_input.py,sha256=IQ0Cacq_7qwzGEemz98my9MsgnGMLUL278jgMVAa4CM,784
392
+ vellum/client/types/function_call_prompt_block.py,sha256=YcuS0ndY-avXWIcG5UE9mNaS_BD5Iy24ZTKEsPHGeFQ,1016
393
+ vellum/client/types/function_call_request.py,sha256=5nPW3gx-l9UN-9puJuDaEZKIkUJUd0glcRLaF0j1x_k,684
394
+ vellum/client/types/function_call_vellum_value.py,sha256=ITXP69WEE3yELyDylbpmLgIxnh4FWdNI14KkIX8boKA,723
395
+ vellum/client/types/function_call_vellum_value_request.py,sha256=9Xz4AZDQhtrUCICXdlq0IS9hpFr0bFHE6haf3g3Bn9c,752
396
+ vellum/client/types/function_definition.py,sha256=cdDwCBQcW5iXgHF7ZBRsLYEitx7oyDLNEwV2CVSWDZA,1657
397
+ vellum/client/types/generate_options_request.py,sha256=2ZXU_zNraXRqcUwky8GqDAnhR10qb2NmcrIUaBFeF6w,746
398
+ vellum/client/types/generate_request.py,sha256=R_l2CmLeEF-GVIZHyV93Cbt6BBh2WklTslsyNbI3Vfo,1250
399
+ vellum/client/types/generate_response.py,sha256=_7F1PqE1aQLIBYqKLgw3UDQx7etR15sZgW-VzHfaaWA,1099
400
+ vellum/client/types/generate_result.py,sha256=BvCjFiUBNm43ZyQZkfoCCnb-RS5qx6NlNYRqZf9QvTI,1058
401
+ vellum/client/types/generate_result_data.py,sha256=SEh-Umde_IMhiIzrLnujc1_ByjShh7S09iVWu7bRr_k,754
402
+ vellum/client/types/generate_result_error.py,sha256=tWKni4GcvaJ9Pkejd-XYkSe4Ak4-28y3dv3JLAIXLE8,616
403
+ vellum/client/types/generate_stream_response.py,sha256=a0FnT7kaNz2EU64tDxaP1pWhpTPfUftIr2cgzYKTUpk,604
404
+ vellum/client/types/generate_stream_result.py,sha256=1bNVKmHnHVTwsXcMbP1oErBWVudBCw2I3hLE_cU09Yc,771
405
+ vellum/client/types/generate_stream_result_data.py,sha256=8-b8plL7lHACmnFGU8cxory1g5NsUXaunW_-maZD5hU,661
406
+ vellum/client/types/google_vertex_ai_vectorizer_config.py,sha256=BHIsi9qqpv9gjrs8VGDXA-AeDj-92zkMD4uwqsA-nuE,559
407
+ vellum/client/types/google_vertex_ai_vectorizer_config_request.py,sha256=fMz4GJSOugHIwUsfbmkFSPOzah0oQNyX4wZFS-8T4Ww,566
408
+ vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001.py,sha256=atUgrckocmQPh4peRiCuOkgv7BVDppHCI_WEP5WStYU,737
409
+ vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py,sha256=ElyYBMt7HlA5HgHEM9lUZT7j3kV-rb-AO-wJiP0zQQQ,766
410
+ vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004.py,sha256=-nszVYZFWmQ45_y8pfb6T32VB-Zz8HKEjS8ivXGZRW4,731
411
+ vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004_request.py,sha256=ZO9xPzJyPJBYrfTqA6AZYwIdkzlSoNxZ1bTiw4L6RTE,760
412
+ vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py,sha256=ONbeEUeMAPveJWU-VnHRnFWub0XeCH3xFBqLZ6B3FFk,769
413
+ vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py,sha256=kIbxzvdASycagIqaUFjGBREx8c1A0g7-Cai2AWhTntA,798
414
+ vellum/client/types/hkunlp_instructor_xl_vectorizer.py,sha256=Q0vLuo1su4yA3DKBPLP0xQq5KyzDIcVShcN3Te38na0,767
415
+ vellum/client/types/hkunlp_instructor_xl_vectorizer_request.py,sha256=EVMF5wNLU26WxcEGNc8W9hbdWEZaJnf19HBBblS2zGg,796
416
+ vellum/client/types/image_chat_message_content.py,sha256=UNnVmAleVCMIyUJcg_TBNd1gCcO7Jx9i6mwMKk_HY9Y,689
417
+ vellum/client/types/image_chat_message_content_request.py,sha256=EOZ9FtdNnggjYwgH5Wo7FBfZGTBCNlDLD1okDUDgzx4,718
418
+ vellum/client/types/image_prompt_block.py,sha256=5VUNnsbmvK3RkWFq5PFq6_SleHR4XyHYFzKWBgpmwJ0,972
419
+ vellum/client/types/image_vellum_value.py,sha256=aYtApnz5PeTYia0Mwmxi3LQ2F6KAoy3vDYzovzaEqzs,712
420
+ vellum/client/types/image_vellum_value_request.py,sha256=1y5MyppljIcx748SLcC6N84RPNS2nGPdueuLZNrekxk,741
421
+ vellum/client/types/indexing_config_vectorizer.py,sha256=nTHf22XEYxZpjzZg29IR2ow4r6zpgJqW1UiY6Ht-T8U,1827
422
+ vellum/client/types/indexing_config_vectorizer_request.py,sha256=-ofzJtUpBZ1uykyE_io1wXtMwQdmVbDXJ0EfyD21S3s,2076
422
423
  vellum/client/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwFYiel1U,213
423
- vellum/client/types/initiated_ad_hoc_execute_prompt_event.py,sha256=B34Q2aU2vj9qpjpWXIieN839iB7t4EWCD9mmCfbkwpo,915
424
- vellum/client/types/initiated_execute_prompt_event.py,sha256=tHt80ZIuKk6B85IQqSF3MQqiSSiBsSP2Aw3XuD5xk6E,893
425
- vellum/client/types/initiated_prompt_execution_meta.py,sha256=pnRjcPnVRp650k0W7kfwg9f24S4vAJfQoGGdBs_aKlc,887
426
- vellum/client/types/initiated_workflow_node_result_event.py,sha256=7TPoilVfKhL8iw7GkxuYyF4WqpJpu_xhNd8qZLpAbW4,1207
427
- vellum/client/types/instructor_vectorizer_config.py,sha256=7udlosXv4CUWTW_Q9m0mz3VRi1FKSbBhDIOhtxRd0-U,731
428
- vellum/client/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqEMVdr3KJHEps0oDp2bNmqWbM,738
429
- vellum/client/types/invoked_port.py,sha256=N1O7b1HyBGhkUdcAbKdEWlzVE-UPA14B762cNGU5qhA,554
424
+ vellum/client/types/initiated_ad_hoc_execute_prompt_event.py,sha256=S2pwVWNs0sJKNfCLPd3N0xlYw1Tl67Js1waB5hSML5E,879
425
+ vellum/client/types/initiated_execute_prompt_event.py,sha256=yrNgIGqJEfe2cxoE-3zIOFa6j976Qo2Hcbm-vU6wogs,857
426
+ vellum/client/types/initiated_prompt_execution_meta.py,sha256=5sbNQJdyjkHZvkt2Eu0U7X_QB4VlLQKfTnP9AImNwJM,851
427
+ vellum/client/types/initiated_workflow_node_result_event.py,sha256=bANCbRTVoklNXjs3-nwGA5G_TK1j0FaqdrVHonl5ZLA,1311
428
+ vellum/client/types/instructor_vectorizer_config.py,sha256=5weLeldZKmA9cWf3Xcoe_Zn9_M9jSlWvxVj9Ml3GgcM,695
429
+ vellum/client/types/instructor_vectorizer_config_request.py,sha256=B5Wy5FI8utwi4sIvwFTK0evd78pbM9ic9jO6pBM2dFw,702
430
+ vellum/client/types/invoked_port.py,sha256=nw2k-y7NrpcH6T1V96U3F8_pbrsceqBPIz3RQXN8gJY,518
430
431
  vellum/client/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
431
- vellum/client/types/jinja_prompt_block.py,sha256=-wukO4TaDvGlrbkg9ZtDOPEfoLmaoX7830ktLGHRrvI,939
432
- vellum/client/types/json_input.py,sha256=ZUA2O9YueBCx0IMMdB8uYNSWJiSDZxMm5ogwbwCmz_g,761
433
- vellum/client/types/json_input_request.py,sha256=x5sA-VXxF4QH-98xRcIKPZhsMVbnJNUQofiUQqyfGk4,768
434
- vellum/client/types/json_vellum_value.py,sha256=8irlw6NkRRVafysfTc1Q5BFFhRrWJYzdwrDYTdJK4JY,689
435
- vellum/client/types/json_vellum_value_request.py,sha256=IUlkdwFGgBeLl9sCmAJhoaxomWiEMpWgRcLa_WnlK8g,696
432
+ vellum/client/types/jinja_prompt_block.py,sha256=IRWwjk9sGoF49bycXzWP_XYo8fksglZ0hu5geCTystM,903
433
+ vellum/client/types/json_input.py,sha256=vF9bbntErx0IwVGB0OqrYooPU7A9wxaHap_CZR_AWw8,725
434
+ vellum/client/types/json_input_request.py,sha256=TAXQypA_hkTgjnGdojm56TjvsOXd0-uVB6TzcLCioEA,732
435
+ vellum/client/types/json_vellum_value.py,sha256=v01fKiC-U9asT0GV4iorxWIXoPnG-3Do5hiJOaRO4go,653
436
+ vellum/client/types/json_vellum_value_request.py,sha256=UqBCzov-GCNhgS8aJRUB2baLISdSX2T2EYDN0PWarJ0,660
436
437
  vellum/client/types/logical_operator.py,sha256=mfRXK3dWLcqt2tHTgNXynEXdMDh32yI4MUade3smI7Q,636
437
438
  vellum/client/types/logprobs_enum.py,sha256=D_458cZX2CAb6dX_ovrQ6HARlJkYcZRadKwsi1Cr-JM,151
438
- vellum/client/types/map_node_result.py,sha256=e2YqEP-aKig2TbbZIlfn5LCeVEVhEJJBR7o7xTBKXaY,752
439
- vellum/client/types/map_node_result_data.py,sha256=3xJXC1JrS9lo3-3_u1S79sYwLxMknNntDyspN24vQzY,699
440
- vellum/client/types/merge_node_result.py,sha256=h8iEDQgiEjVASom_lAyIi9iErh9rU0_Am7awyzIarnc,742
441
- vellum/client/types/merge_node_result_data.py,sha256=BM3bmwFhTDiY5HchT-5uRl0o6qmJ5KH-NHRb9huGRoA,640
442
- vellum/client/types/metadata_filter_config_request.py,sha256=q9rruA04YvsdugiU8YQnlzZSU6HMPvlSU-vmkiPfQjE,1166
439
+ vellum/client/types/map_node_result.py,sha256=5v8rzWo6x7QLFyooHieauuRmBU_N91V5uHAvTHTNc6Q,716
440
+ vellum/client/types/map_node_result_data.py,sha256=UlboKx1e5onq_4hTJhN80GZd8V2pkOx_uHjTsQQsOgk,663
441
+ vellum/client/types/merge_node_result.py,sha256=EZRsrPJ24Ka8a0X51Mz1aPZEaIasU8pWcPaQ-eBms5Y,706
442
+ vellum/client/types/merge_node_result_data.py,sha256=VE8D2yDDrnhOYc5OW--A6aOuCUdabIha1QfCcFMT6Vg,604
443
+ vellum/client/types/metadata_filter_config_request.py,sha256=2TVv124Vd6wguFxpmnIobq9X2CEyd-l1JJjg6ITM9JY,1267
443
444
  vellum/client/types/metadata_filter_rule_combinator.py,sha256=3Vpp1Mnv3As7efkxWTeV8qd4gdJ6OLoLhz_UeVBHAX8,165
444
- vellum/client/types/metadata_filter_rule_request.py,sha256=Pcs0TsU7CRnsEUoH0DWb-c9DTP2UW67lJKXlsTLXV48,1135
445
- vellum/client/types/metadata_filters_request.py,sha256=Yaiu7rkcrV2bCFk6HrZSjuF6V-6JYjZTpzxv7_MFe70,345
445
+ vellum/client/types/metadata_filter_rule_request.py,sha256=8VAkuZ6lsoEkH3agWbIKqydVh99Xz5hiGulnHFFi5xQ,1063
446
+ vellum/client/types/metadata_filters_request.py,sha256=o6r6fmRVr4PBI3wh25hkb0U1ObV0Q5-xIsbbjWktu_w,346
446
447
  vellum/client/types/method_enum.py,sha256=PekC3BhlCbdqKHL-M8aMG7zEsHFOY9jrANNxysaKa5g,175
447
- vellum/client/types/metric_definition_execution.py,sha256=nOAm3wj2BWOKEWSzP4qaHEKRT2f6sK6BVV-yly-Qm78,721
448
- vellum/client/types/metric_definition_history_item.py,sha256=gMNSslNDYyVjqXLbMepoZ1Xko5nedskb-7TaOB3I6JQ,993
449
- vellum/client/types/metric_definition_input.py,sha256=4nmwpPqbeNQYCzLkXCkc-FGV5K2Zfa22xqSUe_L6o5s,331
450
- vellum/client/types/metric_node_result.py,sha256=YdKq1DZiBD1RBtjyMejImylv3BqrwY8B_UF4Ij-6_64,660
451
- vellum/client/types/ml_model_read.py,sha256=Vr5KjaS2Tca0GXsltfSYQpuyGYpgIahPEFfS6HfFGSo,706
452
- vellum/client/types/ml_model_usage.py,sha256=WcZ2F1hfxyTwe-spOVwv-qJYDjs4hf9sn7BF2abawPo,910
453
- vellum/client/types/ml_model_usage_wrapper.py,sha256=Vi7urVmTn1E_aZV6TxnW-qjDayRv7A_6JDk84KqAIa0,645
454
- vellum/client/types/named_scenario_input_chat_history_variable_value_request.py,sha256=aVZmAxu-47c34NyhSkfi9tQqIPy29cdJ7Pb4MIgKeNw,862
455
- vellum/client/types/named_scenario_input_json_variable_value_request.py,sha256=UgnKv70zFviv1kl4nM7aM7IFA-7xyDOtglW4Y3GBZ28,757
456
- vellum/client/types/named_scenario_input_request.py,sha256=Pi8l377OHvKBwvPu9slZ1omf_NJ9S1mCQ5Wr-Ux5KVg,611
457
- vellum/client/types/named_scenario_input_string_variable_value_request.py,sha256=4P5YjzR0Cwsnf4ir2MFX0Bs0Q3eMe_7uWVhxL1ajlVg,758
458
- vellum/client/types/named_test_case_array_variable_value.py,sha256=aJ5rd5lnIowmjloVO3grCqBIqPONEwyqMkdbAxaESe0,830
459
- vellum/client/types/named_test_case_array_variable_value_request.py,sha256=d4Q6Zn9Ld0I56VVtczNiH5TmhXdGgZwE6KiXtLvOyUY,874
460
- vellum/client/types/named_test_case_chat_history_variable_value.py,sha256=tRN-8jKDeth_VIeWIYzSAcZIT-PeKKAUBjsUB3JbUjo,808
461
- vellum/client/types/named_test_case_chat_history_variable_value_request.py,sha256=e4yLVJJnWyba3Yl_IJ4jJMfDdK1zxj19OuwirVBloSw,837
462
- vellum/client/types/named_test_case_error_variable_value.py,sha256=lEw5i9J4JK0LwSqtnefgxZ9Y9KUdy_omKUZe_goRmNo,768
463
- vellum/client/types/named_test_case_error_variable_value_request.py,sha256=XilprgId1FVJpLQGZerWPo21rPx1TGf_YHONqmahHVk,797
464
- vellum/client/types/named_test_case_function_call_variable_value.py,sha256=hSTsOyoSPpdoWpblh-7i-Gdu5VGrefl6d0QQvkdkmnA,802
465
- vellum/client/types/named_test_case_function_call_variable_value_request.py,sha256=MNGxavL6FTToJTqo8CLBM_RnXAq_mAtQmHi9dY9364U,831
466
- vellum/client/types/named_test_case_json_variable_value.py,sha256=bLLVCMhHQaauK4AFw7wvz5xb9hWgVqMJRt2Wwk85MGs,725
467
- vellum/client/types/named_test_case_json_variable_value_request.py,sha256=aFZXS5i5ykwomD4qcTc5hypEppR60ftJFI78dJUbzxU,732
468
- vellum/client/types/named_test_case_number_variable_value.py,sha256=FFN5WVs1TGe2aQI0U6qvWwWqVp83heSiyXi7GwtIaL8,728
469
- vellum/client/types/named_test_case_number_variable_value_request.py,sha256=dHg-0I57CthxERqcxFW5QPugFMXqq9egVgCu_MaKrY4,735
470
- vellum/client/types/named_test_case_search_results_variable_value.py,sha256=N4I2Pu1Qh8S92SE8AmZrKDkdJS_bbhGoSOQi69uqOqQ,819
471
- vellum/client/types/named_test_case_search_results_variable_value_request.py,sha256=dT2MAD4l7Kks6BwUhyKdbjdiaXRTCfQntOiK4X6txvQ,848
472
- vellum/client/types/named_test_case_string_variable_value.py,sha256=2xuTh35MarcDMMCy6pxpIoBRQddgKoD67eTgk6SdpFo,726
473
- vellum/client/types/named_test_case_string_variable_value_request.py,sha256=Bv7LEBEyDHtBPPWdzgvCA8DHG6n1jF4NVlEe6zYPJUs,733
474
- vellum/client/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
475
- vellum/client/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
448
+ vellum/client/types/metric_definition_execution.py,sha256=wNWz0llRBR7lDOPNVaULelPRqSr21hS3XoNEskvozUQ,818
449
+ vellum/client/types/metric_definition_history_item.py,sha256=W3IcHzYL0EeCGxqIM6Z8CdDKUfxUORGnX_hXCfq1q3I,1092
450
+ vellum/client/types/metric_definition_input.py,sha256=aRrGEP2zyfmm3gPc4H-iqZ75yxiZl2cTRbQ7owLmQZk,332
451
+ vellum/client/types/metric_node_result.py,sha256=1637n2udE0cG01uaGejYMsnIdJHXKXjSo70tkRS1tL0,624
452
+ vellum/client/types/ml_model_read.py,sha256=9QdXIxWpOcn48bNQzd77DNg_CMHuptxRFDfHokftwv0,724
453
+ vellum/client/types/ml_model_usage.py,sha256=hZw6f_bmTvNQK50y05zGSD4pJfw9ZDQxLRQqg3Mk1go,874
454
+ vellum/client/types/ml_model_usage_wrapper.py,sha256=aafKx4CSjLfr0IqgyVWsl_G0RJUu4ekb9H6H3FlFYss,609
455
+ vellum/client/types/named_scenario_input_chat_history_variable_value_request.py,sha256=4-zKdO_HkkyX08ACwZe5JkBnvY7VjlJlBJJ2HKG16Tk,826
456
+ vellum/client/types/named_scenario_input_json_variable_value_request.py,sha256=WEiJv5k2jCpnLsNK-FxBkkOam-Djjtej1WK4hJkyGw8,721
457
+ vellum/client/types/named_scenario_input_request.py,sha256=hBvFGUqOODC_Pl_Hds5O62WmrNLrBGD6T7iVOCl2emE,612
458
+ vellum/client/types/named_scenario_input_string_variable_value_request.py,sha256=PrDioH9GtwoyeukCaU1niVD8QfjobS7MRU5g6gmX0FA,722
459
+ vellum/client/types/named_test_case_array_variable_value.py,sha256=cV_1PW-I1FGuNQewPgYTD_5khsPFIbOufgsXp5H_tSA,961
460
+ vellum/client/types/named_test_case_array_variable_value_request.py,sha256=TrWmGV7W6Lf_vVn6oxHoPbW54yLnH4FmmULDL5ymcso,1012
461
+ vellum/client/types/named_test_case_chat_history_variable_value.py,sha256=NyUPAAD9jq36LpOLq1dtc6Ro7ehTNeJ6zbcPXUA6a-U,772
462
+ vellum/client/types/named_test_case_chat_history_variable_value_request.py,sha256=UuW870U5peUbWRNkYyMohP1QWdiRTBgO4dm-Y0MQ6KY,801
463
+ vellum/client/types/named_test_case_error_variable_value.py,sha256=uKE5Jimkl3_FD3W6GvqKLTzH4JbCIDWVAcCchantznk,732
464
+ vellum/client/types/named_test_case_error_variable_value_request.py,sha256=Z0i5sygB9n_WMQx8Df8r-SsgLtYOsoESSms9iXK8FJ8,761
465
+ vellum/client/types/named_test_case_function_call_variable_value.py,sha256=ZDOLgkI_GLBdF1rWYbfJSqBd_EHY51rzsWhigse0hUk,766
466
+ vellum/client/types/named_test_case_function_call_variable_value_request.py,sha256=fcJwzazgElhrl1xJ2xja_-H7WdMVLoP9zV4rUYoCZM4,795
467
+ vellum/client/types/named_test_case_json_variable_value.py,sha256=wUVC_9Y7jfuZ2PZ_V14AFa9OlTHHtvuHmYuY4ln7ElA,689
468
+ vellum/client/types/named_test_case_json_variable_value_request.py,sha256=G69Y9sXwpi8WUqXVLiwJ_R2dwNNMUKyEF0DF-3r6ElA,696
469
+ vellum/client/types/named_test_case_number_variable_value.py,sha256=5WWDFcwIZJEcX3ua3Ou3fI2KiRLLEs8-B7TP0FH6ni8,692
470
+ vellum/client/types/named_test_case_number_variable_value_request.py,sha256=n1UHpztYDMm0XavJEg9irsxNMTUOfnqLxC4xavDFr54,699
471
+ vellum/client/types/named_test_case_search_results_variable_value.py,sha256=_7fQdVJN_qlhScmNiKf7S0W4-oXPPXKMETxqAaVPzK8,783
472
+ vellum/client/types/named_test_case_search_results_variable_value_request.py,sha256=S_9qWpSwdm1eCWvKB-UL8ZQXA7ItSKgZMBFdkO7jdOU,812
473
+ vellum/client/types/named_test_case_string_variable_value.py,sha256=CtoNBWDHfVntb-T1eINalzQ9YbPtod7VVcCe-ai_Dzw,690
474
+ vellum/client/types/named_test_case_string_variable_value_request.py,sha256=99Dflz57ePdjo2vOsTnHEhd6_A_Viyq_jLZ2gCbpIhQ,697
475
+ vellum/client/types/named_test_case_variable_value.py,sha256=RRGU0oNBwhll2ea77GH97qDzvwPw3qBlTuxy2KjJatM,1147
476
+ vellum/client/types/named_test_case_variable_value_request.py,sha256=lJ4BzJZ7DGOKtI_Je_rJDC7EJN7rWM1tRu7hXpY9m0k,1330
476
477
  vellum/client/types/new_member_join_behavior_enum.py,sha256=s9Z_6JKM6R4gPNtIJYCe84_DNBHucj6dHOx6bdFPoLo,258
477
- vellum/client/types/node_execution_fulfilled_body.py,sha256=lK9XgCT0d94DByMfMyMdBaLa2CvxLQ10f71y6hBic5c,885
478
- vellum/client/types/node_execution_fulfilled_event.py,sha256=Lr8Qrv4cG5R429L2e3EgeD59kRxt83eoGkGxUCWP7jo,1586
479
- vellum/client/types/node_execution_initiated_body.py,sha256=SFHnxmbHC_NWDyIjIkT8JPuTsaRpYIywQsTDUReqvkQ,737
480
- vellum/client/types/node_execution_initiated_event.py,sha256=k0KlQr3yDEb-i89vcbFtwhPlvSlrGcd4s1F8KmsKbSw,1586
481
- vellum/client/types/node_execution_paused_body.py,sha256=JwGYfmQ1g9jCDM36wLgM6xkYo1YY7M4VIvCowzaNb5A,676
482
- vellum/client/types/node_execution_paused_event.py,sha256=5J6elW6BKE-ctFSn--NpNB1P7B_dlP3_Grk1W2gSPx4,1568
483
- vellum/client/types/node_execution_rejected_body.py,sha256=lJhWcRzQHFyps5CZd3umO-_zKSdI0z7uf2anLKC8WtE,749
484
- vellum/client/types/node_execution_rejected_event.py,sha256=VeV01W7lciDFgpU8mhFXUBoteo7QMwCEzYnCygyMhys,1580
485
- vellum/client/types/node_execution_resumed_body.py,sha256=wJqWB_6VWY8BPMNWonr5bsgtmRjD3MyIqeV8jqKEYRQ,677
486
- vellum/client/types/node_execution_resumed_event.py,sha256=PIO3wl3UO7KQ3urklcylBHgVhyGkK0Z6b9RCF8ow1wM,1574
487
- vellum/client/types/node_execution_span.py,sha256=meP9DXOHJ7ALejhvH_PjFuuUwCzmoI-tWbv0DBX1kc4,1472
488
- vellum/client/types/node_execution_span_attributes.py,sha256=0EcAiUQpLCDHCussSr0eHsh41FFGoeR_EWW1akdb-pc,588
489
- vellum/client/types/node_execution_streaming_body.py,sha256=cTFTydzZ0-iI08T2XMcQWuIkkcCvqttGkksroSagF34,738
490
- vellum/client/types/node_execution_streaming_event.py,sha256=I0o8FK4uyu3S6KAgc_XoRhyURcBpSv8Ptl77iVut7p8,1586
491
- vellum/client/types/node_input_compiled_array_value.py,sha256=-N3NJYE8uSJwjKCS8QzlZUWr87GZQ-U20ODv6u9vs1U,783
492
- vellum/client/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
493
- vellum/client/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
494
- vellum/client/types/node_input_compiled_function_call_value.py,sha256=Q9vrORvrPDvHrBBYNA2YALHQd7WlGMytEBtoQdJelvk,747
495
- vellum/client/types/node_input_compiled_json_value.py,sha256=ketb8FNY9DQjAxgJd4SPDE6ErHJYY0NEkW0-STapBkw,679
496
- vellum/client/types/node_input_compiled_number_value.py,sha256=Olc4UpYsm-v7ZhlTVXsp7JVQE0ytLsBSd9HolCYWmZ4,680
497
- vellum/client/types/node_input_compiled_search_results_value.py,sha256=A2SnHYZAt2_VsQDXL4B2CF3KYgDJeUAQ5L0RbI8flH0,763
498
- vellum/client/types/node_input_compiled_secret_value.py,sha256=yY-OBwHZ4k9uCf_1dQpV6wFZTW_tcC7RSq41Xj-ToPU,703
499
- vellum/client/types/node_input_compiled_string_value.py,sha256=V4HKhHW6B2iUvYqYbuwcOHTxiui3nfOe0DKOiTXshJQ,678
500
- vellum/client/types/node_input_variable_compiled_value.py,sha256=h3AovF98U2Wkuo35DAjD6GlUSBo8KbdNt2hyMBDEJuM,1155
501
- vellum/client/types/node_output_compiled_array_value.py,sha256=kTuic5AwDaItit68iqs-misN0I0GoElfZGPfQFa5qgo,984
502
- vellum/client/types/node_output_compiled_chat_history_value.py,sha256=rAAnJ2PcXGxKusMpq2NEhJdBSRrPB9da5uN19x92Wu4,962
503
- vellum/client/types/node_output_compiled_error_value.py,sha256=dkgT_h463S8AF3QHVZdvy9HGF3A2LhxuNnAQouAYQlE,922
504
- vellum/client/types/node_output_compiled_function_call_value.py,sha256=Fygp5S2479B71vDmmBTjmJpp1ZfMEm3Qow2uINjNyZE,956
505
- vellum/client/types/node_output_compiled_json_value.py,sha256=KUOPgaL0_nlzjjtc7fFXNPKJ0CmRGAUG4FzzZt9ev00,879
506
- vellum/client/types/node_output_compiled_number_value.py,sha256=iBwBcPQuE0PZ50Q30iSUGNnDkf6yIMZ_au9lQDDhlzA,882
507
- vellum/client/types/node_output_compiled_search_results_value.py,sha256=oHKSncqdhE3q3SDjHqhRRSePvF24XRiwecZoTMdM_Uo,973
508
- vellum/client/types/node_output_compiled_string_value.py,sha256=pR_ku51KL_gwplMCiy6oT4sARnKP_0gZsTcLbVtOk_Y,880
509
- vellum/client/types/node_output_compiled_thinking_value.py,sha256=j6IRT9A7f58wUyv0dAFY9ata7Tl391gXwn_wbDmxkAI,953
510
- vellum/client/types/node_output_compiled_value.py,sha256=GbIKZyrGmqj_dYLiL0eAVZdQnfQhZd-BYsQnGdyI6tY,1181
511
- vellum/client/types/node_parent_context.py,sha256=CC5UIWBjYwAs5hxCI2Q12wGjZZGzHGbuv6kADd_uKCM,1591
512
- vellum/client/types/normalized_log_probs.py,sha256=XNfwhKgK9vPlJQh9dcup2Rl5mTlmV154rrIRsf3dYx8,706
513
- vellum/client/types/normalized_token_log_probs.py,sha256=C0VHuRQbbcCFzQ9fJNbNjXAc2aUMUT5MxIt929-KMEA,714
514
- vellum/client/types/number_input.py,sha256=e5hNmwXv-rBfkJ-SdwbJzU6UKY0ej2m6jO7uEKJ_n4M,739
515
- vellum/client/types/number_vellum_value.py,sha256=LWQuMygk1Ai5Gjk_2bcp2idsEtzliotMolIyk_hgtnI,685
516
- vellum/client/types/number_vellum_value_request.py,sha256=vdp8WZpc_YvITT7g3bzIVIxDUYQgfNIzPTIyk2Sem-I,692
517
- vellum/client/types/open_ai_vectorizer_config.py,sha256=E3t3E5bSJgwTGM7M9-Cnt5fr0BZKT1i_2v8RjW5cHkw,743
518
- vellum/client/types/open_ai_vectorizer_config_request.py,sha256=Q929KI2m2GvQkCTcBvnx8OB7-6FTLFuJtrgS0IEkKTA,750
519
- vellum/client/types/open_ai_vectorizer_text_embedding_3_large.py,sha256=Rr6MUqDWyI3ninbLse9eWX95bgYvrm6U2RA6-AgXi5Y,812
520
- vellum/client/types/open_ai_vectorizer_text_embedding_3_large_request.py,sha256=b-s5u1lLV2JLWFauxIrciMUP1jnswDT6RP-F3VR7cr0,841
521
- vellum/client/types/open_ai_vectorizer_text_embedding_3_small.py,sha256=T_-P7qGjTHJiJfMieHv1GplDBTsvcCJI8cZMOF1WP6o,812
522
- vellum/client/types/open_ai_vectorizer_text_embedding_3_small_request.py,sha256=-lwNeWj7ExP-JLncUp1Uyd20FxweVIDu-aEnenPB98A,841
523
- vellum/client/types/open_ai_vectorizer_text_embedding_ada_002.py,sha256=c4vNlR6lRvUjq-67M06sroDMNMG_qC4JUBqwmKEJQ2I,812
524
- vellum/client/types/open_ai_vectorizer_text_embedding_ada_002_request.py,sha256=FdpkkNBGgRwfqFjBwpfH4t2zKIM0pIYminX2iZQUzvY,841
525
- vellum/client/types/organization_read.py,sha256=AMTjqWH6CWXzbPpjoOE9Usb0lsqepC_vBfqKjLxHcik,908
526
- vellum/client/types/paginated_container_image_read_list.py,sha256=7lwIgs1q7Z0xDYPGWPnjSNC1kU_peu79CotzaaQfRdA,801
527
- vellum/client/types/paginated_deployment_release_tag_read_list.py,sha256=hp7D74CxPY14dEPRZ-fnTCwp63upxkYquL1e74oYXh4,826
528
- vellum/client/types/paginated_document_index_read_list.py,sha256=bO7pm3KCZi5LDO17YXgr_lUF9SRdAfMu6wOutX91ANw,797
529
- vellum/client/types/paginated_folder_entity_list.py,sha256=PElkrxMrnEjL9YGXde_r7RpNQUjzYfaLDlnwO8WFDSo,776
530
- vellum/client/types/paginated_slim_deployment_read_list.py,sha256=EhNVB8XGDnn9GYZlHsJos2IBvv21Gzrk2WDhlPUdqhA,850
531
- vellum/client/types/paginated_slim_document_list.py,sha256=8f7L0ZqD9hBU4XTGTdltl0ORuyy2gryPU5UxlmPabq4,776
532
- vellum/client/types/paginated_slim_workflow_deployment_list.py,sha256=iVv34fxoqGa4fIWpAD9zUgM9oScTAd9RPvRNzERgmO0,866
533
- vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=u29sjMewYPoNL4dNqnu6LCKPvMnC_4NsC4RHyWeAobM,815
534
- vellum/client/types/paginated_test_suite_test_case_list.py,sha256=1CDDtqfWyoYPQCP_f6746Yimd1dkqPiX0lTqK6X91Gw,799
535
- vellum/client/types/paginated_workflow_release_tag_read_list.py,sha256=dH24ESWyAMVtyHsBkxG8kJ9oORY04Wn3IN-7jvV7Lu4,818
536
- vellum/client/types/paginated_workflow_sandbox_example_list.py,sha256=rCivuKp5fzVV8PdRwyiet7bEmLxX_1hv8N0vn0xaT70,817
537
- vellum/client/types/parent_context.py,sha256=_Hg2z2tuWsTFh-hcDhFoDh5oBNf8CYCgaB_ezyec5V0,903
538
- vellum/client/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
539
- vellum/client/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
540
- vellum/client/types/plain_text_prompt_block.py,sha256=cqEN-B4mcvMw_9lBN7FQG8pk9b5LBJ9xpM6PTgkGiqs,930
541
- vellum/client/types/price.py,sha256=ewzXDBVLaleuXMVQ-gQ3G1Nl5J2OWOVEMEFfnQIpiTk,610
478
+ vellum/client/types/node_execution_fulfilled_body.py,sha256=foRkObll1ZBsh3Po6tHT6CKnDcUaMFEoQWc-rjLDn7A,849
479
+ vellum/client/types/node_execution_fulfilled_event.py,sha256=WRuXDamUa4FefGgRC6JAoDRrPlEf9AbC74EZxSH24E4,1897
480
+ vellum/client/types/node_execution_initiated_body.py,sha256=PmI24HmrlHFoROgJdAJIXHcYwuS_v_JPxLGKpDeCc4I,701
481
+ vellum/client/types/node_execution_initiated_event.py,sha256=MEEcgN9AjEAdDeUCGQyg7WaaxEpfPPA6AJKmIMGZMF8,1897
482
+ vellum/client/types/node_execution_paused_body.py,sha256=pAySHgvgRO6iV1pfO_lRyufk4ecA0LON8CCap4YTZsk,640
483
+ vellum/client/types/node_execution_paused_event.py,sha256=9JqnlTAtnMhnSlztrp9GpjCdSYVcKvV_h1jQszRInt8,1876
484
+ vellum/client/types/node_execution_rejected_body.py,sha256=C8I1CXaKXrTxCi2DZyNKUg00IcP1ZkT8Ktra6yYFgzw,713
485
+ vellum/client/types/node_execution_rejected_event.py,sha256=JzbQux0bYivwK7edTydq6vrGQEVRdvypa4ZipTrmsig,1890
486
+ vellum/client/types/node_execution_resumed_body.py,sha256=M8nhwykvfwFgRKAyiVXJZC3Mrd7JankiTdO8muHQWMA,641
487
+ vellum/client/types/node_execution_resumed_event.py,sha256=SQ0EPqJnnAWulBb2H46v5p809UznM8YVIsdbyPOHn_s,1883
488
+ vellum/client/types/node_execution_span.py,sha256=97H5YovyPEk-EcWy1aOzi06SFhzy_aLlbARMeEwZrDU,1944
489
+ vellum/client/types/node_execution_span_attributes.py,sha256=jRtiQVzEZAWxBA9qpx9j_Xy4neR4hvUGXChrM2unKSo,552
490
+ vellum/client/types/node_execution_streaming_body.py,sha256=7XoldYoZwU5bFUOglFG48roWqvjxION6blYsoHFYYQY,702
491
+ vellum/client/types/node_execution_streaming_event.py,sha256=ZXEG9Xd2V3Ivy-ihg8mom2SmGxda6eTNXPmOuJmDdU4,1897
492
+ vellum/client/types/node_input_compiled_array_value.py,sha256=4ABwdQaEKpusNtRocwEP2dwe9nPHDCtgrfTqG9-_0Kw,910
493
+ vellum/client/types/node_input_compiled_chat_history_value.py,sha256=z7ehHME9AtexSyhciPRbFGMeKvxj8v6RbydMk3JV-xI,718
494
+ vellum/client/types/node_input_compiled_error_value.py,sha256=pqLJdu6xlWBS520j9h5UwpOm6AdHjo04tq-tVxecuTY,685
495
+ vellum/client/types/node_input_compiled_function_call_value.py,sha256=522t1tgGbuNJNDDlF-fe0nB9fL-sDRiHeHr9IV_CUUM,711
496
+ vellum/client/types/node_input_compiled_json_value.py,sha256=nq6lGLUAdlnThp1bu9EojdBAAW0YWXBUsaqYvB058MA,643
497
+ vellum/client/types/node_input_compiled_number_value.py,sha256=GAFLKo_E5X9B2MM2K1bk8dMUi6BH6tN3L-cOEGlzEx0,644
498
+ vellum/client/types/node_input_compiled_search_results_value.py,sha256=agpAQqFiQ-wDqYfzWamLEnePaBzulB82h0U85ZccjMU,727
499
+ vellum/client/types/node_input_compiled_secret_value.py,sha256=CCtGUjxX8AG1KDZZn-dtWClW5XQKaz6--F6B5SbsgyA,667
500
+ vellum/client/types/node_input_compiled_string_value.py,sha256=M_DWpLDr_-f8FF6C_k1ZoDYRIOLToYt7frontpPIO3I,642
501
+ vellum/client/types/node_input_variable_compiled_value.py,sha256=rfeVXLr6ZOIiyn0CYNWs2lDz057JIODEkwWTRZSwRvY,1156
502
+ vellum/client/types/node_output_compiled_array_value.py,sha256=emxt4casFUrwqXFI5NfqhcCjW1jWNUP7m2C_6JL2yjU,1112
503
+ vellum/client/types/node_output_compiled_chat_history_value.py,sha256=bTVfR69rc5hBz5uIMuBhIliJYMXHLg1mfWQUyO9K140,926
504
+ vellum/client/types/node_output_compiled_error_value.py,sha256=FqGB3eEZM6-ll1i4crzL3W272S4ShOCUClS-7D9494o,886
505
+ vellum/client/types/node_output_compiled_function_call_value.py,sha256=lBInpDX-bhMjQC500Z-1uFBrXCWkArT04PJw8YfdDCs,920
506
+ vellum/client/types/node_output_compiled_json_value.py,sha256=bxewRKGW8F50QG_qcHeu2cXjr28CVQ5TNjjzelAWcJ0,843
507
+ vellum/client/types/node_output_compiled_number_value.py,sha256=KQHE72E5ko7gM0AysJZH-fM08-QykhjQ7PQmn1ozmtk,846
508
+ vellum/client/types/node_output_compiled_search_results_value.py,sha256=_GFd8h5ckUknQOvT8nAld_louYCzFoqPOXhI7XlhMnQ,937
509
+ vellum/client/types/node_output_compiled_string_value.py,sha256=XbQBIfY6qoTAQ2Z6aN916vU9lsHDgOYSqehUKNVp2Zw,844
510
+ vellum/client/types/node_output_compiled_thinking_value.py,sha256=KwmbC13BgyA70IesWKyTVL4SY5Rw2HDRNWeGlyTkIrk,917
511
+ vellum/client/types/node_output_compiled_value.py,sha256=KU1F3NhpQUWr65HjLdXUznc6k5fPOh7VX3o04kOEkKk,1182
512
+ vellum/client/types/node_parent_context.py,sha256=vAL5pAPz6nOAnbJGCmZbIB6IKtC1MeYzJEsaRB7LHW4,1615
513
+ vellum/client/types/normalized_log_probs.py,sha256=aA0eGibpbcMZHLA-F5exAxU6i4FEZVdLm5ZlvxyZ0dA,670
514
+ vellum/client/types/normalized_token_log_probs.py,sha256=i1dpTPE9G4u6E68Md1TL1LtimOSYKdq3Gfziy-yMwyE,678
515
+ vellum/client/types/number_input.py,sha256=27hUXuCRvlsFsEDIEieKKKAjZB5uJyP2pX_pPHWoNSE,703
516
+ vellum/client/types/number_vellum_value.py,sha256=4UN-ao1Cbz4eeYM95HwXeJBMXBo5JiYBzBjLgegYKi4,649
517
+ vellum/client/types/number_vellum_value_request.py,sha256=aWphw10koqTSE-Nj_7V3zF_8O5YrWiBux0FopHrm5_M,656
518
+ vellum/client/types/open_ai_vectorizer_config.py,sha256=9GPjvZr1EAfzl72XYoyk2Ahj-h6t47pUt71fx24XbJk,707
519
+ vellum/client/types/open_ai_vectorizer_config_request.py,sha256=cYP7O2fvRegyrfWjWjsSpuyrxv6ExTrQG2XuYUq1mcc,714
520
+ vellum/client/types/open_ai_vectorizer_text_embedding_3_large.py,sha256=BcYNW4DwcL2XJoAN_dIM2VRXcZ6BD5apDMRCqemOuOc,776
521
+ vellum/client/types/open_ai_vectorizer_text_embedding_3_large_request.py,sha256=bkNjkc1Cn2CJHvH-fsQ-9cLZLvheNunXXjDKZpG1gO8,805
522
+ vellum/client/types/open_ai_vectorizer_text_embedding_3_small.py,sha256=W_5kYA5xf5IlvEsqBB84V6eizF9IBa96-6aiQeg2q40,776
523
+ vellum/client/types/open_ai_vectorizer_text_embedding_3_small_request.py,sha256=1GawhKP1LMw42H3mKTpRnkiH1ewCACEOBJvv2oc2amQ,805
524
+ vellum/client/types/open_ai_vectorizer_text_embedding_ada_002.py,sha256=pnVm2p0CW2b6DJoDQQ4tYbmi3HSZwyO3zvFpVB_sR0M,776
525
+ vellum/client/types/open_ai_vectorizer_text_embedding_ada_002_request.py,sha256=2JwI26qejLonspcRYp3RlZ9eOax3cc1hYimd4zOY2wo,805
526
+ vellum/client/types/organization_read.py,sha256=c1FOwhHS5qQAVBfMocS4GMBA7jccuPQDsjYnSjv-lWM,872
527
+ vellum/client/types/paginated_container_image_read_list.py,sha256=mm8Q-NzdOvztPdzd4yj8AphpuOn8yOrGDLhJ7JJsR2A,765
528
+ vellum/client/types/paginated_deployment_release_tag_read_list.py,sha256=equmdUh3WlTzdN3peYCFNP_FbINsrlrUnS_I0I4Yn4w,790
529
+ vellum/client/types/paginated_document_index_read_list.py,sha256=_Qe7afadjpnduPttz0FZlpjW8ivVfg967tw0kjXkELY,761
530
+ vellum/client/types/paginated_folder_entity_list.py,sha256=KB0N5DinVZaQkFYXInHkvFVnvobBz9LxDsBNp5TVYaU,740
531
+ vellum/client/types/paginated_slim_deployment_read_list.py,sha256=UYNoxFOaV8HBlM-Fx8i_NMhFBZvQXpaJro6fTgPp1k0,953
532
+ vellum/client/types/paginated_slim_document_list.py,sha256=xfei22LINEKDXKubCteUhzkWFg-3wJgFkLbGdmTidek,740
533
+ vellum/client/types/paginated_slim_workflow_deployment_list.py,sha256=mIQZ1FT3qQTGG-8eMRvnSAm_u9ixlGk7b80nxoVBxCI,973
534
+ vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=sYg7pO_vCUoT0xH_a8mQAUWd8A-xEI0EEfmFKbv9U-c,921
535
+ vellum/client/types/paginated_test_suite_test_case_list.py,sha256=gDVdq10b5u3NEzMZrjpioVDBLMKmHcsRXBi-IX2ZBL8,901
536
+ vellum/client/types/paginated_workflow_release_tag_read_list.py,sha256=QhnPPpYE5T_0Kzl6QJ9YWcsc4WYf74px_KOiQTWRqNY,782
537
+ vellum/client/types/paginated_workflow_sandbox_example_list.py,sha256=GHWCQdTYmFeoN0lxdreN0RldKcUa2Duazlfke2cLOc4,781
538
+ vellum/client/types/parent_context.py,sha256=U4eS717FDcsTPO37ckQs2axtzei-eyivwfjSmGYSOjU,890
539
+ vellum/client/types/pdf_search_result_meta_source.py,sha256=KaYx-xvNtOn_ADRDBbb48qGsLtqXfcmfzqob8r-SLgc,1090
540
+ vellum/client/types/pdf_search_result_meta_source_request.py,sha256=Fh2EUxWyhdP7yW2CUNvSTSZo8EcukgogALr4HpppHvQ,1097
541
+ vellum/client/types/plain_text_prompt_block.py,sha256=vqZESoqj6P1IyHFmRAk2kmdU3ktsM_852crRCBcYV64,894
542
+ vellum/client/types/price.py,sha256=f-j-74UUDuX2c-IQxXH78KV8L-jLi6sdsHWVLRKqBy4,574
542
543
  vellum/client/types/processing_failure_reason_enum.py,sha256=R_KIW7TcQejhc-vLhtNf9SdkYADgoZCn4ch4_RRIvsI,195
543
- vellum/client/types/prompt_block.py,sha256=quAME4X2doCO_DQ-U7v0Py-ZZy1Z5qypVVq2fXuazpw,827
544
+ vellum/client/types/prompt_block.py,sha256=950JeKeNKZ0DQXwCD-Sy9SDMtiR7F-BqCrJZoxZt7JM,886
544
545
  vellum/client/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
545
- vellum/client/types/prompt_deployment_expand_meta_request.py,sha256=agsiAaHB6lDoZPlnfJ2nmhB4Ud4EiJJTX05YmduyCPo,1910
546
- vellum/client/types/prompt_deployment_input_request.py,sha256=KrT4-Ew2VvTWXEkYQz2oyHn5EDOgrMW7FzRFaPH3ARg,353
547
- vellum/client/types/prompt_deployment_parent_context.py,sha256=tq803ZjiUiHmXUUMIEh0WaKwoDL9jEK1XpAjOEZfhYg,1766
548
- vellum/client/types/prompt_deployment_release.py,sha256=H6sluuxANsoaX6gA9lw76lJkTECuxFofSeetKF00ze0,1346
549
- vellum/client/types/prompt_deployment_release_prompt_deployment.py,sha256=tj8g0qEJyAuijxRBUV6nO2IITEorqVY-C37oqiWg6Po,582
550
- vellum/client/types/prompt_deployment_release_prompt_version.py,sha256=MRiTZ13hMHbhFCJ859CkT231_zFcWo2b_0kDs2G4RWQ,849
551
- vellum/client/types/prompt_exec_config.py,sha256=2-hbAa_zeXl0V6oAZXZzE0ipcFoOU0WnPSePRXYRlfo,1143
552
- vellum/client/types/prompt_execution_meta.py,sha256=3hhMZgdAR5mKfnh2e_eVN3oKfT0E9w26khVPrpjn7jk,1141
553
- vellum/client/types/prompt_node_execution_meta.py,sha256=IyWH__nCp5uwS0N32b2ZEsA-Fv7AZDB4nnlRZayU2Gc,888
554
- vellum/client/types/prompt_node_result.py,sha256=3jewO-nPodoXTq_5RxgwhKfDZrvoPjRZ_vUXLeqiuHY,749
555
- vellum/client/types/prompt_node_result_data.py,sha256=fNOxBfK3ablDBxkUWVVstJMYaGdHGgu27WxP87E6UQ4,872
556
- vellum/client/types/prompt_output.py,sha256=YRHDKRB2Yn3GS7pzY-cH17gtjcvew0vP0hls_tzWF3o,480
557
- vellum/client/types/prompt_parameters.py,sha256=Vkwh4zI9gX1DuGQxrWiUUa1TshTfnPlS7_yRrziD5qg,1046
558
- vellum/client/types/prompt_push_response.py,sha256=Un61pv4kVH0Omd8OKVfTk1yZ1RWrwuquAgl1vanb04Y,601
559
- vellum/client/types/prompt_request_chat_history_input.py,sha256=DB2io5piMSyA89f5lnIVYO4MLZoNALNSufx8Y-oOwOE,790
560
- vellum/client/types/prompt_request_input.py,sha256=brEdYhYm74Ac8XjK9wF0rKOLgnqd_Cg19yMS7VfB4qQ,400
561
- vellum/client/types/prompt_request_json_input.py,sha256=vLhwvCWL_yjVfDzT4921xK4Ql92OkvG-ruvOC_uppFI,739
562
- vellum/client/types/prompt_request_string_input.py,sha256=8GSFhtN3HeYssbDRY7B5SCh5Qrp67340D9c3oINpCmw,714
563
- vellum/client/types/prompt_settings.py,sha256=gITevU-SWiStXFKLfpwG5dQJ-bic5CxnM0OHsT9KR0s,635
564
- vellum/client/types/prompt_version_build_config_sandbox.py,sha256=SXU62bAueVpoWo178bLIMYi8aNVpsBGTtOQxHcg6Dmo,678
565
- vellum/client/types/raw_prompt_execution_overrides_request.py,sha256=x4Chkm_NxXySOEyA6s6J_mhhiM91KCcQbu6pQETB8RI,927
566
- vellum/client/types/reducto_chunker_config.py,sha256=by_Dj0hZPkLQAf7l1KAudRB8X2XnlfHiRTsyiR-DTRY,654
567
- vellum/client/types/reducto_chunker_config_request.py,sha256=RnulU2a_PUtvRE2qhARQhsCkWI--K_MYkobzLNRGEz4,661
568
- vellum/client/types/reducto_chunking.py,sha256=WEMknzwME-Sc53A4xRtXCmKu6ZLP3ZYBOtSXVyrlfOE,776
569
- vellum/client/types/reducto_chunking_request.py,sha256=pgu_E20DPJwdIynS_2_RukrN5dV4OOI3GAn6cNhrf4o,805
570
- vellum/client/types/rejected_ad_hoc_execute_prompt_event.py,sha256=izRQktdnE6FGxUVQ6qFiCZfLvLRlyAauCx4jfqLDUXE,938
571
- vellum/client/types/rejected_execute_prompt_event.py,sha256=Jt8lXmZrZ7FiSWAqZMguUDeZC_XKw72unRBsZ4224EY,916
572
- vellum/client/types/rejected_execute_prompt_response.py,sha256=YyY9KGTbJ53DmwiXHqYkuxxDIx3w560bB3R0fzqzwQk,1185
573
- vellum/client/types/rejected_execute_workflow_workflow_result_event.py,sha256=6k6GRr2TnVSM0DxS3H3hczwV7962UDG92yLh6j8OjcM,882
574
- vellum/client/types/rejected_prompt_execution_meta.py,sha256=4Oidh3XBBHzgjOys2kuETxqWc_MOqS50UpB0o8YNZd8,844
575
- vellum/client/types/rejected_workflow_node_result_event.py,sha256=SDxscf_gMYGJtINwoI0-9dglCT6MWN_9MHiRraEfVo0,1121
576
- vellum/client/types/release_created_by.py,sha256=Oc5Yz1I-zQ3Uv5Rz6bVULC3DvX-edwco3ohSKjxo2NI,615
577
- vellum/client/types/release_environment.py,sha256=7EwrbP527MSeaNm5jBRNfEVEh2o6GMx4TzS_S4xIU4g,588
578
- vellum/client/types/release_release_tag.py,sha256=Q6jMTXcwjke8_L75zZhKmJMlO_lSgF0vzyyjFi1a2oQ,851
579
- vellum/client/types/release_review_reviewer.py,sha256=hxF8h5IYfiebvvln-cBisnjZr68pTWsKFBDqCu-tgZg,605
546
+ vellum/client/types/prompt_deployment_expand_meta_request.py,sha256=v7sW8hDHULzNa103FB3WugGMsRUnt0ijbzRy476M3fg,1874
547
+ vellum/client/types/prompt_deployment_input_request.py,sha256=WQUMn0Mz-yG-BZRYhskBVuHqVPmN6JIRzm-SPDutAw4,354
548
+ vellum/client/types/prompt_deployment_parent_context.py,sha256=eaUiZxuLLqEor67y1noRfXsMn5cJNz3tBGjkw_SHbps,1790
549
+ vellum/client/types/prompt_deployment_release.py,sha256=ar_MMrWcIJ6cKxW3qAVaybW1nPkqOfmQZTdto68o4CM,1310
550
+ vellum/client/types/prompt_deployment_release_prompt_deployment.py,sha256=S7XjAfNih43SBcvnZeOstM9dsOrAtY3ERGV5iDNfZdA,546
551
+ vellum/client/types/prompt_deployment_release_prompt_version.py,sha256=Q-OF8JixvuqyTcK_INjLujBWfCFnTsxAp-Z4JeOPN7U,813
552
+ vellum/client/types/prompt_exec_config.py,sha256=pVZH4V8lvdGjqahGtVNpNg13CMuZRlD7RTF42To98q8,1285
553
+ vellum/client/types/prompt_execution_meta.py,sha256=rZBLqrUbFhJeHxBrxN17HKA1LS7c-peGNJaHPSXXVNg,1105
554
+ vellum/client/types/prompt_node_execution_meta.py,sha256=BkVcVqPikvoSmXwgv8GXicVXomGlJzLpW3x5aCANa7E,852
555
+ vellum/client/types/prompt_node_result.py,sha256=Wcl7n9jD3mVDuhGBbtP9ipbU-D0oCroNNmHR7i5ECMA,713
556
+ vellum/client/types/prompt_node_result_data.py,sha256=jhptcHjSywEas4Kx5MmNRU9guwE_y3zUaolbFxTMCs4,836
557
+ vellum/client/types/prompt_output.py,sha256=lNwtAGcQ52QrgakqLh7tRqHZqTdDaakdyMm_6dl_Woo,481
558
+ vellum/client/types/prompt_parameters.py,sha256=bRR1XGYM42CS4vJDivufFxNhyUgute1ZGIhdxOnDFlA,1010
559
+ vellum/client/types/prompt_push_response.py,sha256=-kJ7E847hrrEPtvjsYhjWdXnt0i46YgP4_C0chOfqyM,565
560
+ vellum/client/types/prompt_request_chat_history_input.py,sha256=OFwdBIH4IkB8BQrnxBMbLLAErNnKb8ZJj3uibEkvakE,754
561
+ vellum/client/types/prompt_request_input.py,sha256=l3uxfQ8n-PTeT3aehDpycYI35voVOIWhJa026dwor6M,401
562
+ vellum/client/types/prompt_request_json_input.py,sha256=oBNf8l3WB81rDj_HPEgDLDzcaCMkKhHhDTp1PTsFJ3k,703
563
+ vellum/client/types/prompt_request_string_input.py,sha256=jXynYgJPPgQ5kO20NEmjAmdnPjjGNhR0TSYEl4MifXo,678
564
+ vellum/client/types/prompt_settings.py,sha256=ZnCHjLA19-71Mw5B6vCZUQh5GPtmBpzfdMNezdv3aLA,599
565
+ vellum/client/types/prompt_version_build_config_sandbox.py,sha256=bD1cOjSp71GRblL188Oiq29KEU0BEMQt9o0yoWgxWt0,642
566
+ vellum/client/types/raw_prompt_execution_overrides_request.py,sha256=qh4T00daWHoNbBxNjztJ8C7pjYybuW0lhduEwBXvlfc,891
567
+ vellum/client/types/reducto_chunker_config.py,sha256=vMvVUl_VokQktuLW9WzRdyeq5KtHhqwJNqISBAO7T94,618
568
+ vellum/client/types/reducto_chunker_config_request.py,sha256=Bj6HwuAcN4-EjTgfH5PErbEcOS_u6L2kVtNkqCvJ_AQ,625
569
+ vellum/client/types/reducto_chunking.py,sha256=EDy0ofOW9K3O1Mgro7FapGw9YUFflMu0adZt2jsJ-20,740
570
+ vellum/client/types/reducto_chunking_request.py,sha256=NoXJ5MkN5u-fLms0K28Nq9LjsukLuf_CuHvyM-CwT3Y,769
571
+ vellum/client/types/rejected_ad_hoc_execute_prompt_event.py,sha256=E1Yv_ps9PwWW5LPHzt8TlrFUfD17PHlT5SBnbahBHlM,902
572
+ vellum/client/types/rejected_execute_prompt_event.py,sha256=bFT92vqaHaSFHVM3J9PGoZbRBI-hrW2a-e1b1hKx9gc,880
573
+ vellum/client/types/rejected_execute_prompt_response.py,sha256=bnNJuOeHGVFIDQFlRa0wCpzFAgidU9xBmJuHCatkiBU,1149
574
+ vellum/client/types/rejected_execute_workflow_workflow_result_event.py,sha256=ASsj18esqsxgIelXGp8xNleyFC-v75V_uFXc6LUyB-8,846
575
+ vellum/client/types/rejected_prompt_execution_meta.py,sha256=hS2W7mHKvr22_t0LqoIDWrMbM4BYRviLHPfLHrGXtbM,808
576
+ vellum/client/types/rejected_workflow_node_result_event.py,sha256=-to-baQDPmEkPXOeWUyRYk9p6nUQBvhrMFudGjUIb9Y,1224
577
+ vellum/client/types/release_created_by.py,sha256=-jk74yVb9IeHSG7Dsd_hh5UvqMV4uRklsyctOY1nQLA,579
578
+ vellum/client/types/release_environment.py,sha256=i6M7hVSfXhayp1hLZWhBxF4mYb7mfGskEM355Gv5-f4,552
579
+ vellum/client/types/release_release_tag.py,sha256=ZhN2KM4Ppl0bbfT0fllw-LlQZVVFHUlkFMt9xkbpr_w,815
580
+ vellum/client/types/release_review_reviewer.py,sha256=XUII4RDJ4Gndx61HS6_SmjpmRwBnuuA2iAr8xH0Ujdg,569
580
581
  vellum/client/types/release_review_state.py,sha256=fKlFAdEcgmCzFizCTZVSAOvHCRrhSwA4whGaENihlWo,188
581
- vellum/client/types/release_tag_release.py,sha256=FG3gagTgqy2eG7XYRFQkOQroMgG4N8uc2h5e6jb8ab4,607
582
+ vellum/client/types/release_tag_release.py,sha256=JVpUBResBsoGMOYPEmVIcxXJvp6DZuusPeqU7JEa4EE,571
582
583
  vellum/client/types/release_tag_source.py,sha256=YavosOXZ976yfXTNWRTZwh2HhRiYmSDk0bQCkl-jCoQ,158
583
- vellum/client/types/replace_test_suite_test_case_request.py,sha256=mq_ZhkUqcYEkurUf-PqhGQ6xkHk2WTNXkDhN5YoKNXo,1701
584
- vellum/client/types/rich_text_child_block.py,sha256=X_ACKFKSUx5SXT1cLp0Y5-7VrNxcGOggPm67Lk2442U,270
585
- vellum/client/types/rich_text_prompt_block.py,sha256=_Y2tRnSDtOUYHcq7zNfYbgqcLZab-Zd-Yh6UKdybVIY,1036
586
- vellum/client/types/sandbox_scenario.py,sha256=f4S0tDxmPYHIrD_BMjRL3XZGcGxlWy9apfI64hV7MBE,844
587
- vellum/client/types/scenario_input.py,sha256=caC8p5ZnuXhv2ZiHvzTvKL3Ebtr4NXP9Q8UcJEVB8-U,476
588
- vellum/client/types/scenario_input_chat_history_variable_value.py,sha256=ihgJktmZpz_12wx2yPtyrSrBjcBcSg9fby7h_eLoXgI,835
589
- vellum/client/types/scenario_input_json_variable_value.py,sha256=aKbQK2Q8IPOZq9QyjhECLqR1y42eqtddmkvH-jzPEhk,752
590
- vellum/client/types/scenario_input_string_variable_value.py,sha256=Y9UtkeqM-oBtPXGw_RXbgZNcmQiLvSUH8utTiv0a2qo,753
591
- vellum/client/types/search_filters_request.py,sha256=Eq-R2VyEvxUEjsYhDw7KbpzJRIw4d63czDOE9tNP460,1132
592
- vellum/client/types/search_node_result.py,sha256=eJaAWXzEZ-CzySXXlI51MEgdO35H7bK5NTPFJ6zLbJ0,749
593
- vellum/client/types/search_node_result_data.py,sha256=IWal6uJbfP6JpKXxeiNsKCyqjrwkN2XUxH-Bz-n6uAg,846
594
- vellum/client/types/search_request_options_request.py,sha256=z7XN_6_Y4Uz_Pg4jzI30ocP7EhVHTnBvfcrHFhWMDz8,1546
595
- vellum/client/types/search_response.py,sha256=b5301wpC3L7QUBLYAHya_JJy2BdmDvFWA0UluNJc1ig,750
596
- vellum/client/types/search_result.py,sha256=kixaodfGe19x9UFF2Axe2xawmxhnTGWXq3zE6jrkGgE,1194
597
- vellum/client/types/search_result_document.py,sha256=sbhpvfZ2wgvZx2auwOFRn92i5JZEiB2HJVPr9KGRSg0,1177
598
- vellum/client/types/search_result_document_request.py,sha256=ipprf2iEO1mNWXZ1sEc6QfcIJXTzCnENCtiOc8TdQEo,1184
599
- vellum/client/types/search_result_merging_request.py,sha256=YiAgNuwvrpjwJBVS5_F6-UHmOLONP4iabhbxafKUlxg,675
600
- vellum/client/types/search_result_meta.py,sha256=A8xNQbxbkwgT_VbHLPXgMYPAmwuHC6BZG0o7Dy7W8_k,729
601
- vellum/client/types/search_result_meta_request.py,sha256=e0Mg1XAdqGtBFJ9zj8YYLfctZLP2d2AQr3GGjtXQBfY,758
602
- vellum/client/types/search_result_request.py,sha256=cfKvzUCes4TxH757bu1D8ieM3nuW6A4yu1J00tAjhDQ,1245
603
- vellum/client/types/search_results_input.py,sha256=kUfXw_NttVClGdEu9qGiZWXggFBKaIlpZ3bbWN2nV1U,830
604
- vellum/client/types/search_results_vellum_value.py,sha256=i_7d5cANsjuFSRwI3qUgzNdz6ZyrhakuxP4lMQeUFu4,774
605
- vellum/client/types/search_results_vellum_value_request.py,sha256=Y36g5iLmweV4k_UiTDI9gSXf9Pn_aCwho0Z7dUNiVZU,803
606
- vellum/client/types/search_weights_request.py,sha256=7YdTanQ82sDztyOwZGh6Iu9HJaTiAX3QnfxDQZJUzyE,828
584
+ vellum/client/types/replace_test_suite_test_case_request.py,sha256=EUlx37sEKkXDXtIxNeXgV0jN74hEy79QWSNjunLq3Mw,1804
585
+ vellum/client/types/rich_text_child_block.py,sha256=JCC-6FLdxHG--gE-L6lJtRNI0pmnZxCVz0nqkFI-wdM,271
586
+ vellum/client/types/rich_text_prompt_block.py,sha256=Te2qnJOiCgqV0gaiui8mVjnATX7mFNJjHqXDX4fd5jA,1000
587
+ vellum/client/types/sandbox_scenario.py,sha256=gaHbNzufZhibRGoo42Ryo6xZNRo30lLU39oSDS6mqIs,808
588
+ vellum/client/types/scenario_input.py,sha256=OWwguuBsjCQeJvEaW9IJ3cbWExf7KeXcR7ByekhbDhA,477
589
+ vellum/client/types/scenario_input_chat_history_variable_value.py,sha256=FzXccgtyH9iTyGJJ6XcOM0TmzCMaPKWr1FmGtFCvxsQ,799
590
+ vellum/client/types/scenario_input_json_variable_value.py,sha256=07_Fj9UOzMGvz1H0j1awmMz0Q6ErliwjgKVU_iUyZb8,716
591
+ vellum/client/types/scenario_input_string_variable_value.py,sha256=PI_pk-WOXVRBSW6PZKDZW11svxd2r9E6bCpl0zC0MTM,717
592
+ vellum/client/types/search_filters_request.py,sha256=Moxewgl8KwjIy-VBistrchXQAqfsn5fkqO5R2UzLlI8,1276
593
+ vellum/client/types/search_node_result.py,sha256=2DbnKCus81-fj56IoGZqIL6Tw6hjf5jH0O2P_AXah8o,713
594
+ vellum/client/types/search_node_result_data.py,sha256=rXs0R0OG2pjTcE6bMp5lN6_cUusFiVUDwkC3pVo5l6o,810
595
+ vellum/client/types/search_request_options_request.py,sha256=cFO20QWax-8GxKVv4DxCl6GEEnfAXzVyI1yAv9Svm7U,1697
596
+ vellum/client/types/search_response.py,sha256=BGKOSgMkU1FcBU43BaO85eEXA8lnD7xZHfuEv8FIRak,714
597
+ vellum/client/types/search_result.py,sha256=SDpJ-oACCuwt2IGKWpmmOmg7rXcKkfCsEg8xXfh0YLM,1158
598
+ vellum/client/types/search_result_document.py,sha256=Gj5ojRV-IxpIyGJ5FfiA8xqvgecWyt_3eSn3Yq6m-gA,1141
599
+ vellum/client/types/search_result_document_request.py,sha256=tUl01YTTNFru45Q4b-OPf7cCOoWpyIkR2XGQGA9qGsk,1148
600
+ vellum/client/types/search_result_merging_request.py,sha256=F8DwSKwvWG0eVjA9DU6KcAuHjBte2JRuOUD9GgVv6xA,639
601
+ vellum/client/types/search_result_meta.py,sha256=zRYuWmz-of72U6YKSvhXg8SOENENtE2jGqghdFG4e_g,693
602
+ vellum/client/types/search_result_meta_request.py,sha256=3iPANrM6fGFo30dbh6A8kODGXljFGdjPttkIvQjmgS0,722
603
+ vellum/client/types/search_result_request.py,sha256=p97v5loqTcF3pYC7aN51Q_QPH321CbG5C8GoUI9txDM,1209
604
+ vellum/client/types/search_results_input.py,sha256=Mrurv14KzJy4gmZAxbR3fJSnCt3HD7m6wPi_2jNuhX0,794
605
+ vellum/client/types/search_results_vellum_value.py,sha256=WgWUByKz40lkfN5zppd7xMZMBll6LeyYuOE98AvAjbw,738
606
+ vellum/client/types/search_results_vellum_value_request.py,sha256=sqqkV32HDvv7NnBStq_0uu5FBwGDTnxfKVVmiC2AH1c,767
607
+ vellum/client/types/search_weights_request.py,sha256=B02uMvDcpgHfiE-2j2-6hre2LeDsViKJDFaHzCcvN0w,792
607
608
  vellum/client/types/secret_type_enum.py,sha256=riVAwmIZxW39waRAr8at9RATpqPkBdEMTQqifHDyMOs,214
608
- vellum/client/types/sentence_chunker_config.py,sha256=is3t8niS19gjRtqewSkLYpskJCbRloCZ78Kfe7zs3vE,709
609
- vellum/client/types/sentence_chunker_config_request.py,sha256=EpGTP4z3YttiThYmdjwIBOI5YfsOlNP17dI9yiYqi3I,716
610
- vellum/client/types/sentence_chunking.py,sha256=guqU3072X4h8Laf6LhTWQ5lpjBpTgoXRxKp5iXJby2U,783
611
- vellum/client/types/sentence_chunking_request.py,sha256=77gv1fVc9IaTuGGx3O1HB0LF9sXM5pSTWksl8BEmvLU,812
612
- vellum/client/types/slim_deployment_read.py,sha256=Gr3wWT1eJKe33MVsW0O0pSIgUF_LE6WFbvFbf5_CVb8,1654
613
- vellum/client/types/slim_document.py,sha256=HJiymYPvRxfxhBUkD8epW0hQ2Vt9PQtv398QsRb4DsI,2395
614
- vellum/client/types/slim_document_document_to_document_index.py,sha256=0LThZhOgIE2kSmIWH9s59_6pEzGRWpx5qS5BBuWXdLk,1551
615
- vellum/client/types/slim_release_review.py,sha256=7DXmD1AVa_Wj7e0qiR7GUN9cSqwkk1JloYmp_3oluQQ,783
616
- vellum/client/types/slim_workflow_deployment.py,sha256=Js-ycMFZ8-kNFPsd4bZew9nI_eN2M_58LzDHeCjkfTg,2009
617
- vellum/client/types/slim_workflow_execution_read.py,sha256=f1GAN4ejtd6kmtYD15cnXceUCpAX1Zs-Y3NhNXrDPCc,1995
618
- vellum/client/types/span_link.py,sha256=hcfj0VJVorSdh6lVrFGqTImo7Ax_3iLdc79Vb5Dz2xE,1426
609
+ vellum/client/types/sentence_chunker_config.py,sha256=WQGyc0jUiATYhQ7ezbBN06--ulLA1pXdrSn4dhqTWsU,673
610
+ vellum/client/types/sentence_chunker_config_request.py,sha256=Da2ANuD4icLxI74emC4z2EEZjeY2k1w9HnEQt2g1AvI,680
611
+ vellum/client/types/sentence_chunking.py,sha256=MyEImiN0dhWEVFvD76Q6mCqIEjZcyY__Hhu0j9Gjs6Y,747
612
+ vellum/client/types/sentence_chunking_request.py,sha256=itrdqiKJJ7UKWVGTfj9sJu3kMSThkBF_Qj-3KqFunP4,776
613
+ vellum/client/types/slim_deployment_read.py,sha256=yg1T-Ly642S3_ozdZuhMPy0lLJjH7nvHlbg_-IH0Ypc,1744
614
+ vellum/client/types/slim_document.py,sha256=2eSbvk2u8NsFsT3SPmDRvdBJsytJ8zPAVhuTsC-hF8E,2359
615
+ vellum/client/types/slim_document_document_to_document_index.py,sha256=Ogo8OFjtmcHjDmIynB9vckfjSZxFNhKM-cYpqSfREGI,1515
616
+ vellum/client/types/slim_release_review.py,sha256=vWNkPXk5wZ_scHsWHz_77PfMZRDn-4qUkqVbCKqY1zQ,747
617
+ vellum/client/types/slim_workflow_deployment.py,sha256=Gm3zwOXx-7Pwm8bh8lgmNsJ8zsZiGUKvDQkNJx9I5qI,2103
618
+ vellum/client/types/slim_workflow_execution_read.py,sha256=6Ep2iQ6tWTCGxzvAh4t3G_4BjHQ3_JZ9WFdc81XGqkA,2302
619
+ vellum/client/types/span_link.py,sha256=0Yss6161cD5irD5RXMoUdvqv3ZVj-zLwot6847_ite8,1450
619
620
  vellum/client/types/span_link_type_enum.py,sha256=NaBXnHnOKMZvgHfjhwJJNqM4wuTOxtGkMIXjN2hU-6A,130
620
- vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
621
- vellum/client/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
622
- vellum/client/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQDe2n7YVLqxbhOaf6Ytc,736
623
- vellum/client/types/streaming_workflow_node_result_event.py,sha256=KyZkXRHyaYa42cJx29oOxmEktx_rEnTYcP4oJi1MIRk,1213
624
- vellum/client/types/string_chat_message_content.py,sha256=6ZVl5cofQXFV2RlEJvVdWWYa9WVe172DPOZ-Uk82lDM,682
625
- vellum/client/types/string_chat_message_content_request.py,sha256=qFB_JJvI4FgbW7bB60tyGChWDNINnHqa7hW13rlOvak,689
626
- vellum/client/types/string_input.py,sha256=fNrA_6lhZ0SMLDIMojmR94n6S7zE5wiSARYmujvT0jM,737
627
- vellum/client/types/string_input_request.py,sha256=6GjNnhuK2krO_8U-id0TOqNyND2GfNpDm7OWd60DyqE,744
628
- vellum/client/types/string_vellum_value.py,sha256=qnMmHG0Mo6T27JtMSr3qFxqsmTfX8xlXE2gqENHWg88,683
629
- vellum/client/types/string_vellum_value_request.py,sha256=qdlhoiJbiss2f-wMmtMsJ4B1otlZYDtyRTCPm8kJBYc,690
630
- vellum/client/types/submit_completion_actual_request.py,sha256=hMWNAGUc54I44kDFKFSXdXTxdfWP18lqo-w5c12kwcU,1737
631
- vellum/client/types/submit_workflow_execution_actual_request.py,sha256=xRCiA1QvQBD0lbZfBZUSZnm_XNOj17jyXXmppztQEB8,535
632
- vellum/client/types/subworkflow_node_result.py,sha256=a2N7E6OSVxH1fQB24j96a6qucw1DgCz7w_hChENNV9A,808
633
- vellum/client/types/subworkflow_node_result_data.py,sha256=np3Wnc5pmnehtMLfJZVz3bozYJN752vf9VERs9rIuqA,600
634
- vellum/client/types/templating_node_array_result.py,sha256=vDeDo6Fz0h9iZ3I7RYpIDri4tSPJ7A9fn-UzwhpAGpE,757
635
- vellum/client/types/templating_node_chat_history_result.py,sha256=RhEeDRtvWOPlLPsSuz3lAA3m8EqmdhB8sI_pwXuPgGg,728
636
- vellum/client/types/templating_node_error_result.py,sha256=A9CkVXU0YUYko0epKmZlIHPwvFNfmLuM3iwduH0OhNU,695
637
- vellum/client/types/templating_node_function_call_result.py,sha256=bJDLDS_N_dzf7w7wfUUaePg0N6_6amaJ8GrtDey8Kvw,721
638
- vellum/client/types/templating_node_json_result.py,sha256=ShHCYLxdf4mO_XYH4GEmdNY2S1RaruGLJGYkP2Td398,653
639
- vellum/client/types/templating_node_number_result.py,sha256=LLlRuHVbhNb4FHbsbClfYHJb083l20UTE-TVrmbhR1U,654
640
- vellum/client/types/templating_node_result.py,sha256=4OQuHveafEiYdi5bQr3INzUIy_WiLNuIwvtQcvKQMUk,826
641
- vellum/client/types/templating_node_result_data.py,sha256=z-CORlK6tsucUk8B8raIDnAjiw91c8Ihb3o09LxUZ0s,711
642
- vellum/client/types/templating_node_result_output.py,sha256=f94nwW79EAAjHKpL70Vc_N2DRq-FC4993g1X79V5Q7M,986
643
- vellum/client/types/templating_node_search_results_result.py,sha256=LRChfWy1btVEuz8AX6x6x_s0o4uKKokc-R3O7kHGr5Q,737
644
- vellum/client/types/templating_node_string_result.py,sha256=b3BOuBwqhYMJHvsfVwtYaFSeau7R4XkyJ6gG37J0x7M,652
645
- vellum/client/types/terminal_node_array_result.py,sha256=GEvQFUnL1EoxjikPdXYqVjbSg8uGAJjZu7biYqcmLs0,903
646
- vellum/client/types/terminal_node_chat_history_result.py,sha256=YGywmDryELuzeLYi6p59pQoCNoPekA6bhSF0sYFAsw0,874
647
- vellum/client/types/terminal_node_error_result.py,sha256=qwhunjngnumpeNoqxnVEbvFoXAyX-CXQ_MusOwOeNv0,841
648
- vellum/client/types/terminal_node_function_call_result.py,sha256=-9tPhggVBQ9wvCHehZl1-L9G7oxrfDdR9aU8TFxowTo,867
649
- vellum/client/types/terminal_node_json_result.py,sha256=vCTnr-xZvBxRmByAiwA8Y0MviNSZ6xQrCM3qSRRisuQ,799
650
- vellum/client/types/terminal_node_number_result.py,sha256=ob2sOXeIjMl0pVdHW9niDzDclhpuAMBYCKY-ow7jXdU,800
651
- vellum/client/types/terminal_node_result.py,sha256=vInG0Y8k8Qlrce9omz_Ktdvz5iC7RbOyEDEZA4o46BU,812
652
- vellum/client/types/terminal_node_result_data.py,sha256=G_ztiIPkmpnTVeOkeZ3-5NJ2KLfU2wFOCblWq4DHLFk,703
653
- vellum/client/types/terminal_node_result_output.py,sha256=f3sAqpRpw9_TfPfW4312I0nwfrRLfaDny-ETFuIieao,936
654
- vellum/client/types/terminal_node_search_results_result.py,sha256=rX_ftp_C7hez_xjPRZm8yJuwMFoM6jsTDfPAseYmzFc,883
655
- vellum/client/types/terminal_node_string_result.py,sha256=CW_nl-fI4YwhCm3YEO_cQW9mjG6rNZo5L-Ic4v1iAMo,798
656
- vellum/client/types/test_case_array_variable_value.py,sha256=PWpLe9rVWzKl_tBNjyJzaMy2mOz8nG84EjQ897yZCWU,848
657
- vellum/client/types/test_case_chat_history_variable_value.py,sha256=YNaaLEmjmQLvflknYW_21y1KfyD-rLLBjIlHQURJhXg,825
658
- vellum/client/types/test_case_error_variable_value.py,sha256=he2fkOcwsRfXfC2hKT3MhzDkXctIi3cNARqhMi13bYk,786
659
- vellum/client/types/test_case_function_call_variable_value.py,sha256=p7Q7jgpZVKDlanszm31E5lTLfxQmegggyto9DHVQXzI,819
660
- vellum/client/types/test_case_json_variable_value.py,sha256=9zsZ4akuC9UOwonJ_EfBArNIzBMMqoFKtfOWEU7Hb6w,742
661
- vellum/client/types/test_case_number_variable_value.py,sha256=HOx2AbyE1vEyJEXRxtaA0HEIqMGOPwDQbmRBmG8V7qA,748
662
- vellum/client/types/test_case_search_results_variable_value.py,sha256=v3dbTBYzwLiqJcfT2HQJFOVHG9LbfKFNmvbjiMCugNE,836
663
- vellum/client/types/test_case_string_variable_value.py,sha256=jeVC226M2hL1rvayOJ0hrC-8ABTGgmJCN2RB2-KKdw4,743
664
- vellum/client/types/test_case_variable_value.py,sha256=NThsFMSIyLi3bF4Z9aQjKMKh4828hfDXc6hamBBQvXk,1013
665
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=g4U01glH0KRH-dEE2gWCN3EoUZwV6CGYLDhBzr3Eb_k,1154
666
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=0kgs_FP8-2YTmufor42V4J5Kbx_Grjo2LcgZgfBiYq0,928
667
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=cUr9LN4YLxkyMXI3wwemmKZtvxSi9K79kPJrmRyknKc,935
668
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=fyBRNbErOr1ixYs84JbvqM9yPEH1D-LDsfGVhIgsdZ4,1192
669
- vellum/client/types/test_suite_run_exec_config.py,sha256=CwsiCKjkRb2S9YJdQYRtnKU87CzbimPyswBwRriv004,879
670
- vellum/client/types/test_suite_run_exec_config_request.py,sha256=GNeLff_kZSWa8gTOc-uGdbea0cF3ESZn5cniCtWon6A,1328
671
- vellum/client/types/test_suite_run_execution.py,sha256=f_pj-3S4P8Gzvf1aEyaroJtnE6hN0aqjLYw0-Uy3UBQ,913
672
- vellum/client/types/test_suite_run_execution_array_output.py,sha256=Qsib2yc2CFDBvsdaLV73j2td3WmrqIp3aHCf1LX0blk,901
673
- vellum/client/types/test_suite_run_execution_chat_history_output.py,sha256=tzeWqczo04aXl-ALhfOHYEabrgOIqmG7E-nA5-l3dME,879
674
- vellum/client/types/test_suite_run_execution_error_output.py,sha256=6UXaVzWivUTQ639W5Tb7EJIudV3Lj4tzkYp_eknAX90,839
675
- vellum/client/types/test_suite_run_execution_function_call_output.py,sha256=jgAk0xgWnJudZh4VhDNb8HfgUAUHA6I8PK_2ExHW9hE,873
676
- vellum/client/types/test_suite_run_execution_json_output.py,sha256=qO-EVGBzKU_zhGYo4hiOrIteymXEc5Hbsea5YC-cnXY,796
677
- vellum/client/types/test_suite_run_execution_metric_definition.py,sha256=5Yd7aQK7vr5swpA8ciMwmMb12wismM5vgCOoGLlAFmU,679
678
- vellum/client/types/test_suite_run_execution_metric_result.py,sha256=8ecNCJU7usF_E79a0jRi388ajMtvx0uJHVe-PnD_uaU,973
679
- vellum/client/types/test_suite_run_execution_number_output.py,sha256=qzD1sny1o6HDZXkGgvXOPclR4-L1VyAfLvQCnLnU_BM,799
680
- vellum/client/types/test_suite_run_execution_output.py,sha256=jxZg_EOMwKjCDH0QyrecZyUW5OqCMMsWmk9PIwI8EUs,1171
681
- vellum/client/types/test_suite_run_execution_search_results_output.py,sha256=30dcLuSRxFZWZgkU2iPNzKcTsT8tJrD1B91UDSaOp3M,890
682
- vellum/client/types/test_suite_run_execution_string_output.py,sha256=0uSsRIOl6QrR1448JQx6pTxK2_AEgLl6sMkqkvNgzng,797
683
- vellum/client/types/test_suite_run_external_exec_config.py,sha256=NxNOeOTVf_6ptV9UKXt3zZyCMhcHMPZDF7IzfXXj9rw,1134
684
- vellum/client/types/test_suite_run_external_exec_config_data.py,sha256=t8SkJUPrLjBk5gEH_eNlZwgw2cvT9HHbOjZHbAWd78Y,867
685
- vellum/client/types/test_suite_run_external_exec_config_data_request.py,sha256=ljDrdc7JojE68lvGqVKTGdO5jaUp6vWD7HwFOJ4tQtI,911
686
- vellum/client/types/test_suite_run_external_exec_config_request.py,sha256=-_nnS5gRa_GUdTats_hxSZejqElSfQtXy90y4B8AhPg,1178
687
- vellum/client/types/test_suite_run_metric_array_output.py,sha256=ARcgoAUzMpu5I3fLVOgFffPls3ROAKCOxW9IWm-0keY,841
688
- vellum/client/types/test_suite_run_metric_error_output.py,sha256=trW1KTH4SJafRfDFRyBS7TpzcT88tXkpWEoysij6IXQ,755
689
- vellum/client/types/test_suite_run_metric_json_output.py,sha256=DI3mJR5kpi8Hm2n6tx6buySHPwTkkbBbr8Lkk4k6HH4,738
690
- vellum/client/types/test_suite_run_metric_number_output.py,sha256=8pddeSds6Rrn0xGqyvgPsG1hr1tu6eOiQAp8kkM_aBk,739
691
- vellum/client/types/test_suite_run_metric_output.py,sha256=z9A4_ZT9_NIHWHkFZakaf_SMn3Y13WRJ_lWzTCzXZ_U,691
692
- vellum/client/types/test_suite_run_metric_string_output.py,sha256=YXerGfpvJdBtKrzgutSqEfG-N6cZoeOL59qZ5k6DwQA,737
693
- vellum/client/types/test_suite_run_progress.py,sha256=A_zazZ2jBOuM-kwfxbgp1obizRTydfNXBebXF0Pz9xo,629
694
- vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py,sha256=FrUaFEfdZq4lyGaC_ZQpq0EyXB7_nRF865h13F-_ihs,870
695
- vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py,sha256=E2W0Ec6Yy6NGHzG-sPe8bYw09g3L_H7TQhh_2I9UNLc,1135
696
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config.py,sha256=NUJXSSLxOxVAGOoQj74m5UqjCTCCeEIgbWGP6kM2Fck,1200
697
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data.py,sha256=IdlTWDda1061PwsHaoGDyB7-2lBVSus7Z8agcdmSOYE,905
698
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data_request.py,sha256=0XxaQKR-pb__We2EDSoiKTcz3v-nKodIYtnwFXFQ_GM,912
699
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_request.py,sha256=psLq8aL-ygkW-HZZFiYerDrCrTf556RuXbOOAUuMvr8,1229
700
- vellum/client/types/test_suite_run_read.py,sha256=OtLFdzxD01jBEmZW_xoXCOwnW9gjfrljNmTbuqtyTGw,1389
621
+ vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=BZZHXI_vq28VAmRbbIIK2wyRSkQpWfOPD7kiydhQmd8,1147
622
+ vellum/client/types/streaming_execute_prompt_event.py,sha256=zqAeXugb9kOgkm7PHIjw5CIL6058WZ4kik3pa18SDbo,1125
623
+ vellum/client/types/streaming_prompt_execution_meta.py,sha256=lcA1w4BQ8qIz0QS_PaYkDKJUb28gKQ2XGcaYb5Brl5w,700
624
+ vellum/client/types/streaming_workflow_node_result_event.py,sha256=eKpkQ0_3dDSBcxLkGzqI56yyf7OzDH8oAH09AbZ6G5s,1317
625
+ vellum/client/types/string_chat_message_content.py,sha256=IQfy5qp3EeR0rD4zaNh3jfkfP2xL80bZWUAE3T-fMJ4,646
626
+ vellum/client/types/string_chat_message_content_request.py,sha256=flXHhRYu2JYl93-THNADa7PYQIUcHIf3OF3LQcpwbWM,653
627
+ vellum/client/types/string_input.py,sha256=SMu1HdIH-hpqQ02en88YtQ-zH9S_vopQWknJJocuLjE,701
628
+ vellum/client/types/string_input_request.py,sha256=2_rjyo0BZSzjIqAze7i_85NjGfrhDuN7mndouOeFJvU,708
629
+ vellum/client/types/string_vellum_value.py,sha256=vZiaksOQM7ZV1VUq4GMvp6pPHwe7cvp2I0QWbzcIzAs,647
630
+ vellum/client/types/string_vellum_value_request.py,sha256=m4MsRQPely2Zl9ehtWXy25yz7fm9Oh3yD8Y8rfF5ZSk,654
631
+ vellum/client/types/submit_completion_actual_request.py,sha256=BzMRkAwAG-nHAXmqn0cSONGKBoMeOaph87--XxBI7FE,1701
632
+ vellum/client/types/submit_workflow_execution_actual_request.py,sha256=rrspprNTKc9h3Q6RfN-xP5Eg7PzViu59hym8oH0GCNU,536
633
+ vellum/client/types/subworkflow_node_result.py,sha256=GD1kEslDE4XzMWKG83SRvIJP4a3PTnWZMR7Xny7Jyjc,772
634
+ vellum/client/types/subworkflow_node_result_data.py,sha256=hvrC5rfiV50hGmUDhaMat3ZA7aubWGD8g-_G7qP1Guc,564
635
+ vellum/client/types/templating_node_array_result.py,sha256=F8xGPm5ZRHysIoVzEHbZXel6qOYRZ2EaCS5yBz1q874,882
636
+ vellum/client/types/templating_node_chat_history_result.py,sha256=oovcfCw2zNm9EVy64kX8EOYNUXjB9cN6T8Qx2j8xaXw,692
637
+ vellum/client/types/templating_node_error_result.py,sha256=yoVMWXzusGa93PsvawMbWrLHair4o7Fxz-ud9jDvws4,659
638
+ vellum/client/types/templating_node_function_call_result.py,sha256=v6rxTFklUDasRfUTP0KsPWfBJIMgR-sRJE6yooemTUk,685
639
+ vellum/client/types/templating_node_json_result.py,sha256=bfXk83cgflJZti94tfH-Jcwgf4arK24ryBWNBcacYCo,617
640
+ vellum/client/types/templating_node_number_result.py,sha256=Xeh72rSyC1_044B4GEnayOJLThxuyN7eVNG9MnHvk9E,618
641
+ vellum/client/types/templating_node_result.py,sha256=7H-tpbHfBiIxVPPp6314JSxuWAYXj5fMgrtmQ-c4guo,918
642
+ vellum/client/types/templating_node_result_data.py,sha256=_KsPc6jo8HXukp9XdufAa-eSZS8B9aLg7r1r-1wPZPA,807
643
+ vellum/client/types/templating_node_result_output.py,sha256=DBJafZFVrR2jWTUKv9AtNONuLHvs1I8IsMiUkYMk0DA,987
644
+ vellum/client/types/templating_node_search_results_result.py,sha256=vE9qWO9CqPaGGHEfH_hwVXWwCXxZ8E6wOXL4sf03KI8,701
645
+ vellum/client/types/templating_node_string_result.py,sha256=AJ-W-fuLUOWMPJwx92AqQNE6VC9IQF_o57raLddctNc,616
646
+ vellum/client/types/terminal_node_array_result.py,sha256=vCkVGcBvsHOyE4LyKV5V_7WHRPnziblOijLzGZgLXrk,1026
647
+ vellum/client/types/terminal_node_chat_history_result.py,sha256=NbvYG2KEXQyHA2m4Y6s0zYvKtD9Tcyq8lut9oeGDbz4,838
648
+ vellum/client/types/terminal_node_error_result.py,sha256=t5M0DRIXs_Pgzcqsqky_KujZKxm4OBs_i4A-xREIPyY,805
649
+ vellum/client/types/terminal_node_function_call_result.py,sha256=Q_PqlspwFPUHirYWpsIW_y3iiIUbNZNRJtvjAoWb04E,831
650
+ vellum/client/types/terminal_node_json_result.py,sha256=nT4IRHj49qrcYH5va4u88eE3JdUvDdRlHagZ5Urks2Q,763
651
+ vellum/client/types/terminal_node_number_result.py,sha256=jTUBIHFo5spfbKYXgDJnRxQ9Z5o-2HCfUZfoFcgY2PE,764
652
+ vellum/client/types/terminal_node_result.py,sha256=s3FvGeq-OuXGtHlljab1dHGnqrWti68kp6wU9ZD2PSU,902
653
+ vellum/client/types/terminal_node_result_data.py,sha256=xRh2rJa4qSj5rfToNY92VL0beVbx1hZMwq9MD9mT9B4,797
654
+ vellum/client/types/terminal_node_result_output.py,sha256=hOzkyk90PDY2ZGd0JSrlEhNTSwPaHjca26l_F6uSnc0,937
655
+ vellum/client/types/terminal_node_search_results_result.py,sha256=jXRnFcB7aSpEP7ivEk1rCd0jtDP3pXOODEuEhCm_Lt4,847
656
+ vellum/client/types/terminal_node_string_result.py,sha256=Fj4v9vZI5gijB9xtrQ7u6ue7TgDmeA3ziW3yxuZbGUw,762
657
+ vellum/client/types/test_case_array_variable_value.py,sha256=_SLmKw4QDYnUjk1rtdJgXyQ0wrEHRXOSS7mmTFcjniM,974
658
+ vellum/client/types/test_case_chat_history_variable_value.py,sha256=YDKIN6Kmk0iE_zjVZP60JK7gGkBTgqGtLPRjYuzmC1Q,789
659
+ vellum/client/types/test_case_error_variable_value.py,sha256=XE0LthR-AFjn4gAYIGdjaB0EoRUNYxiU1KrnvWiGOGE,750
660
+ vellum/client/types/test_case_function_call_variable_value.py,sha256=8l3L_bt4MwmdoejHVgL25rPjqMI1AmPZTljyREXe9Fg,783
661
+ vellum/client/types/test_case_json_variable_value.py,sha256=-wy1WvxTZcKSVFhrpdJ7GukQBmYOokxeIDxF798Epzw,706
662
+ vellum/client/types/test_case_number_variable_value.py,sha256=im2Ouf0e869f4SEZKah6564-UEKBmyu89DYvj1fg1io,712
663
+ vellum/client/types/test_case_search_results_variable_value.py,sha256=UDkPZPUbQ0ymfEsxrcBSfA9P3XvUf7hvs3ivREuBJ1w,800
664
+ vellum/client/types/test_case_string_variable_value.py,sha256=L6qt-PCBp6m6g8BZgiy8tePIHm58ThnxDbPEKkAnEKQ,707
665
+ vellum/client/types/test_case_variable_value.py,sha256=8xNyIYjPH7_7K9l1GXOdreWsXaHsEzveRkzXo5_0tpQ,1014
666
+ vellum/client/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=Z8xAr72cdA_fA_WKenqCOTGnqB0kFXQyRPctYDc7eFE,1118
667
+ vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=CxtPXzIMLf4N__mSl0w8B9KHQH6yB0lPlNWkKWEGCWM,892
668
+ vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=Rlkjn7P6N2Ok8Zjt6qZiKJ3-ep3F9gSGAFhJOyIVY20,899
669
+ vellum/client/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=qQa_YdBR0uhA0pCjYmckTweugakfoMHuFiVU3cqRkZQ,1156
670
+ vellum/client/types/test_suite_run_exec_config.py,sha256=KDaHoiqjAp9jAUD6wrbI0f1OZSGjiSMGRLwsffsm6eA,880
671
+ vellum/client/types/test_suite_run_exec_config_request.py,sha256=JFPgEg2AMVPY7BHdSkw0_EZPNTAG7vUnI3ayUaguy94,1329
672
+ vellum/client/types/test_suite_run_execution.py,sha256=3UaHAP7TTVRCex4gLwRGE5vIg2Y6BcxQt5Z0sk8omtw,1006
673
+ vellum/client/types/test_suite_run_execution_array_output.py,sha256=z_pnWeqqUmhWH3VIBryk1vD3IV_JP0ca8-LoK9aJV6o,1033
674
+ vellum/client/types/test_suite_run_execution_chat_history_output.py,sha256=4nZeb9qLPoXOSzeIQ7jmqx6hzCmR1YAFoAvRcPcxrdM,843
675
+ vellum/client/types/test_suite_run_execution_error_output.py,sha256=IQcX_D4f96JEGahUaEzNzujyg2lcEnLBnxUzNyAujq4,803
676
+ vellum/client/types/test_suite_run_execution_function_call_output.py,sha256=utyjpk3rfS0ZFGpm60S4ro3raXARs1vSl1zhLIdQN6U,837
677
+ vellum/client/types/test_suite_run_execution_json_output.py,sha256=g8bDBwc57ymYFcmdoodgA6-x54WXry10whkX017dLlU,760
678
+ vellum/client/types/test_suite_run_execution_metric_definition.py,sha256=Pk0ovGRnHDdfNeWvofajljzJdNl_YpEFIzvGZKWXOJM,643
679
+ vellum/client/types/test_suite_run_execution_metric_result.py,sha256=evWV1Tz8ka_TFDc5QFUIHys4_KNiWxi-dhKIqG2eGXc,1078
680
+ vellum/client/types/test_suite_run_execution_number_output.py,sha256=xz6nn6Ds7UNXD1tepaMgDFjJU5ZrUVnRnzwdLTxuQxE,763
681
+ vellum/client/types/test_suite_run_execution_output.py,sha256=vV-Jo2ymzeBw976bMqm8od5MKecEvaRu-VvCFMTJJfI,1172
682
+ vellum/client/types/test_suite_run_execution_search_results_output.py,sha256=H9V8puqNpiivq28CyU5Lxa1ATNJ3GxcU8dXjQQYDKaU,854
683
+ vellum/client/types/test_suite_run_execution_string_output.py,sha256=hJKQHZ9-O7vNLAQ6Pw2OaEoeDAHE-fEuRjj0SQ6JM9M,761
684
+ vellum/client/types/test_suite_run_external_exec_config.py,sha256=NKvB0zL5Ilv-LFlWKCp4T35RNIbhWyUx6ZQHc1TDJ10,1236
685
+ vellum/client/types/test_suite_run_external_exec_config_data.py,sha256=ArI4NeOv4Kv50BhFpEi2NnqPylGpmlXUMopbLQvaYds,973
686
+ vellum/client/types/test_suite_run_external_exec_config_data_request.py,sha256=FvkkIQOR0PVuvhSY-_Ii6P_upzDGeOodRbjw9xk_M4g,1024
687
+ vellum/client/types/test_suite_run_external_exec_config_request.py,sha256=T5KZ83Yb3J_Ib-Dg15MQW4o91cv_bBTfcxI4_pOC98Q,1287
688
+ vellum/client/types/test_suite_run_metric_array_output.py,sha256=GhnpztvhwDd9jnro1jbqr8Lek1WxR1B9AreeTjo1kcQ,970
689
+ vellum/client/types/test_suite_run_metric_error_output.py,sha256=EdDmk6ZDBrOm4z5feIiX55uXG0yd5K1Od7ps0KTQz2w,719
690
+ vellum/client/types/test_suite_run_metric_json_output.py,sha256=dqRt4OXu-WNxZC-D_HGC8IkVvHyRbYnbGMTS7DUy-60,702
691
+ vellum/client/types/test_suite_run_metric_number_output.py,sha256=YLeoS3BCw8Ut8PwjHNOq1xzjvLdbokxFrZX_XxlqxH8,703
692
+ vellum/client/types/test_suite_run_metric_output.py,sha256=fUzsVYUfGtl6PNzWF6iCOZP0kdKkjNBdBGzzg0yNvCI,692
693
+ vellum/client/types/test_suite_run_metric_string_output.py,sha256=OOxArysjkhsqnnxRqVE5F6eLA9N3t-7C6GrYpqckruY,701
694
+ vellum/client/types/test_suite_run_progress.py,sha256=1FwAtsAygvHSQeuj6yCDo2zp4LM5iAnMP4idkdQQWEk,593
695
+ vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py,sha256=M7qSqmISyhlQ4hsoFcdT7_YOzJ4mhoiLvna_hVXN8Mo,834
696
+ vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py,sha256=q7-0SNo2AKQBT4Higo7JC32xYnL-m9NMwrjgvPLj7M4,1099
697
+ vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config.py,sha256=eWjiuDCSeV1ttSJksMCqEBM7s04kiEad5vCU5Igvk1Y,1164
698
+ vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data.py,sha256=QymkF0B_Oha6HZqsRD5pGVb_3QdiYnH64B4EULmGf5o,869
699
+ vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data_request.py,sha256=12uNSgqaCWyFWZGsmhVlEFIZEVIxZvEgAdBmpfuxCvU,876
700
+ vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_request.py,sha256=SEbD6VjRm-yNuG5g6vpuvRcdbvNvkL4UcHCUzp7pB2I,1193
701
+ vellum/client/types/test_suite_run_read.py,sha256=PjCWtFZ3IgDFKB9-Nqn5ae8RFv20JK7fFuVvPuSrv-A,1477
701
702
  vellum/client/types/test_suite_run_state.py,sha256=E4f_AfzXBnxhObLLZ12dBzdoYlRm-gaTqkzrZQ_KfCo,197
702
- vellum/client/types/test_suite_run_test_suite.py,sha256=Wcmbk1XglVFKiDcqxsW7-c7QtOrIqJBK-vWXKXvORXY,602
703
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=0ANnBKsPqBNdEoZGEfwRzZKbXbzT24T2YNC7c-3Qy1M,1144
704
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=Omps96mVTbhyg8ZknhAdtAC4TU4J1OG_Y2yqwlovNbU,941
705
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=n3rbUAmoqjn-U-C6GJL-zVJJf0n_J-6rLIeH0tm3Ixg,948
706
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=tEknB5YPt5zLKTkXnsuWaPRkFPHpIDQImREmlONfMIo,1182
707
- vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py,sha256=Ay_JkgQmptHJbgbWoLQcr-c8pYFfsMqRCM0xxIdmQ3I,707
708
- vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py,sha256=mmNKQA6Qv0MMZkpS96NBdhZGBRYbUs2vQXCURnsCmw0,1149
709
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config.py,sha256=2scqgAbRo6j7cYV2NZO1VMio5WOwJG_97IxXVqC4G18,1214
710
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data.py,sha256=FPIw8GlWh5cH6af2_Y7wS98j_Zi9O0G1JIMBsej__i0,915
711
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data_request.py,sha256=Q8aYzR-AJ18_s7KJfBZeb8jbFxhZVfk1qQvhO7ShGH0,922
712
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_request.py,sha256=1ekG2-FWV-dl2TL0QYZEeHo2qLOMu8G_T-wFt5e04AE,1243
713
- vellum/client/types/test_suite_test_case.py,sha256=KH7o5JJGGvlKcA08VwOBfKUOzR5shkRzqkBte9tYpPU,886
714
- vellum/client/types/test_suite_test_case_bulk_operation_request.py,sha256=czPKFQBdm-Fil_sx8zxUgR9DJSJfAlL6uB6KcRzwwbU,767
715
- vellum/client/types/test_suite_test_case_bulk_result.py,sha256=b_jDXDB0gWAGsWyf04UJhRwVCUe5kTu8S7gh78_yYF0,648
716
- vellum/client/types/test_suite_test_case_create_bulk_operation_request.py,sha256=r7A4OFagJn8xgjrEoFhS432pAZz_e3TjHeEDXiW1lZ8,1070
717
- vellum/client/types/test_suite_test_case_created_bulk_result.py,sha256=VPAkf3aIrNZnp-fg7ngIZ0RiMLm5Z_9VzJ-2qzAZZOw,848
718
- vellum/client/types/test_suite_test_case_created_bulk_result_data.py,sha256=eTszio4NinfSkpJn_mk6DAzn0u9_JeME8g7P_MVipfg,650
719
- vellum/client/types/test_suite_test_case_delete_bulk_operation_data_request.py,sha256=rMzoLHZgzDyNYXM9kS6UkWmKQkL1RPwRzPO1cqe1T00,588
720
- vellum/client/types/test_suite_test_case_delete_bulk_operation_request.py,sha256=A95jxH3q22KYRATc_UYM5-Snn_95P6CuBrosgLbFh7I,1141
721
- vellum/client/types/test_suite_test_case_deleted_bulk_result.py,sha256=edvZfAhNONFlxtLoIT4Nwp9Jb6s2B86fdfu76Gbs5Xw,1012
722
- vellum/client/types/test_suite_test_case_deleted_bulk_result_data.py,sha256=H5La2h0P0hYMPM0Ez9nSpWhlR1ca9h1W-uz_dxYd2rE,649
723
- vellum/client/types/test_suite_test_case_rejected_bulk_result.py,sha256=tKyUPzR8LozrctBmmyBHkXH-r2ujo5hoQxFbaCMGL9g,1043
724
- vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=LWAFbgv3x4BCOfbDnlFQX6sA0eRWaF3KsMZ1Mng89-o,1077
725
- vellum/client/types/test_suite_test_case_replaced_bulk_result.py,sha256=BIlXI7udygWrwtyRhCl8hmExHbkAl9lI8s3sm1G5iGc,1019
726
- vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=ORmcUvwzvRLRaoFhxdXFIKzPxOI6PU1kESl0R6rsJuw,651
727
- vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=PrKuqePiXBQv6iLAxsk4xQg29KGdOlqMDhIVdGNxuz4,1071
728
- vellum/client/types/thinking_vellum_value.py,sha256=q6IZFZrAXkoYCQOfHLLKWCTYj_zW8HJIzovO6IlzY-A,742
729
- vellum/client/types/thinking_vellum_value_request.py,sha256=dHxjlH_6nxRjcixAudmvwwOMkWc4JmLHfRWKK4rGssA,771
730
- vellum/client/types/token_overlapping_window_chunker_config.py,sha256=_8vR9AiZQmb5OA3OojbjuTOGiGNTS9EY0vXrmej_TM0,731
731
- vellum/client/types/token_overlapping_window_chunker_config_request.py,sha256=O58w5om6EsCgZeqM7n3KSzwo1PqINyHWln46EFW4Inc,738
732
- vellum/client/types/token_overlapping_window_chunking.py,sha256=TghiPKWZg3Eg_UzGI9VmjQgVPZFABrnhfsz4iPLEem8,889
733
- vellum/client/types/token_overlapping_window_chunking_request.py,sha256=IjCs9UDrwBT6tnffdInd3278Lg2L46jXgn0V-sEBwb0,918
703
+ vellum/client/types/test_suite_run_test_suite.py,sha256=EjetLLSXN0zK0bOID3Ag7ydYcnwVQZSLCdmT4VKvwlc,566
704
+ vellum/client/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=YzsCc3xE_gotmneVulsykAUbfaCzCtr-0oNn8hZ12UE,1108
705
+ vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=u9IAgTGOUtL3v61D5x9NNx-uPgrGcIPTrCG9oX4lciM,905
706
+ vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=JAY9D1SDCoSd6Ei2rHT3lSJwWfU6v_Dqtju05pib6JE,912
707
+ vellum/client/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=c20qc57I8GbFlNUBUrULMeS7T9C5DDJ03NjbWU4UTqs,1146
708
+ vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py,sha256=3IXiAUzn_gCBXdNRjirRqJ08EuEoYfpILJCjkRGcfuk,671
709
+ vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py,sha256=fQoXauVajB_LIFlM1uvhy65jRUNfDyC4T5er5o3-BF0,1113
710
+ vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config.py,sha256=NkWEfjAwOVUFQlo2qojUGyK_BilNTi5_ahPSSe9z2Tg,1178
711
+ vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data.py,sha256=jxFz4AdSFacdrdlch1QU2Ytjz_hUU5NuNUV-zSBky2w,879
712
+ vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data_request.py,sha256=In-iLdFKgB4ZwavE4EAt7zOWNEQJnvcveFOwaZmOlhk,886
713
+ vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_request.py,sha256=yiSOgOebH-EyvJPUmmY58DdYn41CfdN6DUo_Uv4X0vY,1207
714
+ vellum/client/types/test_suite_test_case.py,sha256=79-FCoq7_RpeczGIJClzTm4ubDgON_7gFQO_cFuedeA,975
715
+ vellum/client/types/test_suite_test_case_bulk_operation_request.py,sha256=IyAx369OZh9n8Kqm-cWqr4qTIAT-K3hA07rD0uBjymk,768
716
+ vellum/client/types/test_suite_test_case_bulk_result.py,sha256=nxUaeBMfZjQLNwitzRx5QwrWbFYH-R7Fy_RFQ1sycfs,649
717
+ vellum/client/types/test_suite_test_case_create_bulk_operation_request.py,sha256=mTHCqbqO4QX4_mj1b2TMcY1V1oaXKtsZXDeJZyPPDBU,1185
718
+ vellum/client/types/test_suite_test_case_created_bulk_result.py,sha256=-Djb-AykEDp8eNmHZfUJHy69RP1DANirV7UHjZEu7NQ,812
719
+ vellum/client/types/test_suite_test_case_created_bulk_result_data.py,sha256=Wcwon0sUdi6zz-jvLJsEKk9RVaryBxGCtIb4L0DgcbU,614
720
+ vellum/client/types/test_suite_test_case_delete_bulk_operation_data_request.py,sha256=zR6cTZL-UgW4s8VjXjRhq8b7ziw_PClN73VOMAHDrXM,552
721
+ vellum/client/types/test_suite_test_case_delete_bulk_operation_request.py,sha256=dO6xq0jh4BhhbxldZGGNhjRG4Z2Ud-Iu16S2HsBaOxQ,1105
722
+ vellum/client/types/test_suite_test_case_deleted_bulk_result.py,sha256=-0icw72FrG9iqWR2jMVO1RiOggvPabXhyxoDVNZkv50,976
723
+ vellum/client/types/test_suite_test_case_deleted_bulk_result_data.py,sha256=WNP4dCetpkJwBJDZSFja3J8eAGzjR9caS5B7uL9HyO4,613
724
+ vellum/client/types/test_suite_test_case_rejected_bulk_result.py,sha256=ANUSuFG4liG3JD6d1Kn6wW4OPGOvXKnsPrBhDfTDxHw,1007
725
+ vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=1keSvkKvtDcZK3RKYOJNwsjs0WCzKNTgyyKsHClNXFU,1193
726
+ vellum/client/types/test_suite_test_case_replaced_bulk_result.py,sha256=ayBas-IlqiB5dYIFe1LwrNZopX6Fa0UVSC9qKG6FTLU,983
727
+ vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=7J3rm3TxTrZZYYqIn0cG7dzfzKDv2SvMiiqqEtnIRH8,615
728
+ vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=-2dOIFbDJ9KUWoxxM9OIcQGFUp0SQ7Dhj1dLntxuqTY,1186
729
+ vellum/client/types/thinking_vellum_value.py,sha256=rUWxPBPmgWknhZsmUeySWzCh5lneFURM8RMHuaaRQi8,706
730
+ vellum/client/types/thinking_vellum_value_request.py,sha256=z2XSLMLiHN77UlCunkR0hqyYbGhU8-Yo-i0Wy9_GAGE,735
731
+ vellum/client/types/token_overlapping_window_chunker_config.py,sha256=DusQI1WCr74EKHWkhU_br0gGBgzdlfuT4ecfHZl0zk0,695
732
+ vellum/client/types/token_overlapping_window_chunker_config_request.py,sha256=nxvP5rh8VbvE8AzOFXUBCyNoooDqRS7AmgwkwhCS9ZY,702
733
+ vellum/client/types/token_overlapping_window_chunking.py,sha256=waAqTJfw2hVCg6OhQ0FsprHJbvlOxTzjtvF8_ZdtPd0,853
734
+ vellum/client/types/token_overlapping_window_chunking_request.py,sha256=ez-hqu3q-TzqaHsPVvSZ3EY1mqoDeFGz1dnpeEwJByA,882
734
735
  vellum/client/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
735
- vellum/client/types/upload_document_response.py,sha256=6_5Cm4yBPq5nD-rEql6GsmrAtSVVtNRczOL5YwsBVMI,649
736
- vellum/client/types/upsert_test_suite_test_case_request.py,sha256=LSaNYUfgTthB18Pxu8WY_feQiLi4z7AQyzDFMts1quc,1876
737
- vellum/client/types/variable_prompt_block.py,sha256=PZxTq_zu7wa5r2eTBbwCRL7hwDKaLaBT3URB1RR2WKw,946
738
- vellum/client/types/vellum_audio.py,sha256=oPm1bcxk7fTfWfHWOPSLvrZrRBjCyPDVDRMACPoWmMI,721
739
- vellum/client/types/vellum_audio_request.py,sha256=y9CZgQ1TteW0AHNk8GuAZLNVFa981rh7P9vyV8bfgys,728
740
- vellum/client/types/vellum_code_resource_definition.py,sha256=-Y7pbKPBZv0CBrqOvnxHmXeRjy0908G0xXfoCpbpIwc,697
741
- vellum/client/types/vellum_document.py,sha256=DCTb0N-Y5bI9SHi8ykGiFCVT5WR1wucPN0VZV5MKitU,640
742
- vellum/client/types/vellum_document_request.py,sha256=FrokE5NWvTqSKoCKbBLiKq_4iqYaJC5WOwFJyYLdLFI,647
743
- vellum/client/types/vellum_error.py,sha256=jCKfuCkDTiyFb1-QyP2cg0wReja6wMuooKPAjNhBA0M,643
736
+ vellum/client/types/upload_document_response.py,sha256=C-JP0uAraD8waVwCNRM4FRCRglmv78m532gpy2Q9_Oc,613
737
+ vellum/client/types/upsert_test_suite_test_case_request.py,sha256=VZGW1_Bw5cvU7RDg7MhT3A9C3ftyeYnAJaDMiil1FuQ,1978
738
+ vellum/client/types/variable_prompt_block.py,sha256=417cXRq9V33iWTDWiX941VzOwhzfHvUHYPjgUev9Kf0,910
739
+ vellum/client/types/vellum_audio.py,sha256=rgL5GPBKDYk0PPQX_2XkerVERBxra9OR3k_PP57ruTc,685
740
+ vellum/client/types/vellum_audio_request.py,sha256=vtkd49BVlLrY9UF3Yk52P5sDbtdY7sY9_XeMBU_VDm0,692
741
+ vellum/client/types/vellum_code_resource_definition.py,sha256=XdueTR342BDjevZ3ktJJI99RqRED4A5SUOyzPt2K6us,661
742
+ vellum/client/types/vellum_document.py,sha256=qwXqMS2Eud2a5KmF8QHhU_vJzDX0g5cesrCpmBqREsA,604
743
+ vellum/client/types/vellum_document_request.py,sha256=P9vA7ZDNeaHNlMqyzfl-ZD4bpdf-xA5mH8R1QuOAmOY,611
744
+ vellum/client/types/vellum_error.py,sha256=C2nOwYaKh1DdQE32y45SkD8kLnEPvWQlm8khYdsRjS4,607
744
745
  vellum/client/types/vellum_error_code_enum.py,sha256=OtW7fuM3RrRIDHbbJtk2FxPf70JjP4XYCBdc6lKPIVA,330
745
- vellum/client/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
746
- vellum/client/types/vellum_image.py,sha256=wkFRgxOkxFPrmRdWTO58_41_vk0HYn5k4xsc-5ywxEs,637
747
- vellum/client/types/vellum_image_request.py,sha256=_Gr4L7PSY8PNQINyTy04hPdwLc8_bR1RTUWZ73RQRYM,644
748
- vellum/client/types/vellum_node_execution_event.py,sha256=64a6Gw9pGD5andcz1VOXI3fRjpoA_xiwv2T9GK6HLpA,735
749
- vellum/client/types/vellum_sdk_error.py,sha256=1AyCu_sUa8gx5wUJg5EtDYbvs9uQPhZfHjns1X3n8gI,656
746
+ vellum/client/types/vellum_error_request.py,sha256=1kIZ_pAOBQlESbwZK-t5uRuYZp0U1X7sfpWIUYZOYTQ,614
747
+ vellum/client/types/vellum_image.py,sha256=LAGUYBDsT0bmMOqgbaeCTCy2w4zAeHEyUIgPtmdjjJ4,601
748
+ vellum/client/types/vellum_image_request.py,sha256=6DoI2AdJIG8NShHSslpHvsFUw5PwIMconjlHSipOP5Q,608
749
+ vellum/client/types/vellum_node_execution_event.py,sha256=-MXat2wAZx4sx3JRp7gwJIOInPNwPMDpZmXtP8NC3O8,736
750
+ vellum/client/types/vellum_sdk_error.py,sha256=I_27erm4-Qaj9CCCuO2Vj61O_kdT7VZ02Bh9KbGt-p0,620
750
751
  vellum/client/types/vellum_sdk_error_code_enum.py,sha256=a2K6XJvl72tNn82zyx5QpzYGgLfYWVBKY-o8jeDqKoM,504
751
- vellum/client/types/vellum_secret.py,sha256=jru3nBCquZHZ3wEdpgKZNmy2WFh26PVKrTNaXeVSsZQ,555
752
- vellum/client/types/vellum_span.py,sha256=V5P1z-OFqgQQAZjek2toYudlh-fCu0NTt5uKuKm9hd0,258
753
- vellum/client/types/vellum_value.py,sha256=eMg1StXImnx5ow09AbQmjz3YfoJndCYP23LU5y1M0I8,1129
754
- vellum/client/types/vellum_value_logical_condition_group_request.py,sha256=zdcBnm-qQbHHexNdM17WjMXNVRCPF8Vp7Sbs0a1d8Qw,1270
755
- vellum/client/types/vellum_value_logical_condition_request.py,sha256=c2gnVEmsrsJSRbx7DGlv8lBpgLRlOHSW1RNo-akbyWo,966
756
- vellum/client/types/vellum_value_logical_expression_request.py,sha256=vjNsI1NUAkwxLwIXJM_DVXTObyAM63gOfHj6aHw7osc,479
757
- vellum/client/types/vellum_value_request.py,sha256=zmu0DFiXuCkt7PxbhJc7giM_U0GPoMPjN5xE9LKhqhA,1400
758
- vellum/client/types/vellum_variable.py,sha256=BDcccISJsycsrW3E5A5RTIOfxS_83ofkleOPP1upqW4,959
759
- vellum/client/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
760
- vellum/client/types/vellum_variable_type.py,sha256=epYV-PY0NkvUntKzgzqelWMq9Dzmh7Y32c19GB_2mh0,411
761
- vellum/client/types/vellum_workflow_execution_event.py,sha256=H8rP3_6a6LTvemoHfsmI2THpTRf8PYrZQcjoeTzf-44,934
762
- vellum/client/types/workflow_deployment_event_executions_response.py,sha256=arcWX7d-qrfFc5-_AkbqdSJAsxXakESJaHkg_xTrsZs,1249
763
- vellum/client/types/workflow_deployment_history_item.py,sha256=w5yqAtmYWw8kTljYEVBa8-fLxKsrBA8Img7IC3GjZG4,1226
764
- vellum/client/types/workflow_deployment_parent_context.py,sha256=P4-KVpe2TY0MHPqu9pmAAvgCGyWimEwE9AOZA_F_vnk,1772
765
- vellum/client/types/workflow_deployment_read.py,sha256=mxsi0mAGWfld_p6Q48kkmC7fqcMALZOFf4QmCwVBGEk,2183
766
- vellum/client/types/workflow_deployment_release.py,sha256=pBFhfudeWCxl2P1HYP74t8N49zjy3aRGT8dK5NnuJZg,1423
767
- vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=irWt901SImKChLayz7_52C1W7JldKiQHweqkjuMUoNQ,586
768
- vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=V1Eb3goBX2lle851LkhR1tbCFa0z_O-yhMuQWCN6c-g,773
769
- vellum/client/types/workflow_error.py,sha256=EQajkEmLS64T0wYm0goHQl0rT7Lguurk8pLwkhjsgAI,282
770
- vellum/client/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
771
- vellum/client/types/workflow_event_execution_read.py,sha256=rDUpW-R5vwrEekZg0eF65mf5QPIPeYHfKiZ1lUD4kuc,2148
772
- vellum/client/types/workflow_execution_actual.py,sha256=RC5t5wfnbHJ0jvSV_rk3OK38u1v30T7nFlQNk4IVYs0,867
773
- vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
774
- vellum/client/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB2bTznTMFExSZdBhTkmelf1h4Q,1931
775
- vellum/client/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
776
- vellum/client/types/workflow_execution_detail.py,sha256=74Yd8OE8oL3Q3EoripiaEYX6qV9X0qRfavnyyUpan1Y,1855
752
+ vellum/client/types/vellum_secret.py,sha256=04WlBWphqiJSUKM2NeJE32IDt-ZpVO_LOXkpXvBh3f0,519
753
+ vellum/client/types/vellum_span.py,sha256=dmZOBXlDeXx4eLvBJBiOp07xuyjhisgXgnvYFSmctYE,259
754
+ vellum/client/types/vellum_value.py,sha256=douOrlRh2ko1gmN8oDjsaoAEtyDcfq-OV_GThW92GNk,1188
755
+ vellum/client/types/vellum_value_logical_condition_group_request.py,sha256=M1OzHKzz-kgVqI0g1UgzHIHT4l5G63QC__oiFAc_Z8w,1236
756
+ vellum/client/types/vellum_value_logical_condition_request.py,sha256=fVn5n1s7zhBqhm9gCGXetJEdp4uzVwCdN27Z-60LzhY,1102
757
+ vellum/client/types/vellum_value_logical_expression_request.py,sha256=9wLBN5ElbGGzlh2nxLSyscBfqUckRdjIXLTjEF7YjDs,467
758
+ vellum/client/types/vellum_value_request.py,sha256=q3IizmDhUA6anyUXdgfiGt_lqVbybAXESbwYCkq8AgY,1481
759
+ vellum/client/types/vellum_variable.py,sha256=s11uanDj-4vJk36Hd6yh4QmUbGCNZbU0L-b0hm2nQ9w,1073
760
+ vellum/client/types/vellum_variable_extensions.py,sha256=3rZh6iIEJmuRxf3qElGn1VrBOjBLWFkSOn4ae4tgYKo,649
761
+ vellum/client/types/vellum_variable_type.py,sha256=InflpFqY_q98TGk163bJm0tjzo_L2t7iehsG_6yzPiM,428
762
+ vellum/client/types/vellum_video.py,sha256=ll3cfGac2Q3O0RUxhCSodTUmfqMh0xoVBh_EWhYRD2A,685
763
+ vellum/client/types/vellum_video_request.py,sha256=LY4tTkuqXY1YBdX90DsY_4MsFe_7cil4zJRW27gGQrA,692
764
+ vellum/client/types/vellum_workflow_execution_event.py,sha256=0jh-c8xETsu-WRLjtsecleCVww95IQUwlEIk3m8goKo,935
765
+ vellum/client/types/video_chat_message_content.py,sha256=f62vr2Mqe23JupVzwwSh0IhYAwg3xrcSFXyfQmXgBCU,688
766
+ vellum/client/types/video_chat_message_content_request.py,sha256=TMAFrhONSPuzERYcXCsrs_7G6F8kJGuMVV2V76clHXQ,717
767
+ vellum/client/types/video_prompt_block.py,sha256=8uyJRzNnoV6vB4sVPxtxx9gsVkLsfHaobLcQM4CdWTY,977
768
+ vellum/client/types/video_vellum_value.py,sha256=8KfVyPZ0b3nv0wuo-p88yE9jc5VyYXk0HPnesgiYGjY,711
769
+ vellum/client/types/video_vellum_value_request.py,sha256=q6dptI5XdJNFwtTRlNyPqU0EUlRDFlhH8GjJgMzY2c8,740
770
+ vellum/client/types/workflow_deployment_event_executions_response.py,sha256=KXzRC0iaXsBu9ezA4p7PIHL4-IWIQ-lX6NW6noTHtZ4,1570
771
+ vellum/client/types/workflow_deployment_history_item.py,sha256=RF_ByBLXRo47MhAuyUV4FkxmN_j879-UylfRyZaYAm0,1327
772
+ vellum/client/types/workflow_deployment_parent_context.py,sha256=1JdTw3LL6tgCgiMVrX35SZVu7mZcxz6SbxWPCUBZ09s,1796
773
+ vellum/client/types/workflow_deployment_read.py,sha256=dLot3_qIrajmCdDVKSHm7fq5wCwjcQe7gSn8BgcM0kA,2277
774
+ vellum/client/types/workflow_deployment_release.py,sha256=yd9Okgpdm8Oob9VmIKaksZjmRv2uLHGJtc-H5sO10F8,1520
775
+ vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=ZmQhemAQEqARhkSvc9DFdgfTKQfSHvRTS9reW1Wx9dI,550
776
+ vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=VbVrwsDHapwPSsGEt8OM9Gjs31esIqkp8ta5zrZvPTw,885
777
+ vellum/client/types/workflow_error.py,sha256=iDMQ3Wx7E8lf6BYtBTGpeIxG46iF9mjzTpjxyJVTXgM,283
778
+ vellum/client/types/workflow_event_error.py,sha256=fHcTT7jmu0wPARjHtTBQl25V8aM2Cble60A831b6tVk,651
779
+ vellum/client/types/workflow_event_execution_read.py,sha256=DRB19CN0E3r3t1mtfNLhaxiVtPKh5nJLYkCwVtomM7w,2456
780
+ vellum/client/types/workflow_execution_actual.py,sha256=QJn7xXOtSJT30se2KdOyAYVJKjU53uhdvpjcMDIz1eM,962
781
+ vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=E3Vt4l6PpE24_teWe3Kfu_4z1sbosaz_Uk1iUI9cZ-s,1957
782
+ vellum/client/types/workflow_execution_actual_json_request.py,sha256=jLsQxdg7SVyUkdu_Gyo3iDKgZcQnO5hsP0PHPsiGwrg,1895
783
+ vellum/client/types/workflow_execution_actual_string_request.py,sha256=syFCXeB4MwjKblXfSBNfCSG4dJIR8Ww937gTcmTPh1w,1859
784
+ vellum/client/types/workflow_execution_detail.py,sha256=R1tONdNarehoqk7zsK0D2wCSJEe9WauZmKHp5yKVLB8,2186
777
785
  vellum/client/types/workflow_execution_event_error_code.py,sha256=QzRLZ0dteptDmt3n5_vw26zGgDrpvcR4vRa_mtl2sMI,495
778
786
  vellum/client/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
779
- vellum/client/types/workflow_execution_fulfilled_body.py,sha256=4M9fQdJy7nH5Y1HLq9VVlfTNW4F9jlj4k5SWty9fFqQ,746
780
- vellum/client/types/workflow_execution_fulfilled_event.py,sha256=BtL6AumKq-SbFywf2Bacwc8KQM69HzVwFGT8RtpzGPs,1610
781
- vellum/client/types/workflow_execution_initiated_body.py,sha256=12ihPWA3nsLNC-RNEdhgz52l1RHH5dB6yls9vtiU9N4,745
782
- vellum/client/types/workflow_execution_initiated_event.py,sha256=JWZw6O1ne3A71ypiirHKegKa5BSyf1Ff9eSnrPOcEcE,1610
783
- vellum/client/types/workflow_execution_node_result_event.py,sha256=MexutJjIhlHJJSQIu2n1OLZC4FRotj9u1ixZgSNaI3M,936
784
- vellum/client/types/workflow_execution_paused_body.py,sha256=35Q7Bs671cjHKJfQT0reZ7bsuKG3oaiBsb_QytjIWUU,805
785
- vellum/client/types/workflow_execution_paused_event.py,sha256=dfEkgjBGio_39PXUHWtt4TXa4k7TpxohXKHfMNBRQGA,1592
786
- vellum/client/types/workflow_execution_rejected_body.py,sha256=9lrF3CdU3MaXMcaNP5UzEQGAnTW9hpcHA38zvzh3zgk,757
787
- vellum/client/types/workflow_execution_rejected_event.py,sha256=36XmXblohxRlGc20TQErGuBHqf0i4bbIVs3jJGFIxBg,1604
788
- vellum/client/types/workflow_execution_resumed_body.py,sha256=j8lwN0Bj3A3J4G9Nr2GoJ8ae28vNXnRNUemKgeBT7M8,685
789
- vellum/client/types/workflow_execution_resumed_event.py,sha256=xbWssZ9QE8Tm_6EDoFfQf4flZE6BOF7EcsM92ACRxWk,1598
790
- vellum/client/types/workflow_execution_snapshotted_body.py,sha256=TByTfAwY20jS7tItCDl-4KAKCmvpycNN22pjJGoBFc4,746
791
- vellum/client/types/workflow_execution_snapshotted_event.py,sha256=vvv23rPQhYgsqRsuzn-6oF27aCvQb7QD93KlrIyTy3k,1622
792
- vellum/client/types/workflow_execution_span.py,sha256=V-8FEpa_lauHoDDSo53yYx2iJ-qdRwnUpqgEDS-CFJU,1508
793
- vellum/client/types/workflow_execution_span_attributes.py,sha256=9AQLo7aP2B3czLTGwwWb2BVBv-8wh85QyFvvw4PyJ4Y,596
794
- vellum/client/types/workflow_execution_streaming_body.py,sha256=phni9pJKkFGsQ5IcS4ogtG1EjBzpdBiYpN9CPbkjxH8,746
795
- vellum/client/types/workflow_execution_streaming_event.py,sha256=EJHp5qG7fx66U5jQkoCuVXHGHcs68oRaTkrnTZLDZAQ,1610
796
- vellum/client/types/workflow_execution_usage_calculation_error.py,sha256=O44pAaA3pOpn6dqxfsAFx4QnXeVfIggGWbgmTzQV4Ms,754
787
+ vellum/client/types/workflow_execution_fulfilled_body.py,sha256=Auu-rzrIdxEkXgPHXe-BynwEWxL_R68E_VrLFCHueFA,710
788
+ vellum/client/types/workflow_execution_fulfilled_event.py,sha256=eZ_DtDmRK-S2Q0LEJHlGS_FPd-UVvpgetRXqvWlSh4M,1925
789
+ vellum/client/types/workflow_execution_initiated_body.py,sha256=0y2mi-RtpxPzWgl1ZO2eDOJdUvNSM_iVz6B_OySGucg,709
790
+ vellum/client/types/workflow_execution_initiated_event.py,sha256=JpzYEKYJPe5blgMjuwJn6o5fHsKW_kJMx89Keq8pGCE,1925
791
+ vellum/client/types/workflow_execution_node_result_event.py,sha256=4rLmfNqLq2UYUGW1_CBb1yCXaCgBwFjq1UQ4-txSimU,1040
792
+ vellum/client/types/workflow_execution_paused_body.py,sha256=YzALzCHE9wRkyRuseriaGKst_oidAaIUNar9B6doMrY,769
793
+ vellum/client/types/workflow_execution_paused_event.py,sha256=nLzQ4j_qB7Z7q9D8TfPDCeCYfGuk-8_emlBcAx_oOu4,1904
794
+ vellum/client/types/workflow_execution_rejected_body.py,sha256=f606Ud-hv3pITSWL9sgHr0pEgbFPrOzOzI4G5lOM4us,721
795
+ vellum/client/types/workflow_execution_rejected_event.py,sha256=j1QzOxkcmcFfA9zHOiKBnv7qF_YrFePq380us1nnYEk,1918
796
+ vellum/client/types/workflow_execution_resumed_body.py,sha256=L0Atzk7328tpjhRKC0Y8AoWuMebtdHzd4gBjYkvKDIM,649
797
+ vellum/client/types/workflow_execution_resumed_event.py,sha256=7PTH1rLBlvC4414LG3L3AdMRrJEmtrJSOWwM5sptAZc,1911
798
+ vellum/client/types/workflow_execution_snapshotted_body.py,sha256=POAj0l9EKZnJP79sQq4ZfW-a1SZyBNmvcqPJlvIGOfk,710
799
+ vellum/client/types/workflow_execution_snapshotted_event.py,sha256=sEQ-fqW0VmiuigFZnPvtd2wNZG462-rnsk4Zi8qlA6I,1939
800
+ vellum/client/types/workflow_execution_span.py,sha256=xeePJEONTakpoEf1aodhs10E8GPoxy7oSdogZARxYO0,1984
801
+ vellum/client/types/workflow_execution_span_attributes.py,sha256=OE_uL3qChioClcS3P46EW6ajLEyDsNl9sQJ13Tw50cY,560
802
+ vellum/client/types/workflow_execution_streaming_body.py,sha256=YklXqGzLrCYyZ6DOpy8YQodMfiyH_d2x93ajGg-rwLk,710
803
+ vellum/client/types/workflow_execution_streaming_event.py,sha256=f_z7Qr_9Uh8C8z2jjusb8CHoXUANMmT9PDTUoyq528A,1925
804
+ vellum/client/types/workflow_execution_usage_calculation_error.py,sha256=37j4n45pYQ5yLCJ2kfvoCnb_m0VDH_dTtseLvryKHQ8,718
797
805
  vellum/client/types/workflow_execution_usage_calculation_error_code_enum.py,sha256=O8CGCaWKuhnRjmQXTsw4gQn5hfDFiKED8bJYzP8R0LM,258
798
- vellum/client/types/workflow_execution_usage_result.py,sha256=wZdRqzG_Lwi8gqDHGEU6ayx3pvO9oe8hIPzDDePELz8,928
799
- vellum/client/types/workflow_execution_view_online_eval_metric_result.py,sha256=1qxIHqBRhEMfbOhBpztOPhcH3mqe7bfezO7PUHUfDg4,759
800
- vellum/client/types/workflow_execution_workflow_result_event.py,sha256=gjyXmojwtAOtAzpILpFkJB9tM02okSXqYRw9-3rTVDA,939
801
- vellum/client/types/workflow_expand_meta_request.py,sha256=-6I1Zveo3wFJEWbmSsN9OiOI7ekCJxF4xEL_ApB6XE8,1151
802
- vellum/client/types/workflow_initialization_error.py,sha256=lXStuWnDb6yfOAMudRzVOxT1Nb-Moc7AB2gNcfwk8OU,639
803
- vellum/client/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx-RZYcx5W32Hs,951
804
- vellum/client/types/workflow_node_result_event.py,sha256=qnhruqkIcKRqP8uB-o-27shcruiT2pjgD7wdrPcp0NE,603
806
+ vellum/client/types/workflow_execution_usage_calculation_fulfilled_body.py,sha256=_EftcFx4Z_eeYgZ_yx_jnDk1KUTu-AuP5HL-dU5b5Q4,693
807
+ vellum/client/types/workflow_execution_usage_result.py,sha256=IHEIa2wu-fZpr-KHHfiiPageVNVGdd6L0Ka3ZvuHm_U,892
808
+ vellum/client/types/workflow_execution_view_online_eval_metric_result.py,sha256=SMxprwDKixVN5iAay4kd9m1egI9IbBX-J7y_VG4tJws,874
809
+ vellum/client/types/workflow_execution_workflow_result_event.py,sha256=9au7DnaQu84TOYBDiSlDAjLcdDAxfMHOYwi4zbSQYBk,1047
810
+ vellum/client/types/workflow_expand_meta_request.py,sha256=jdlSJB-g7vqhdRheEV0Zzi4CAQZSlGBeWlvbihHgeLU,1115
811
+ vellum/client/types/workflow_initialization_error.py,sha256=1QIqmlPdbBPLEbMP-ThkC30FiIyxPBnK-g9eRKBdrHw,603
812
+ vellum/client/types/workflow_node_result_data.py,sha256=kd7HHA8rI1eVkKzzmZixf4eY9I0GWFQUHUX1LxMc4iI,952
813
+ vellum/client/types/workflow_node_result_event.py,sha256=NjEFaYmzEvb-8orEhLnmZWxw9fnf2EoNXlNux2eMjuE,604
805
814
  vellum/client/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
806
- vellum/client/types/workflow_output.py,sha256=gtqJeAoVE56QS8N0muYpXxaTUR1O9iFm2YIN_FmOEjk,902
807
- vellum/client/types/workflow_output_array.py,sha256=fnMY17Y1sbezmOkBYwjhYONf9rvZm5BWsvqzIQSZ9vQ,915
808
- vellum/client/types/workflow_output_chat_history.py,sha256=oBoq6b9tJGyIzZAe7NWvoBKWeE5o7NgtlY6yiJtp3lM,892
809
- vellum/client/types/workflow_output_error.py,sha256=bJWwndZxiO6vWP2bM0jlD1oarlpSAjbE3n9kzOWbpGs,853
810
- vellum/client/types/workflow_output_function_call.py,sha256=HkfqsC86OMhlXr80CFDWuxKALNWb-JsQMOoDuzxourg,886
811
- vellum/client/types/workflow_output_image.py,sha256=bKegpY66KLPAPySgVOyGERwCmIWarNdo8_nHhhkHhLQ,853
812
- vellum/client/types/workflow_output_json.py,sha256=MiCF-mq121YKZmYeaVpb3Tgh4XYqWjNgo3uMfjr4x5w,809
813
- vellum/client/types/workflow_output_number.py,sha256=p8APNBpl6c3e3dxCFvZtL0jyKOmu9s6LkY3vgXwhTMw,812
814
- vellum/client/types/workflow_output_search_results.py,sha256=r3RRGVVrH2H9NAuxA7qmG8lponyeLHHhCx6AUiMYWzc,903
815
- vellum/client/types/workflow_output_string.py,sha256=_jclzbQ-Wlf-7FEVTWXhs9h5FWfj4xGpiODZBOzT43w,810
816
- vellum/client/types/workflow_parent_context.py,sha256=kU4OWCIlJLLRn4BVapEKprtrCxdj-uNiKdUZob515-0,1585
817
- vellum/client/types/workflow_push_deployment_config_request.py,sha256=pG6bZtlw7S0TcXtNRQNa7y_2NodZe7dp5SchIrgRUVU,745
815
+ vellum/client/types/workflow_output.py,sha256=Lpgw-hT5dHhmCedDFLbBuJXb6aIeCFi2QZecvKeTOq8,903
816
+ vellum/client/types/workflow_output_array.py,sha256=UjCkxFeMr_EuE7fzBoKYdoprDDKYRTNwP47Z0jzjUEs,1034
817
+ vellum/client/types/workflow_output_chat_history.py,sha256=eBlsYlkTzH2ZozEZ1PqTtn8zfc2tmTwCJCcHAnurbWw,856
818
+ vellum/client/types/workflow_output_error.py,sha256=bEHJQH-9DAEEH3Rq7QJxP9CHKMzacO3_QZyi1yALbQ8,817
819
+ vellum/client/types/workflow_output_function_call.py,sha256=1jB4UHlY0XMRZdOIsziG8ECY3bYIB48PKJYFk_UAxVM,850
820
+ vellum/client/types/workflow_output_image.py,sha256=juSo5MbHL43K1Zt46fsy3_XsmeV1ryXLvKd042N23Co,817
821
+ vellum/client/types/workflow_output_json.py,sha256=S8k166a9-pAv2PjbwATWo7FlSzdyeTjx4o3lwFUCWPI,773
822
+ vellum/client/types/workflow_output_number.py,sha256=nrG20pZjxE78U6JoDx5iN3zSLqRBZUtw_LNtjXPAbZw,776
823
+ vellum/client/types/workflow_output_search_results.py,sha256=yDtDPFguX9klzTbwBrFfyK0yNl2EZboN6UpYNG6rWjw,867
824
+ vellum/client/types/workflow_output_string.py,sha256=EmxzAl3NNXZzPmmt68BHDWfiN1R70qomqVNGMIIu7_4,774
825
+ vellum/client/types/workflow_parent_context.py,sha256=RtjSqcTyUgUTbsDcNmY_AagBvV4ZU3SWF9HZAhSME20,1609
826
+ vellum/client/types/workflow_push_deployment_config_request.py,sha256=04zHC5iwKNEV68K5wpn8tK6IhF8nq8rKQSOE4Ic9yug,709
818
827
  vellum/client/types/workflow_push_exec_config.py,sha256=6TaVMVqhSOz4DnY46l8axPDtytSioXDl9nHvFXSxH1g,94
819
- vellum/client/types/workflow_push_response.py,sha256=1vUSZmZ1GK1242dAkNwJnJI0rL3pBT3_0HOLLjdiutw,724
820
- vellum/client/types/workflow_release_tag_read.py,sha256=-VGpjbCP4eFObn5iv96_bk0ARpsM0Gg4ZoNLOSeay9I,1295
821
- vellum/client/types/workflow_release_tag_workflow_deployment_history_item.py,sha256=KxGDzNRFNNpnlSDHa-b1BpSbvpvpyYNENB9xWl1RN8E,637
822
- vellum/client/types/workflow_request_chat_history_input_request.py,sha256=WCZvwDuNS8ylWOOoKD3t7fHLSYB0h-fVCqeDRzqPoPA,898
823
- vellum/client/types/workflow_request_input_request.py,sha256=wgbKgKy-ftTzc6VMsgPkIiHaAujSiJjLizp2GfksX-A,632
824
- vellum/client/types/workflow_request_json_input_request.py,sha256=o3zGNLQSEhV7D92ux4s5HG785gA2Qol7sQLM3Bpn0iE,817
825
- vellum/client/types/workflow_request_number_input_request.py,sha256=lVZkxjHMSnGmrqx81gfUaT9-rk79B58dg0TXOMofLpo,796
826
- vellum/client/types/workflow_request_string_input_request.py,sha256=iAGQ-_ma_uGo4Bgbhk_o4DRdyjtoGCPAwhXNlVnQdiI,794
827
- vellum/client/types/workflow_result_event.py,sha256=wXW9OgOtYC4oU_vGZnGLaLu804QnVGAjoaYHvIGCfzU,1252
828
- vellum/client/types/workflow_result_event_output_data.py,sha256=1LgqyZDf4BwfO3nXClcj_5R9DmAz_b-woHn9Exx7Wc8,1221
829
- vellum/client/types/workflow_result_event_output_data_array.py,sha256=QP66Rdg-ybVBdJK0pFn5hbIYzanJZNNOSImHoxKraS0,1184
830
- vellum/client/types/workflow_result_event_output_data_chat_history.py,sha256=eMGvXvXOmQj_Ph7W4iiBqOgqTXsdV559EgWxzmhWckg,1161
831
- vellum/client/types/workflow_result_event_output_data_error.py,sha256=xZyq0HNGlpZKribpHBOAouHzfnyQQJVy_Soe3R_p52U,1122
832
- vellum/client/types/workflow_result_event_output_data_function_call.py,sha256=v4ucbs_fxSo5Fe7ilHaxlfSgjltipD6CylMdYkHBkb0,1155
833
- vellum/client/types/workflow_result_event_output_data_json.py,sha256=8MrgcTSVUbyJTVQGZzPvBI2fvZRRyI3CpyKS3cOsuz4,1078
834
- vellum/client/types/workflow_result_event_output_data_number.py,sha256=OZYYUF3ayq7gyaesRK3YRaTMVgxFdeFGtOpTPWX10yk,1081
835
- vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7ZvBG70ZBO4SEqbaNzIrV9Zn1NXabNh3M9v_hg,1172
836
- vellum/client/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
837
- vellum/client/types/workflow_sandbox_example.py,sha256=XsKa7JvPFm0no8nh_q1DojwMd1ko8kV_xn3omFr4kW4,760
838
- vellum/client/types/workflow_sandbox_parent_context.py,sha256=X8PEnywiPOjksLe28QyNrrexnfoPrSHZ360UNUcQbHw,1546
839
- vellum/client/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
840
- vellum/client/types/workspace_read.py,sha256=ocPtWvOwadqkU3z21bJgE4JeLYTAkOqBlKkc9lDDFFg,697
841
- vellum/client/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
828
+ vellum/client/types/workflow_push_response.py,sha256=Tkwpvh_Ar1yl-kyClh2fTIP2e0cqyk1ohbArIp8I9gs,688
829
+ vellum/client/types/workflow_release_tag_read.py,sha256=NIZWhCVQ3UhxkpjuyoZ2nY9WHuUr4WSlFvqTQ4JStR4,1259
830
+ vellum/client/types/workflow_release_tag_workflow_deployment_history_item.py,sha256=we8Qj3udlnbOtIz5hZRpGgtxIxjr_2OSleaNutuB3f0,601
831
+ vellum/client/types/workflow_request_chat_history_input_request.py,sha256=JiiqxniYKIrwOhQAVUHkffNx6YTqWBhMmwg5Pf-6e-Y,862
832
+ vellum/client/types/workflow_request_input_request.py,sha256=REr7j_FA1ugRt-9-2EWm5OQrj7hsReetPaNDMTS57HA,633
833
+ vellum/client/types/workflow_request_json_input_request.py,sha256=LZu_IblkMhk5JWAcfaUYEv4TV2FeAkd4zCjPnZbFUPM,781
834
+ vellum/client/types/workflow_request_number_input_request.py,sha256=1eesPBjUA7wKWLR90x6in3U9H1ZuIt_2_OqIYjy-V9s,760
835
+ vellum/client/types/workflow_request_string_input_request.py,sha256=oqdelrQTkpCH5d6tN6ytaTFVkBHJynl_bF8a_Grokh4,758
836
+ vellum/client/types/workflow_result_event.py,sha256=LRA5i2sE9cZYQwZSygp7MnKXvHP8dB9gWVVxWY2w1f0,1343
837
+ vellum/client/types/workflow_result_event_output_data.py,sha256=S_S_h42LMnqJv9FLEEASFS3HsqX2RZHT_kQeeWOSj28,1222
838
+ vellum/client/types/workflow_result_event_output_data_array.py,sha256=pjEc56lhN5uTtB2DLXDkzH6mwj4glGNNXKG_dCAG_Io,1318
839
+ vellum/client/types/workflow_result_event_output_data_chat_history.py,sha256=bahXosmZplDmj76MT-BcN9ohIbYWmJl_F0N6q6SmbN0,1125
840
+ vellum/client/types/workflow_result_event_output_data_error.py,sha256=ChNMnVFmA7xY0vV2voomk8sXEAy5r8HoRGaDrbyCInM,1086
841
+ vellum/client/types/workflow_result_event_output_data_function_call.py,sha256=YTR45ucFgGxuvhEWX25_a78U8VTBX-s7oB644CIkjR0,1119
842
+ vellum/client/types/workflow_result_event_output_data_json.py,sha256=JmQYhOe-1apHRJBLcueOWfVcvLoTwAQmY_eA9j0i-7w,1042
843
+ vellum/client/types/workflow_result_event_output_data_number.py,sha256=p2_zkt3zN2BHTCzTIawc1Uq1Blxjrk_yhQ3fvoig3UI,1045
844
+ vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=vsMTbZuFwFwDqW3Uvm6_NODluCXmhV9H4DBI-HozfpI,1136
845
+ vellum/client/types/workflow_result_event_output_data_string.py,sha256=sejfzNfmeygtVNedvsU1cXvjfG5z3UUROX735r2sEOQ,1192
846
+ vellum/client/types/workflow_sandbox_example.py,sha256=pl9mx0Wvgg3kRmIoOlAx4XebMhOeSvgy438BPcQNy-4,724
847
+ vellum/client/types/workflow_sandbox_parent_context.py,sha256=8FJ8vq7CVTg-OnOXlbVCAFaT1_J-EEEDiX1PDc1OTzw,1570
848
+ vellum/client/types/workflow_stream_event.py,sha256=6dQx_D-UPfJVrIsSW6krmZKDKeP9kPojFHDgqy_58io,362
849
+ vellum/client/types/workspace_read.py,sha256=NAVouD25ZHvldLrAvAOwL2w2f1tqZaSC05wZ--YvBCQ,661
850
+ vellum/client/types/workspace_secret_read.py,sha256=qWabw1u5HZpuv77kAwtAQigj4CDB41csJ2wmXu5eJS8,678
842
851
  vellum/core/__init__.py,sha256=Iph1pJ7wkjHt7Xh1vUeLgMqFCNa0GYjtu3BhG8EhV8Y,136
843
852
  vellum/core/api_error.py,sha256=GDjkxQb8k4HqTthWpqwIVE7hLVXJQmRT8sip2mzB-8I,146
844
853
  vellum/core/client_wrapper.py,sha256=d3MqLPTOfMq8-AaHg3S7BkBczhyrbdpnkhR0FtOvV8A,151
845
854
  vellum/core/datetime_utils.py,sha256=Q-IbHL8k5y-VYmmXP-E8pGq3RmbSqz24rj_VN2ZnihQ,151
846
855
  vellum/core/file.py,sha256=mpIspL0L1dyDb1PfqhaxnnvJqz-j_H27CLneDPhMUKU,141
856
+ vellum/core/force_multipart.py,sha256=dBaoK9vv7Yz3_NqmLjtD9HrNPQ-HZvyO7hJ5TCDThEg,152
847
857
  vellum/core/http_client.py,sha256=usl2oH-GG4S8BAlJ0BW4LEtRDC2zX8St8QD4Bi4LWSo,148
848
858
  vellum/core/http_response.py,sha256=3FZR3InzKie-senBRny81T2hhzr339LRR5zWii-7rAw,150
849
859
  vellum/core/jsonable_encoder.py,sha256=Pb64MD1TNedE-7Ys9dW0iB7eiy0BNwk-vGxXIx_pQH4,153
@@ -874,7 +884,7 @@ vellum/plugins/utils.py,sha256=cPmxE9R2CK1bki2jKE8rB-G9zMf2pzHjSPDHFPXwd3Q,878
874
884
  vellum/plugins/vellum_mypy.py,sha256=hfjC2rIxNdQuJa6fIN4PDgODnQ3YaUszyaV2eNbLJlE,27952
875
885
  vellum/prompts/__init__.py,sha256=kn-btvQOMNnnBuyQiUpie48_VBJAk7tFFU-ul5dwK60,107
876
886
  vellum/prompts/blocks/__init__.py,sha256=Zwvncjd8sUCPmT-8pFpgLYsKJl0xB6td1GTQzjV9hYA,108
877
- vellum/prompts/blocks/compilation.py,sha256=wI9IRj-atd8GYJnOhBnyumhH25e3rUYC5uTcMVEyktw,10212
887
+ vellum/prompts/blocks/compilation.py,sha256=t3UjhbIQYWBbXF3a94ZB-ef9_8H76Enu0HfAMIcG4QU,10651
878
888
  vellum/prompts/blocks/exceptions.py,sha256=vmk5PV6Vyw9nKjZYQDUDW0LH8MfQNIgFvFb_mFWdIRI,50
879
889
  vellum/prompts/blocks/helpers.py,sha256=7G1Qi6N3V1K73iqTypMTcl6Rum7wk449yHStkakLy-U,961
880
890
  vellum/prompts/blocks/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1475,7 +1485,14 @@ vellum/types/vellum_value_request.py,sha256=O8OsytBNQXFlxpsS0b6NLlFPYwd8v2gMXoVG
1475
1485
  vellum/types/vellum_variable.py,sha256=rmjuD8hMydLF480--5tWlHbvu6qNaz0Hs9bSrJ8DPEI,153
1476
1486
  vellum/types/vellum_variable_extensions.py,sha256=wwKDv_yxtP7gQmfz5HF3zab-FOLt-0OMUYIsHgvrOC0,164
1477
1487
  vellum/types/vellum_variable_type.py,sha256=d3Zkf0ued1QrO90CMGTUnlyg2xT8nKGM4Nv6-L6W_Pg,158
1488
+ vellum/types/vellum_video.py,sha256=2ai0HpKMjNdxB1W-PQpPr_LWMV5ZTqZoIg5VNqF2kmQ,150
1489
+ vellum/types/vellum_video_request.py,sha256=BL0H-Vk5yRq6MUSvLdYTe9nBCSe9MMvB5kVGwWB5ejc,158
1478
1490
  vellum/types/vellum_workflow_execution_event.py,sha256=EI7XANl17nOtYskD9b4FmdejkKsK7cFDwe9asr2xGC8,169
1491
+ vellum/types/video_chat_message_content.py,sha256=x2YaRST3U9u3escOgvNNcdY49plQHg1ccrdJXbj8Xzs,164
1492
+ vellum/types/video_chat_message_content_request.py,sha256=oTkqgOJTbmSJrPJ-mAPq1brkWe4rOCOPXfWfGeGuqFw,172
1493
+ vellum/types/video_prompt_block.py,sha256=hraiqOCqrjZ6g5b7sH_oUCqitstkKJphuz2-uzmXEkk,156
1494
+ vellum/types/video_vellum_value.py,sha256=h7AtjZ4YA7BJpTsB78nJ01c6oKjk4ZNfxRQxjevZEwQ,156
1495
+ vellum/types/video_vellum_value_request.py,sha256=-8swaAzFnM-xGSxXpIoxgZSy9lDqDVfjtooHnQcr9D4,164
1479
1496
  vellum/types/workflow_deployment_event_executions_response.py,sha256=375mHiA7sucHeFSr0LlaLcVgV7F2QicMZaQiOrC5yOg,183
1480
1497
  vellum/types/workflow_deployment_history_item.py,sha256=dp5pwzOVO83KPwAbYeO3NXlKKHswGa0MTGX82nIhAIg,170
1481
1498
  vellum/types/workflow_deployment_parent_context.py,sha256=kB0eeRXagHqRnuDVA9B8aDlvBZVOmQ702JYXD8evh24,172
@@ -1512,6 +1529,7 @@ vellum/types/workflow_execution_streaming_body.py,sha256=MjkV8RLMtFj1r0yGPIuhf4D
1512
1529
  vellum/types/workflow_execution_streaming_event.py,sha256=XDEyaGRMfR9cpaRJ-WCb0O-o4LAdoMPCbjRLdYI1r-0,172
1513
1530
  vellum/types/workflow_execution_usage_calculation_error.py,sha256=tMF1PYRRKjC0N-GL_Az2A8Mv-1H8tS3oln_NPh6k3zo,180
1514
1531
  vellum/types/workflow_execution_usage_calculation_error_code_enum.py,sha256=HMqRue9gC5NRgbqt_FhANKGeNz8Vgu9fjZpEvRTek9o,190
1532
+ vellum/types/workflow_execution_usage_calculation_fulfilled_body.py,sha256=Vabch9oglYZehKyAvOuAKhbASKAoLWqK0dg7pqaa3s4,189
1515
1533
  vellum/types/workflow_execution_usage_result.py,sha256=SrVrcv5xngwbS-6eCWU4XJ9QyyUwGJ1mPfgHPOhNqbs,169
1516
1534
  vellum/types/workflow_execution_view_online_eval_metric_result.py,sha256=dLnk3CfQOAeYIO5kiR0U8SY4JcqFWvVYwkDL-LkA5Co,187
1517
1535
  vellum/types/workflow_execution_workflow_result_event.py,sha256=3bNxtChEfqny5eEazFcGmqQpmC8283Q0J2hxLje-uks,178
@@ -1587,12 +1605,12 @@ vellum/workflows/errors/__init__.py,sha256=tWGPu5xyAU8gRb8_bl0fL7OfU3wxQ9UH6qVwy
1587
1605
  vellum/workflows/errors/types.py,sha256=nUWuniEfrhdtb-_2GzoDGlYnSJ_yuNUGjVkaKLNr-rM,4049
1588
1606
  vellum/workflows/events/__init__.py,sha256=V4mh766fyA70WvHelm9kfVZGrUgEKcJ9tJt8EepfQYU,832
1589
1607
  vellum/workflows/events/context.py,sha256=81367zwg23PUBsrDJyF0rbcswNOIMTwWveAjmqy9GcM,4501
1590
- vellum/workflows/events/node.py,sha256=n3JdlCmeZ6tFTu_x5tu1oSCe5EBE8B1Cy3CzSWK5B08,5453
1608
+ vellum/workflows/events/node.py,sha256=ldHK3sZtCiDwvSr935zRRY_d2KNDfS7siOfpilLr1MI,5770
1591
1609
  vellum/workflows/events/stream.py,sha256=xhXJTZirFi0xad5neAQNogrIQ4h47fpnKbVC3vCM5Js,889
1592
1610
  vellum/workflows/events/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1593
- vellum/workflows/events/tests/test_event.py,sha256=elg5j3MOdWQe-JjshopqVwd716Jrvtr9P_V2JUGZC60,17866
1611
+ vellum/workflows/events/tests/test_event.py,sha256=o2Z2ApRAOTEPMEIiA2y8JK3McDsnf6-9eQzQ5jo2DE8,18074
1594
1612
  vellum/workflows/events/types.py,sha256=3cv2r3e57yto7M4Nlobtyz9GO4bXubj4TMHSFvdECP8,4840
1595
- vellum/workflows/events/workflow.py,sha256=cR2aG6A-JqvLMKFqonDhKjSg496qldEtuks4BXXMTrY,7768
1613
+ vellum/workflows/events/workflow.py,sha256=2jwkEUNWIbn8Ti7CWD0LSIpJy_gAoM9ob8x_BSUqfo0,8087
1596
1614
  vellum/workflows/exceptions.py,sha256=NiBiR3ggfmPxBVqD-H1SqmjI-7mIn0EStSN1BqApvCM,1213
1597
1615
  vellum/workflows/expressions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1598
1616
  vellum/workflows/expressions/accessor.py,sha256=3lu1-_-dBfZdJvtX-q66jbmRAZtqIfdsh_3_JNuzg1E,4462
@@ -1638,9 +1656,9 @@ vellum/workflows/expressions/tests/test_length.py,sha256=pQA1tYSwqxE6euclboY024N
1638
1656
  vellum/workflows/expressions/tests/test_minus.py,sha256=pq7dvdRGNhSSn95LGNzRErsYUsFk5SpOKHDcSR5QToc,1632
1639
1657
  vellum/workflows/expressions/tests/test_parse_json.py,sha256=zpB_qE5_EwWQL7ULQUJm0o1PRSfWZdAqZNW6Ah13oJE,1059
1640
1658
  vellum/workflows/graph/__init__.py,sha256=3sHlay5d_-uD7j3QJXiGl0WHFZZ_QScRvgyDhN2GhHY,74
1641
- vellum/workflows/graph/graph.py,sha256=GGR8cGpSuNWPIiTWNWsj6l70upb5nIxAyFcn7VdaJIs,5506
1659
+ vellum/workflows/graph/graph.py,sha256=el1IlosnRtNO7oTduqjfHV4uu7etkCle4ynjdASvjD8,9190
1642
1660
  vellum/workflows/graph/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1643
- vellum/workflows/graph/tests/test_graph.py,sha256=q0wxLvPPxc-6en4a_XuAZwVfLURMd9Ikvoreq4bpJ9s,11839
1661
+ vellum/workflows/graph/tests/test_graph.py,sha256=S8F8_Y_y2WLVWjjJADsRyV8RNDu_N4bN1MZiJy7qKqY,14569
1644
1662
  vellum/workflows/inputs/__init__.py,sha256=AbFEteIYEvCb14fM3EK7bhM-40-6s494rSlIhQ4Dsss,62
1645
1663
  vellum/workflows/inputs/base.py,sha256=w3owT5B3rLBmIj-v-jL2l-HD4yd3hXK9RmHVd557BpA,5126
1646
1664
  vellum/workflows/inputs/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1651,7 +1669,7 @@ vellum/workflows/integrations/mcp_service.py,sha256=SaOLg76JBAiBDAMUn04mxVWmf2Bt
1651
1669
  vellum/workflows/logging.py,sha256=_a217XogktV4Ncz6xKFz7WfYmZAzkfVRVuC0rWob8ls,437
1652
1670
  vellum/workflows/nodes/__init__.py,sha256=aVdQVv7Y3Ro3JlqXGpxwaU2zrI06plDHD2aumH5WUIs,1157
1653
1671
  vellum/workflows/nodes/bases/__init__.py,sha256=cniHuz_RXdJ4TQgD8CBzoiKDiPxg62ErdVpCbWICX64,58
1654
- vellum/workflows/nodes/bases/base.py,sha256=OLnt140jfqRHxg4xyzdiBd3TciqNPfuNNH2iXCpv7a4,20422
1672
+ vellum/workflows/nodes/bases/base.py,sha256=r5UBUe97dxpsEnpJzGDOt3WAtmiYTEi6vY2XDv54t7Q,20780
1655
1673
  vellum/workflows/nodes/bases/base_adornment_node.py,sha256=hrgzuTetM4ynPd9YGHoK8Vwwn4XITi3aZZ_OCnQrq4Y,3433
1656
1674
  vellum/workflows/nodes/bases/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1657
1675
  vellum/workflows/nodes/bases/tests/test_base_adornment_node.py,sha256=fXZI9KqpS4XMBrBnIEkK3foHaBVvyHwYcQWWDKay7ic,1148
@@ -1699,7 +1717,7 @@ vellum/workflows/nodes/displayable/bases/search_node.py,sha256=9TtFn6oNpEkpCL59Q
1699
1717
  vellum/workflows/nodes/displayable/bases/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1700
1718
  vellum/workflows/nodes/displayable/bases/tests/test_utils.py,sha256=eqdqbKNRWVMDPevgwLg1i6YK0g4L4bCy-7xCBN5yYZI,3156
1701
1719
  vellum/workflows/nodes/displayable/bases/types.py,sha256=C37B2Qh2YP7s7pUjd-EYKc2Zl1TbnCgI_mENuUSb8bo,1706
1702
- vellum/workflows/nodes/displayable/bases/utils.py,sha256=7L5wdQVm0ZMLpTJ7IBbTOzPhany7wSYPLYuY-0FBhvg,5490
1720
+ vellum/workflows/nodes/displayable/bases/utils.py,sha256=N80UHgpiMOoPwpO-lMAiF0OzWT-crZ-RygMaBv7gLvQ,5553
1703
1721
  vellum/workflows/nodes/displayable/code_execution_node/__init__.py,sha256=0FLWMMktpzSnmBMizQglBpcPrP80fzVsoJwJgf822Cg,76
1704
1722
  vellum/workflows/nodes/displayable/code_execution_node/node.py,sha256=cCpZPna1Exw060KlI8j3oMCfru1GCzUFJz9ucWdcZVM,10311
1705
1723
  vellum/workflows/nodes/displayable/code_execution_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1745,13 +1763,13 @@ vellum/workflows/nodes/displayable/tests/test_search_node_error_handling.py,sha2
1745
1763
  vellum/workflows/nodes/displayable/tests/test_search_node_wth_text_output.py,sha256=VepO5z1277c1y5N6LLIC31nnWD1aak2m5oPFplfJHHs,6935
1746
1764
  vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=Bjv-wZyFgNaVZb9KEMMZd9lFoLzbPEPjEMpANizMZw4,2413
1747
1765
  vellum/workflows/nodes/displayable/tool_calling_node/__init__.py,sha256=3n0-ysmFKsr40CVxPthc0rfJgqVJeZuUEsCmYudLVRg,117
1748
- vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=D6rWPeaIoYXVu3-WarzmyAXHqt1pcKheOEOB2iUoSHY,7632
1766
+ vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=89Vkaink4E6skDEVnPFWXHHcRjirhrhMCYOXGqkNOHc,7806
1749
1767
  vellum/workflows/nodes/displayable/tool_calling_node/state.py,sha256=CcBVb_YtwfSSka4ze678k6-qwmzMSfjfVP8_Y95feSo,302
1750
1768
  vellum/workflows/nodes/displayable/tool_calling_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1751
1769
  vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service.py,sha256=in1fbEz5x1tx3uKv9YXdvOncsHucNL8Ro6Go7lBuuOQ,8962
1752
- vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=1QwfUOS26pesN6Ckqfm-RVlOSyjuF945vKC20AXedKw,8458
1753
- vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py,sha256=om4FztVQ33jFZK_lbusi6khOM7zgzNCHlUcEb5-r6pU,8361
1754
- vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=MpsZHPiT8NtKwY27fqI29sj6ChiOaVHXZ8mKbhYo778,24134
1770
+ vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=dMonAUfgAG3HxNoxQQjRcfT9qpOZb2LE-bgLrjMO4aw,8707
1771
+ vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py,sha256=eB4o5tXJJMjuXS4ik4MyzQaHn0iKWknlUP4DZkLc1ZI,8361
1772
+ vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=Sq6OX1TYBAs36buc9fPwHgNOEE7OWFBd7AYpuTrumeo,22667
1755
1773
  vellum/workflows/nodes/experimental/README.md,sha256=eF6DfIL8t-HbF9-mcofOMymKrraiBHDLKTlnBa51ZiE,284
1756
1774
  vellum/workflows/nodes/experimental/__init__.py,sha256=jCQgvZEknXKfuNhGSOou4XPfrPqZ1_XBj5F0n0fgiWM,106
1757
1775
  vellum/workflows/nodes/experimental/openai_chat_completion_node/__init__.py,sha256=lsyD9laR9p7kx5-BXGH2gUTM242UhKy8SMV0SR6S2iE,90
@@ -1769,7 +1787,7 @@ vellum/workflows/ports/port.py,sha256=j_qiZlpx-a1cK5E7sxXwPcb_9NS-KUM-JoP8mgqg32
1769
1787
  vellum/workflows/ports/utils.py,sha256=gD8iijX8D3tjx1Tj2FW8-QIubCphTqW_gqROt6w6MOM,3790
1770
1788
  vellum/workflows/references/__init__.py,sha256=glHFC1VfXmcbNvH5VzFbkT03d8_D7MMcvEcsUBrzLIs,591
1771
1789
  vellum/workflows/references/constant.py,sha256=6yUT4q1sMj1hkI_tzzQ9AYcmeeDYFUNCqUq_W2DN0S8,540
1772
- vellum/workflows/references/environment_variable.py,sha256=evpxiBKzBk74JzxBXWkfTrZe4Kx-fuUG1W6XjtXzaUw,700
1790
+ vellum/workflows/references/environment_variable.py,sha256=8K_l8nwEzdS0UspDm5k7sAb07jd0ScbTSeJn4lK21ag,1037
1773
1791
  vellum/workflows/references/execution_count.py,sha256=JILHqt8ELdc9ct-WsVCA5X-rKiP1rmJODw-XTf4kpHI,722
1774
1792
  vellum/workflows/references/external_input.py,sha256=c_4SojTpykCSbGS1Pjmx9FfquyYGMPksoj0AbrWv7Go,2064
1775
1793
  vellum/workflows/references/input.py,sha256=3INu-TLTi4dziWmva6LO3WvgDlPzsjayUx61cVvqLJA,325
@@ -1783,13 +1801,13 @@ vellum/workflows/references/workflow_input.py,sha256=W3rOK1EPd2gYHb04WJwmNm1CUSd
1783
1801
  vellum/workflows/resolvers/__init__.py,sha256=eH6hTvZO4IciDaf_cf7aM2vs-DkBDyJPycOQevJxQnI,82
1784
1802
  vellum/workflows/resolvers/base.py,sha256=WHra9LRtlTuB1jmuNqkfVE2JUgB61Cyntn8f0b0WZg4,411
1785
1803
  vellum/workflows/runner/__init__.py,sha256=i1iG5sAhtpdsrlvwgH6B-m49JsINkiWyPWs8vyT-bqM,72
1786
- vellum/workflows/runner/runner.py,sha256=t9Y3k82YjeML-Z7f1W2sj_1nAjJEpsnJUComDBebagU,36339
1804
+ vellum/workflows/runner/runner.py,sha256=sADrp593ia4auJ8fIP6jc5na3b5WaTvvBdjpkTthboY,36929
1787
1805
  vellum/workflows/sandbox.py,sha256=GVJzVjMuYzOBnSrboB0_6MMRZWBluAyQ2o7syeaeBd0,2235
1788
1806
  vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
1789
1807
  vellum/workflows/state/base.py,sha256=m9fCqbZn21GshCVCjJTD1dPZEQjFrsMXqlg7tM9fIwM,24283
1790
- vellum/workflows/state/context.py,sha256=IsiNCYRVpAyhvrC2l5h9pNkrptuU_wOD-cHRiTAMGrg,3453
1808
+ vellum/workflows/state/context.py,sha256=HQbapsGX42rCEn1GuD-jWMpvjrQhosPVJSnashKN2vc,7234
1791
1809
  vellum/workflows/state/delta.py,sha256=7h8wR10lRCm15SykaPj-gSEvvsMjCwYLPsOx3nsvBQg,440
1792
- vellum/workflows/state/encoder.py,sha256=sV80h-lAo66isD2ezK1_YLzj75Aa5dAtF2YA1c3BYKo,2883
1810
+ vellum/workflows/state/encoder.py,sha256=9wj9za3pjLGaKh85IB71YvPDRDtHcw78wR5vyPyKWM8,2708
1793
1811
  vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
1794
1812
  vellum/workflows/state/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1795
1813
  vellum/workflows/state/tests/test_state.py,sha256=SjQZgovETrosPUeFohaPB9egAkSVe8ptJO5O4Fk2E04,6920
@@ -1799,15 +1817,15 @@ vellum/workflows/tests/test_undefined.py,sha256=zMCVliCXVNLrlC6hEGyOWDnQADJ2g83y
1799
1817
  vellum/workflows/types/__init__.py,sha256=KxUTMBGzuRCfiMqzzsykOeVvrrkaZmTTo1a7SLu8gRM,68
1800
1818
  vellum/workflows/types/code_execution_node_wrappers.py,sha256=3MNIoFZKzVzNS5qFLVuDwMV17QJw72zo7NRf52yMq5A,3074
1801
1819
  vellum/workflows/types/core.py,sha256=TggDVs2lVya33xvu374EDhMC1b7RRlAAs0zWLaF46BA,1385
1802
- vellum/workflows/types/definition.py,sha256=coGFuaPCF04z4Oj-Y5hLO7pql8yc2p5eF_AqFZPyhKg,4441
1820
+ vellum/workflows/types/definition.py,sha256=PjHTAfBGcy_I4x_YdySP4OTmIbjGR5rU0plCnZlLsrQ,4900
1803
1821
  vellum/workflows/types/generics.py,sha256=8jptbEx1fnJV0Lhj0MpCJOT6yNiEWeTOYOwrEAb5CRU,1576
1804
1822
  vellum/workflows/types/stack.py,sha256=h7NE0vXR7l9DevFBIzIAk1Zh59K-kECQtDTKOUunwMY,1314
1805
1823
  vellum/workflows/types/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1806
- vellum/workflows/types/tests/test_definition.py,sha256=EgZ0Gm1Z-05cnf85uvNzWQPdYeCU7mSHKbaa5uRvKJo,5018
1824
+ vellum/workflows/types/tests/test_definition.py,sha256=rvDYjdJ1rvAv0qHBN7i7s-_WAibUhAnmAKZebNETcwA,5728
1807
1825
  vellum/workflows/types/tests/test_utils.py,sha256=UnZog59tR577mVwqZRqqWn2fScoOU1H6up0EzS8zYhw,2536
1808
1826
  vellum/workflows/types/utils.py,sha256=mTctHITBybpt4855x32oCKALBEcMNLn-9cCmfEKgJHQ,6498
1809
1827
  vellum/workflows/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1810
- vellum/workflows/utils/functions.py,sha256=YsTcwCWqjcnH_ZHOHB9www3khoKqYcJ5e55pnqKsF9c,8740
1828
+ vellum/workflows/utils/functions.py,sha256=whJkecRj71V10LM64f0g0q02LBq5nqARnNBxuJYvDHc,8773
1811
1829
  vellum/workflows/utils/names.py,sha256=QLUqfJ1tmSEeUwBKTTiv_Qk3QGbInC2RSmlXfGXc8Wo,380
1812
1830
  vellum/workflows/utils/pydantic_schema.py,sha256=eR_bBtY-T0pttJP-ARwagSdCOnwPUtiT3cegm2lzDTQ,1310
1813
1831
  vellum/workflows/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1816,16 +1834,16 @@ vellum/workflows/utils/tests/test_names.py,sha256=aOqpyvMsOEK_9mg_-yaNxQDW7QQfwq
1816
1834
  vellum/workflows/utils/tests/test_uuids.py,sha256=i77ABQ0M3S-aFLzDXHJq_yr5FPkJEWCMBn1HJ3DObrE,437
1817
1835
  vellum/workflows/utils/tests/test_vellum_variables.py,sha256=vbnKgm41aB5OXlO-ZIPbhQ6xDiZkT8KMxCLqz4zocWY,1791
1818
1836
  vellum/workflows/utils/uuids.py,sha256=DFzPv9RCvsKhvdTEIQyfSek2A31D6S_QcmeLPbgrgTY,739
1819
- vellum/workflows/utils/vellum_variables.py,sha256=zVzZSRWKV64fmu9MaoEVebW9r8UsXPvRPMvOuBmwI24,5307
1837
+ vellum/workflows/utils/vellum_variables.py,sha256=vg7PLTqBoPLWXrcFR2vOfJpKkzvDC85cL2sSUqDWXWU,5503
1820
1838
  vellum/workflows/vellum_client.py,sha256=xkfoucodxNK5JR2-lbRqZx3xzDgExWkP6kySrpi_Ubc,1079
1821
1839
  vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
1822
- vellum/workflows/workflows/base.py,sha256=DIQP5b4B5z3h0Bp1_IPdhpFAyBZxn_2owjFxnCEMBYA,27090
1840
+ vellum/workflows/workflows/base.py,sha256=FTW2y5O8bUgMD1aluavwQ-UYTURRW1DRxDwdynR0OZc,27343
1823
1841
  vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
1824
1842
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1825
1843
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=ptMntHzVyy8ZuzNgeTuk7hREgKQ5UBdgq8VJFSGaW4Y,20832
1826
1844
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1827
- vellum_ai-1.1.2.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1828
- vellum_ai-1.1.2.dist-info/METADATA,sha256=OVlK0KuCbzqxBWKi6wQFdvSCn_dQi4uELNHCSisdL9Q,5554
1829
- vellum_ai-1.1.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1830
- vellum_ai-1.1.2.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1831
- vellum_ai-1.1.2.dist-info/RECORD,,
1845
+ vellum_ai-1.1.4.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1846
+ vellum_ai-1.1.4.dist-info/METADATA,sha256=vtS36kiUPHeBJrpddCNWGFQRpj7hTebtWkd4xCZVdKA,5547
1847
+ vellum_ai-1.1.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1848
+ vellum_ai-1.1.4.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1849
+ vellum_ai-1.1.4.dist-info/RECORD,,