vellum-ai 0.3.22__py3-none-any.whl → 0.5.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (326) hide show
  1. vellum/__init__.py +81 -60
  2. vellum/client.py +139 -137
  3. vellum/core/__init__.py +2 -0
  4. vellum/core/client_wrapper.py +1 -1
  5. vellum/core/jsonable_encoder.py +5 -9
  6. vellum/core/pydantic_utilities.py +12 -0
  7. vellum/errors/__init__.py +1 -2
  8. vellum/lib/__init__.py +5 -0
  9. vellum/lib/test_suites/__init__.py +5 -0
  10. vellum/lib/test_suites/constants.py +2 -0
  11. vellum/lib/test_suites/exceptions.py +2 -0
  12. vellum/lib/test_suites/resources.py +253 -0
  13. vellum/lib/utils/__init__.py +0 -0
  14. vellum/lib/utils/env.py +11 -0
  15. vellum/lib/utils/exceptions.py +2 -0
  16. vellum/lib/utils/paginator.py +28 -0
  17. vellum/resources/__init__.py +0 -4
  18. vellum/resources/deployments/client.py +27 -31
  19. vellum/resources/deployments/types/deployments_list_request_status.py +1 -13
  20. vellum/resources/document_indexes/client.py +35 -39
  21. vellum/resources/document_indexes/types/document_indexes_list_request_status.py +1 -13
  22. vellum/resources/documents/client.py +131 -35
  23. vellum/resources/folder_entities/client.py +4 -4
  24. vellum/resources/sandboxes/client.py +18 -46
  25. vellum/resources/test_suite_runs/client.py +19 -23
  26. vellum/resources/test_suites/client.py +17 -21
  27. vellum/resources/workflow_deployments/client.py +13 -17
  28. vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py +1 -13
  29. vellum/types/__init__.py +83 -55
  30. vellum/types/api_node_result.py +3 -7
  31. vellum/types/api_node_result_data.py +4 -8
  32. vellum/types/array_chat_message_content.py +3 -7
  33. vellum/types/array_chat_message_content_request.py +3 -7
  34. vellum/types/chat_history_input_request.py +4 -8
  35. vellum/types/chat_history_variable_value.py +3 -7
  36. vellum/types/chat_message.py +4 -8
  37. vellum/types/chat_message_request.py +4 -8
  38. vellum/types/chat_message_role.py +1 -32
  39. vellum/types/code_execution_node_array_result.py +3 -7
  40. vellum/types/code_execution_node_chat_history_result.py +3 -7
  41. vellum/types/code_execution_node_error_result.py +3 -7
  42. vellum/types/code_execution_node_function_call_result.py +3 -7
  43. vellum/types/code_execution_node_json_result.py +3 -7
  44. vellum/types/code_execution_node_number_result.py +3 -7
  45. vellum/types/code_execution_node_result.py +3 -7
  46. vellum/types/code_execution_node_result_data.py +3 -7
  47. vellum/types/code_execution_node_search_results_result.py +3 -7
  48. vellum/types/code_execution_node_string_result.py +3 -7
  49. vellum/types/conditional_node_result.py +3 -7
  50. vellum/types/conditional_node_result_data.py +3 -7
  51. vellum/types/deployment_provider_payload_response.py +3 -7
  52. vellum/types/deployment_read.py +8 -12
  53. vellum/types/document_document_to_document_index.py +6 -10
  54. vellum/types/document_index_read.py +8 -12
  55. vellum/types/document_read.py +8 -12
  56. vellum/types/enriched_normalized_completion.py +9 -13
  57. vellum/types/entity_status.py +1 -18
  58. vellum/types/environment_enum.py +1 -27
  59. vellum/types/error_variable_value.py +3 -7
  60. vellum/types/execute_prompt_api_error_response.py +4 -8
  61. vellum/types/execute_workflow_error_response.py +4 -8
  62. vellum/types/execute_workflow_response.py +3 -7
  63. vellum/types/execute_workflow_stream_error_response.py +4 -8
  64. vellum/types/execution_array_vellum_value.py +4 -8
  65. vellum/types/execution_chat_history_vellum_value.py +4 -8
  66. vellum/types/execution_error_vellum_value.py +4 -8
  67. vellum/types/execution_function_call_vellum_value.py +4 -8
  68. vellum/types/execution_json_vellum_value.py +4 -8
  69. vellum/types/execution_number_vellum_value.py +4 -8
  70. vellum/types/execution_search_results_vellum_value.py +4 -8
  71. vellum/types/execution_string_vellum_value.py +4 -8
  72. vellum/types/external_test_case_execution.py +31 -0
  73. vellum/types/external_test_case_execution_request.py +31 -0
  74. vellum/types/finish_reason_enum.py +1 -27
  75. vellum/types/fulfilled_execute_prompt_event.py +3 -7
  76. vellum/types/fulfilled_execute_prompt_response.py +5 -9
  77. vellum/types/fulfilled_execute_workflow_workflow_result_event.py +3 -7
  78. vellum/types/fulfilled_function_call.py +3 -7
  79. vellum/types/{registered_prompt_input_variable_request.py → fulfilled_function_call_request.py} +10 -9
  80. vellum/types/fulfilled_prompt_execution_meta.py +3 -7
  81. vellum/types/fulfilled_workflow_node_result_event.py +3 -7
  82. vellum/types/function_call_chat_message_content.py +3 -7
  83. vellum/types/function_call_chat_message_content_request.py +3 -7
  84. vellum/types/function_call_chat_message_content_value.py +3 -7
  85. vellum/types/function_call_chat_message_content_value_request.py +3 -7
  86. vellum/types/function_call_variable_value.py +3 -7
  87. vellum/types/generate_error_response.py +4 -8
  88. vellum/types/generate_options_request.py +4 -8
  89. vellum/types/generate_request.py +6 -10
  90. vellum/types/generate_result.py +5 -9
  91. vellum/types/generate_result_data.py +4 -8
  92. vellum/types/generate_result_error.py +4 -8
  93. vellum/types/generate_stream_response.py +3 -7
  94. vellum/types/generate_stream_result.py +3 -7
  95. vellum/types/generate_stream_result_data.py +3 -7
  96. vellum/types/image_chat_message_content.py +3 -7
  97. vellum/types/image_chat_message_content_request.py +3 -7
  98. vellum/types/image_variable_value.py +3 -7
  99. vellum/types/indexing_state_enum.py +3 -37
  100. vellum/types/initiated_execute_prompt_event.py +3 -7
  101. vellum/types/initiated_prompt_execution_meta.py +3 -7
  102. vellum/types/initiated_workflow_node_result_event.py +3 -7
  103. vellum/types/json_input_request.py +4 -8
  104. vellum/types/json_variable_value.py +3 -7
  105. vellum/types/logical_operator.py +23 -173
  106. vellum/types/logprobs_enum.py +1 -18
  107. vellum/types/metadata_filter_config_request.py +3 -7
  108. vellum/types/metadata_filter_rule_combinator.py +1 -18
  109. vellum/types/metadata_filter_rule_request.py +3 -7
  110. vellum/types/ml_model_usage.py +3 -7
  111. vellum/types/named_scenario_input_chat_history_variable_value_request.py +31 -0
  112. vellum/types/named_scenario_input_request.py +31 -0
  113. vellum/types/{prompt_template_block_data.py → named_scenario_input_string_variable_value_request.py} +8 -9
  114. vellum/types/{prompt_template_block_data_request.py → named_test_case_chat_history_variable_value.py} +9 -9
  115. vellum/types/named_test_case_chat_history_variable_value_request.py +3 -7
  116. vellum/types/named_test_case_error_variable_value.py +31 -0
  117. vellum/types/named_test_case_error_variable_value_request.py +3 -7
  118. vellum/types/{register_prompt_prompt.py → named_test_case_function_call_variable_value.py} +7 -13
  119. vellum/types/named_test_case_function_call_variable_value_request.py +31 -0
  120. vellum/types/{register_prompt_error_response.py → named_test_case_json_variable_value.py} +7 -9
  121. vellum/types/named_test_case_json_variable_value_request.py +3 -7
  122. vellum/types/{registered_prompt_sandbox_snapshot.py → named_test_case_number_variable_value.py} +7 -9
  123. vellum/types/named_test_case_number_variable_value_request.py +3 -7
  124. vellum/types/named_test_case_search_results_variable_value.py +31 -0
  125. vellum/types/named_test_case_search_results_variable_value_request.py +3 -7
  126. vellum/types/named_test_case_string_variable_value.py +30 -0
  127. vellum/types/named_test_case_string_variable_value_request.py +3 -7
  128. vellum/types/named_test_case_variable_value.py +94 -0
  129. vellum/types/named_test_case_variable_value_request.py +12 -0
  130. vellum/types/node_input_compiled_array_value.py +3 -7
  131. vellum/types/node_input_compiled_chat_history_value.py +3 -7
  132. vellum/types/node_input_compiled_error_value.py +3 -7
  133. vellum/types/node_input_compiled_function_call.py +3 -7
  134. vellum/types/node_input_compiled_json_value.py +3 -7
  135. vellum/types/node_input_compiled_number_value.py +3 -7
  136. vellum/types/node_input_compiled_search_results_value.py +3 -7
  137. vellum/types/node_input_compiled_string_value.py +3 -7
  138. vellum/types/node_output_compiled_array_value.py +3 -7
  139. vellum/types/node_output_compiled_chat_history_value.py +3 -7
  140. vellum/types/node_output_compiled_error_value.py +3 -7
  141. vellum/types/node_output_compiled_function_value.py +3 -7
  142. vellum/types/node_output_compiled_json_value.py +3 -7
  143. vellum/types/node_output_compiled_number_value.py +3 -7
  144. vellum/types/node_output_compiled_search_results_value.py +3 -7
  145. vellum/types/node_output_compiled_string_value.py +3 -7
  146. vellum/types/normalized_log_probs.py +3 -7
  147. vellum/types/normalized_token_log_probs.py +3 -7
  148. vellum/types/number_variable_value.py +3 -7
  149. vellum/types/paginated_document_index_read_list.py +3 -7
  150. vellum/types/paginated_slim_deployment_read_list.py +3 -7
  151. vellum/types/paginated_slim_document_list.py +3 -7
  152. vellum/types/paginated_slim_workflow_deployment_list.py +3 -7
  153. vellum/types/paginated_test_suite_run_execution_list.py +3 -7
  154. vellum/types/paginated_test_suite_test_case_list.py +3 -7
  155. vellum/types/processing_failure_reason_enum.py +1 -20
  156. vellum/types/processing_state_enum.py +1 -32
  157. vellum/types/prompt_deployment_expand_meta_request_request.py +9 -13
  158. vellum/types/prompt_execution_meta.py +3 -7
  159. vellum/types/prompt_node_result.py +3 -7
  160. vellum/types/prompt_node_result_data.py +3 -7
  161. vellum/types/raw_prompt_execution_overrides_request.py +5 -9
  162. vellum/types/rejected_execute_prompt_event.py +3 -7
  163. vellum/types/rejected_execute_prompt_response.py +5 -9
  164. vellum/types/rejected_execute_workflow_workflow_result_event.py +3 -7
  165. vellum/types/rejected_function_call.py +3 -7
  166. vellum/types/rejected_prompt_execution_meta.py +3 -7
  167. vellum/types/rejected_workflow_node_result_event.py +3 -7
  168. vellum/types/sandbox_scenario.py +8 -8
  169. vellum/types/scenario_input.py +18 -21
  170. vellum/types/{registered_prompt_sandbox.py → scenario_input_chat_history_variable_value.py} +7 -13
  171. vellum/types/scenario_input_string_variable_value.py +30 -0
  172. vellum/types/search_error_response.py +4 -8
  173. vellum/types/search_filters_request.py +5 -9
  174. vellum/types/search_node_result.py +3 -7
  175. vellum/types/search_node_result_data.py +4 -8
  176. vellum/types/search_request_options_request.py +7 -11
  177. vellum/types/search_response.py +4 -8
  178. vellum/types/search_result.py +6 -10
  179. vellum/types/search_result_document.py +7 -11
  180. vellum/types/search_result_document_request.py +6 -10
  181. vellum/types/search_result_merging_request.py +4 -8
  182. vellum/types/search_result_request.py +6 -10
  183. vellum/types/search_results_variable_value.py +3 -7
  184. vellum/types/search_weights_request.py +5 -9
  185. vellum/types/slim_deployment_read.py +7 -11
  186. vellum/types/slim_document.py +12 -16
  187. vellum/types/slim_workflow_deployment.py +9 -13
  188. vellum/types/streaming_execute_prompt_event.py +4 -8
  189. vellum/types/streaming_prompt_execution_meta.py +3 -7
  190. vellum/types/streaming_workflow_node_result_event.py +3 -7
  191. vellum/types/string_chat_message_content.py +3 -7
  192. vellum/types/string_chat_message_content_request.py +3 -7
  193. vellum/types/string_input_request.py +4 -8
  194. vellum/types/string_variable_value.py +3 -7
  195. vellum/types/submit_completion_actual_request.py +8 -12
  196. vellum/types/submit_completion_actuals_error_response.py +3 -7
  197. vellum/types/subworkflow_node_result.py +3 -7
  198. vellum/types/templating_node_array_result.py +3 -7
  199. vellum/types/templating_node_chat_history_result.py +3 -7
  200. vellum/types/templating_node_error_result.py +3 -7
  201. vellum/types/templating_node_function_call_result.py +3 -7
  202. vellum/types/templating_node_json_result.py +3 -7
  203. vellum/types/templating_node_number_result.py +3 -7
  204. vellum/types/templating_node_result.py +3 -7
  205. vellum/types/templating_node_result_data.py +3 -7
  206. vellum/types/templating_node_search_results_result.py +3 -7
  207. vellum/types/templating_node_string_result.py +3 -7
  208. vellum/types/terminal_node_array_result.py +4 -8
  209. vellum/types/terminal_node_chat_history_result.py +4 -8
  210. vellum/types/terminal_node_error_result.py +4 -8
  211. vellum/types/terminal_node_function_call_result.py +4 -8
  212. vellum/types/terminal_node_json_result.py +4 -8
  213. vellum/types/terminal_node_number_result.py +4 -8
  214. vellum/types/terminal_node_result.py +3 -7
  215. vellum/types/terminal_node_result_data.py +3 -7
  216. vellum/types/terminal_node_search_results_result.py +4 -8
  217. vellum/types/terminal_node_string_result.py +4 -8
  218. vellum/types/test_case_chat_history_variable_value.py +7 -6
  219. vellum/types/test_case_error_variable_value.py +7 -6
  220. vellum/types/test_case_function_call_variable_value.py +32 -0
  221. vellum/types/test_case_json_variable_value.py +7 -6
  222. vellum/types/test_case_number_variable_value.py +7 -6
  223. vellum/types/test_case_search_results_variable_value.py +7 -6
  224. vellum/types/test_case_string_variable_value.py +7 -6
  225. vellum/types/test_case_variable_value.py +12 -0
  226. vellum/types/test_suite_run_deployment_release_tag_exec_config.py +4 -8
  227. vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py +5 -9
  228. vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +5 -9
  229. vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py +4 -8
  230. vellum/types/test_suite_run_exec_config.py +14 -1
  231. vellum/types/test_suite_run_exec_config_request.py +14 -1
  232. vellum/types/test_suite_run_execution.py +3 -7
  233. vellum/types/test_suite_run_execution_chat_history_output.py +3 -7
  234. vellum/types/test_suite_run_execution_error_output.py +3 -7
  235. vellum/types/test_suite_run_execution_function_call_output.py +32 -0
  236. vellum/types/test_suite_run_execution_json_output.py +3 -7
  237. vellum/types/test_suite_run_execution_metric_definition.py +3 -7
  238. vellum/types/test_suite_run_execution_metric_result.py +3 -7
  239. vellum/types/test_suite_run_execution_number_output.py +3 -7
  240. vellum/types/test_suite_run_execution_output.py +12 -0
  241. vellum/types/test_suite_run_execution_search_results_output.py +3 -7
  242. vellum/types/test_suite_run_execution_string_output.py +3 -7
  243. vellum/types/{model_version_sandbox_snapshot.py → test_suite_run_external_exec_config.py} +8 -18
  244. vellum/types/{registered_prompt_model_version.py → test_suite_run_external_exec_config_data.py} +6 -14
  245. vellum/types/test_suite_run_external_exec_config_data_request.py +29 -0
  246. vellum/types/{registered_prompt_deployment.py → test_suite_run_external_exec_config_request.py} +8 -16
  247. vellum/types/test_suite_run_external_exec_config_type_enum.py +5 -0
  248. vellum/types/test_suite_run_metric_error_output.py +3 -7
  249. vellum/types/test_suite_run_metric_number_output.py +3 -7
  250. vellum/types/test_suite_run_metric_string_output.py +3 -7
  251. vellum/types/test_suite_run_read.py +5 -9
  252. vellum/types/test_suite_run_state.py +1 -37
  253. vellum/types/test_suite_run_test_suite.py +3 -7
  254. vellum/types/test_suite_run_workflow_release_tag_exec_config.py +4 -8
  255. vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py +5 -9
  256. vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +5 -9
  257. vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py +4 -8
  258. vellum/types/test_suite_test_case.py +3 -7
  259. vellum/types/upload_document_error_response.py +3 -7
  260. vellum/types/upload_document_response.py +4 -8
  261. vellum/types/vellum_error.py +3 -7
  262. vellum/types/vellum_error_code_enum.py +3 -32
  263. vellum/types/vellum_error_request.py +3 -7
  264. vellum/types/vellum_image.py +3 -7
  265. vellum/types/vellum_image_request.py +3 -7
  266. vellum/types/vellum_variable.py +3 -7
  267. vellum/types/vellum_variable_type.py +6 -57
  268. vellum/types/workflow_deployment_read.py +9 -13
  269. vellum/types/workflow_event_error.py +3 -7
  270. vellum/types/workflow_execution_actual_chat_history_request.py +8 -12
  271. vellum/types/workflow_execution_actual_json_request.py +8 -12
  272. vellum/types/workflow_execution_actual_string_request.py +8 -12
  273. vellum/types/workflow_execution_event_error_code.py +13 -52
  274. vellum/types/workflow_execution_event_type.py +1 -18
  275. vellum/types/workflow_execution_node_result_event.py +3 -7
  276. vellum/types/workflow_execution_workflow_result_event.py +3 -7
  277. vellum/types/workflow_node_result_event_state.py +3 -32
  278. vellum/types/workflow_output_array.py +4 -8
  279. vellum/types/workflow_output_chat_history.py +4 -8
  280. vellum/types/workflow_output_error.py +4 -8
  281. vellum/types/workflow_output_function_call.py +4 -8
  282. vellum/types/workflow_output_image.py +4 -8
  283. vellum/types/workflow_output_json.py +4 -8
  284. vellum/types/workflow_output_number.py +4 -8
  285. vellum/types/workflow_output_search_results.py +4 -8
  286. vellum/types/workflow_output_string.py +4 -8
  287. vellum/types/workflow_request_chat_history_input_request.py +4 -8
  288. vellum/types/workflow_request_json_input_request.py +4 -8
  289. vellum/types/workflow_request_number_input_request.py +4 -8
  290. vellum/types/workflow_request_string_input_request.py +4 -8
  291. vellum/types/workflow_result_event.py +3 -7
  292. vellum/types/workflow_result_event_output_data_array.py +4 -8
  293. vellum/types/workflow_result_event_output_data_chat_history.py +4 -8
  294. vellum/types/workflow_result_event_output_data_error.py +4 -8
  295. vellum/types/workflow_result_event_output_data_function_call.py +4 -8
  296. vellum/types/workflow_result_event_output_data_json.py +4 -8
  297. vellum/types/workflow_result_event_output_data_number.py +4 -8
  298. vellum/types/workflow_result_event_output_data_search_results.py +4 -8
  299. vellum/types/workflow_result_event_output_data_string.py +5 -9
  300. {vellum_ai-0.3.22.dist-info → vellum_ai-0.5.0.dist-info}/METADATA +1 -1
  301. vellum_ai-0.5.0.dist-info/RECORD +382 -0
  302. vellum/errors/conflict_error.py +0 -9
  303. vellum/resources/model_versions/__init__.py +0 -2
  304. vellum/resources/model_versions/client.py +0 -123
  305. vellum/resources/registered_prompts/__init__.py +0 -2
  306. vellum/resources/registered_prompts/client.py +0 -327
  307. vellum/types/block_type_enum.py +0 -36
  308. vellum/types/model_version_build_config.py +0 -40
  309. vellum/types/model_version_exec_config.py +0 -48
  310. vellum/types/model_version_exec_config_parameters.py +0 -37
  311. vellum/types/model_version_read.py +0 -82
  312. vellum/types/model_version_read_status_enum.py +0 -36
  313. vellum/types/prompt_template_block.py +0 -41
  314. vellum/types/prompt_template_block_properties.py +0 -47
  315. vellum/types/prompt_template_block_properties_request.py +0 -47
  316. vellum/types/prompt_template_block_request.py +0 -41
  317. vellum/types/prompt_template_block_state.py +0 -22
  318. vellum/types/provider_enum.py +0 -81
  319. vellum/types/register_prompt_model_parameters_request.py +0 -37
  320. vellum/types/register_prompt_prompt_info_request.py +0 -35
  321. vellum/types/register_prompt_response.py +0 -62
  322. vellum/types/scenario_input_request.py +0 -34
  323. vellum/types/scenario_input_type_enum.py +0 -22
  324. vellum_ai-0.3.22.dist-info/RECORD +0 -380
  325. {vellum_ai-0.3.22.dist-info → vellum_ai-0.5.0.dist-info}/LICENSE +0 -0
  326. {vellum_ai-0.3.22.dist-info → vellum_ai-0.5.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,382 @@
1
+ vellum/__init__.py,sha256=RpP5FLUDUph2qBCQ-TlpodjRFc1PDGDZCk-JBGj0UBM,35591
2
+ vellum/client.py,sha256=7JaU104s0u_WhB8QAqIZcMv9IyvU-a0nKVZhTPKiEpw,97089
3
+ vellum/core/__init__.py,sha256=1pNSKkwyQvMl_F0wohBqmoQAITptg3zlvCwsoSSzy7c,853
4
+ vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
+ vellum/core/client_wrapper.py,sha256=YUdARR7B9QqhNV9JOZYVoNyzoORUHfpBag8gvwu-BfA,1697
6
+ vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
+ vellum/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
8
+ vellum/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
9
+ vellum/core/jsonable_encoder.py,sha256=L6G68Py6gEo8n87rXwlkLPUyzHvXftEBjJZNb2tCuOA,3742
10
+ vellum/core/pydantic_utilities.py,sha256=eCOGHdLoaxK_6QSFYKdN0LWJo3atTUXT3VPyqJh3rxM,329
11
+ vellum/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
12
+ vellum/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
13
+ vellum/environment.py,sha256=bcAFjoE9XXd7tiysYS90Os669IJmUMZS2JZ_ZQn0Dpg,498
14
+ vellum/errors/__init__.py,sha256=HZB8vVqzDNx0M2uFJ05S5RcGTH95iVDl4v3rQ4xRqSw,343
15
+ vellum/errors/bad_request_error.py,sha256=jvBFMSUKdTc6ya16S5O7zwaFnPhOm8N4DjIom_pw5pc,248
16
+ vellum/errors/forbidden_error.py,sha256=dgnatOGair3CvxljCE45_qwN_yefzcw2G0vw88wrrOA,247
17
+ vellum/errors/internal_server_error.py,sha256=E0rgqJC0-LcetLi1HmSi92KpvNkGSRCIdBeEqT_ln1s,252
18
+ vellum/errors/not_found_error.py,sha256=P65k-Lm2RuefAVSNLER5hH-4P99SGohKy2cOPSrIxNk,246
19
+ vellum/lib/__init__.py,sha256=KTSY0V59WEOr5uNyAei1dDfaAatyXw_Aca5kNjo5mY0,79
20
+ vellum/lib/test_suites/__init__.py,sha256=hNsLoHSykqXDJP-MwFvu2lExImxo9KEyEJjt_fdAzpE,77
21
+ vellum/lib/test_suites/constants.py,sha256=Vteml4_csZsMgo_q3-71E3JRCAoN6308TXLu5nfLhmU,116
22
+ vellum/lib/test_suites/exceptions.py,sha256=6Xacoyv43fJvVf6Dt6Io5a-f9vF12Tx51jzsQRNSqhY,56
23
+ vellum/lib/test_suites/resources.py,sha256=rjgPFktL37zNyB0WWErLqjDR1OzmBfjf6Ry6pb97r2A,9197
24
+ vellum/lib/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ vellum/lib/utils/env.py,sha256=__k8PagSUxW09x2ZMmwFrM_mwy-ky68aqml-e6jaYys,280
26
+ vellum/lib/utils/exceptions.py,sha256=h9s9PnHqrTX5ohmZyCXovpWoTB7f3tAd5z_5nP0drCM,48
27
+ vellum/lib/utils/paginator.py,sha256=mQwHZEkZHmCNBCctp8zkyEXmcfZtuU5gOL5gC3vNgUA,693
28
+ vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ vellum/resources/__init__.py,sha256=pqoVsVVIrUG-v6yt4AMtc7F5O-K7wKlvqhQeht9-Ax4,730
30
+ vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
31
+ vellum/resources/deployments/client.py,sha256=zCIRHxHX7DZ8ja5px7jq28-ZzMwiazWxy-J2yydN4ho,19588
32
+ vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
33
+ vellum/resources/deployments/types/deployments_list_request_status.py,sha256=CxlQD16KZXme7x31YYCe_3aAgEueutDTeJo5A4Au-aU,174
34
+ vellum/resources/document_indexes/__init__.py,sha256=YpOl_9IV7xOlH4OmusQxtAJB11kxQfCSMDyT1_UD0oM,165
35
+ vellum/resources/document_indexes/client.py,sha256=wbmWs9VPKypndRqZl8nirMznHHKckW7yHTg79eHfib8,39845
36
+ vellum/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
37
+ vellum/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=sfUEB0cvOSmlE2iITqnMVyHv05Zy2fWP4QjCIYqMg0M,178
38
+ vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
39
+ vellum/resources/documents/client.py,sha256=x0Hf_oHlBYhHsK_R7CIQrJKj-cXrF0ezUaEGPy6ADkQ,34010
40
+ vellum/resources/folder_entities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
41
+ vellum/resources/folder_entities/client.py,sha256=dbq-WQ9Rh7zvB4i_U_FXqF1qvRhSEsJqOq6dKr7_PzY,6435
42
+ vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
43
+ vellum/resources/sandboxes/client.py,sha256=Ookq63OqBgYKalTeA9IhJtufmLEv2cyIq2tFqIFfNsM,12738
44
+ vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
+ vellum/resources/test_suite_runs/client.py,sha256=LOcjVwBAgQF__yEGvsbZpjBhefGtLL1vnSqJ1K3uly0,18728
46
+ vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
+ vellum/resources/test_suites/client.py,sha256=oQQrq-2iizwfJoFvbX5ZOvkjnGvP2lhVqmqrelpYCU8,18982
48
+ vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
49
+ vellum/resources/workflow_deployments/client.py,sha256=qTB1FrEWP5yoZAWV345-Xvgdd2z31feXqfvQJ0ruHFs,11158
50
+ vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
51
+ vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
52
+ vellum/terraform/__init__.py,sha256=t69swjCfZmrf7tmHcUYVHH5bflrp1Ax2YnbwNMuG2YQ,454
53
+ vellum/terraform/_jsii/__init__.py,sha256=AV9B1-EC-DQ2MSTWojcpbHjahvoZxNaYeZ6aCi5SXEQ,473
54
+ vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz,sha256=e1tV8nF_TEMLqCNrRBkDIlXKfO65c0lGj92G-CzeAVI,15887
55
+ vellum/terraform/constraints.json,sha256=Pu3woy48d9csejER37XDbOVFvXUb9m9UrX4jFRUcilQ,43
56
+ vellum/terraform/data_vellum_document_index/__init__.py,sha256=4F9tbkaA9oTjMDmMrSgBPig-jQO8Mq5HQjzavJNaVQ4,21484
57
+ vellum/terraform/document_index/__init__.py,sha256=qq2zENI22bUvqGk_a1lmsoTr5O_xCCB_TpzM4uPhMiU,25018
58
+ vellum/terraform/provider/__init__.py,sha256=K1yLlTZkYBxhD4bhUV1v23hxDGgbfsAIGsSyeB54dNQ,10298
59
+ vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
60
+ vellum/terraform/versions.json,sha256=STW6Mg3BKDacFmbWHXziHxE90GWncZf4AIzCLiXm_7o,56
61
+ vellum/types/__init__.py,sha256=jV2nUg9gA8Q26zG9KL9ygJDDQ3bZOerYBn-0AbOiEKQ,47325
62
+ vellum/types/api_node_result.py,sha256=SvYIi1T-N_P3FVjzv9I91PaCT0IN958A3easp5Q7jqE,983
63
+ vellum/types/api_node_result_data.py,sha256=KFBmmizcEg73GwQMXUtEdJ4e9YGFpRLYAnalwxIcDug,1161
64
+ vellum/types/array_chat_message_content.py,sha256=vWO6D2eUf9N5wWvu3WPgLIdoKVRWa0tIV8UmGRbgW3c,1030
65
+ vellum/types/array_chat_message_content_item.py,sha256=OI-Egmo1nCHcHxAPyIiVE6cl9U56g9NxNMRw5pKp-qs,1297
66
+ vellum/types/array_chat_message_content_item_request.py,sha256=BDCVgQ578urGkM_118yAXWv4BZlWLPk22oBZGJIF6wo,1421
67
+ vellum/types/array_chat_message_content_request.py,sha256=RjOzVEKHKqOTLHCT0D1XkH34IDHp4XVwTwxLFPgKeng,1059
68
+ vellum/types/array_enum.py,sha256=4p5fpx2piS8FhkPAEz6Xu3OIOKFuDZF-aokSW6-dV0E,116
69
+ vellum/types/array_variable_value_item.py,sha256=xkX151Bfx4p9y6rVLIhz1m8rQLcyULrfBFUuyJJPnT8,3002
70
+ vellum/types/chat_history_enum.py,sha256=etXbSJGuOjEcYXyCoQEw0bd9sfbZZNctMQyFoCdnywM,129
71
+ vellum/types/chat_history_input_request.py,sha256=iBqK5uT7wzR2C9TPvtQfugUeL1-4kOg_KQAc7fWYpnk,1121
72
+ vellum/types/chat_history_variable_value.py,sha256=9k3JQuS2HK8wvxbIXNV-3Fk72rVdKhrnzQkDsiUbUA4,945
73
+ vellum/types/chat_message.py,sha256=jROO5ASj_l0MoGGmno1TCUP7aMLIk48miMDWHpKUn_w,1213
74
+ vellum/types/chat_message_content.py,sha256=jUdD6bGK6hpbgV4xzXOhlX1VZvATICxqxBe6rL2AYRg,1573
75
+ vellum/types/chat_message_content_request.py,sha256=-Ar1P-EdzMlIMedySF_t33N1jGPGxTb_IpP_teXq-6c,1737
76
+ vellum/types/chat_message_request.py,sha256=qTLtHfdZpyBxwtGen98TCbKVtKFYG6gLI8Y5hpzuNa8,1242
77
+ vellum/types/chat_message_role.py,sha256=-i0Jrcbwf72MkMoaFTGyxRduvlN7f5Y9ULhCXR5KNdA,182
78
+ vellum/types/code_execution_node_array_result.py,sha256=qKI_N1lNtOLmktu8QK0y7XlxuXypyobbTsZMbbjmtuM,996
79
+ vellum/types/code_execution_node_chat_history_result.py,sha256=G0su1vecLcin6IZVwDCnyzmmDF7TV2cmV_1sBxop5bc,967
80
+ vellum/types/code_execution_node_error_result.py,sha256=-8i2c9NsFpceDAb1S41q7DzcG7VZj5JbgysbeRh43_A,948
81
+ vellum/types/code_execution_node_function_call_result.py,sha256=GfaCJmRwcnfVU0BEicPUWEdWwlk3oDljXAyg_UaT_vQ,958
82
+ vellum/types/code_execution_node_json_result.py,sha256=NalNSJPsbud_GEIhjJTdtaqEDdwruBv4ORV0vYUT6Uk,926
83
+ vellum/types/code_execution_node_number_result.py,sha256=LAGP8AQEdHsAu4ZkpzXn5wLkgE0XssNoPnHLrthZYbs,905
84
+ vellum/types/code_execution_node_result.py,sha256=PPBpgfP873Xd5QnZ6WE3G9IpcnHC_DidAIceUPiHnEw,1034
85
+ vellum/types/code_execution_node_result_data.py,sha256=mQ3I1kKh7UeZjKfxlZ5W3Uhk3UurvMiavW7WGiP0Fe0,1016
86
+ vellum/types/code_execution_node_result_output.py,sha256=JlqgCO5Og1fo_fHgrn5Dq-g8UfYBaamaHw_xdyDAhNQ,3377
87
+ vellum/types/code_execution_node_search_results_result.py,sha256=sX2alyDbwH6M8X-LZLJZMgiS2otjJMFpv0KTItGli5I,972
88
+ vellum/types/code_execution_node_string_result.py,sha256=w_FeNnHyjpc-bjXPKBxHywO6lLszNGqia9xgYInIs0w,903
89
+ vellum/types/conditional_node_result.py,sha256=mR8FHOnTwLDO8U5uVNB2SkDrJSDRkcyLqXPSSL8Dil4,1022
90
+ vellum/types/conditional_node_result_data.py,sha256=BoSK8B_qDx-CztZw5qwl2Gk0Ow56gifNu2Ahg-P15iE,898
91
+ vellum/types/deployment_provider_payload_response.py,sha256=nEw7v0EVo3NgKDVtsBMjd9XLWmFAGk59U1Z-qSs-Stc,898
92
+ vellum/types/deployment_read.py,sha256=q3xfBEKQ8HsXc9en1c3oKSGQbyTc-xY54puIEe20okM,1938
93
+ vellum/types/document_document_to_document_index.py,sha256=kCPPJFnXu9HFZbk7PgRCtRDj5Cw2_0yEPjAStm-YC2E,1532
94
+ vellum/types/document_index_read.py,sha256=woSzXnq-EPqycq-MV1J0q_lHoAMOrlm8D0NqLphofMc,1783
95
+ vellum/types/document_read.py,sha256=3Lml49Shj9yBf_bEKctD9j20HOPjAWPnxDinWdKWOY4,2200
96
+ vellum/types/document_status.py,sha256=GD_TSoFmZUBJnPl-chAmaQFzQ2_TYO3PSqi3-9QfEHE,122
97
+ vellum/types/enriched_normalized_completion.py,sha256=encGXlb20RydLkPKmY_5gy7Hx2---yvSpQkyTZY9SCY,2108
98
+ vellum/types/entity_status.py,sha256=bY0jEpISwXqFnbWd3PSb3yXEr-ounPXlAO_fyvHV7l8,158
99
+ vellum/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wBDGA,179
100
+ vellum/types/error_enum.py,sha256=HF_ubfzqmFQN3vVCDFZALADjHFRChuvkU_-zqjxa3ns,116
101
+ vellum/types/error_variable_value.py,sha256=x5t2f3jk5zC6KyXYpk_ZgKv_lIRq_-P5hahou9Lohb0,926
102
+ vellum/types/execute_prompt_api_error_response.py,sha256=-RA-JhnAyj8_L9zNOCy4RsmmNwsldmIhTo-_mjHX60s,948
103
+ vellum/types/execute_prompt_event.py,sha256=WBKdWBRgtDYoxMbHC7FjCjCxxTuOgjINonDYQITD1-4,1636
104
+ vellum/types/execute_prompt_response.py,sha256=HHD1EoPDz78OQA8XYcsopklbzk0fVYk-rXwjwW19n6M,914
105
+ vellum/types/execute_workflow_error_response.py,sha256=r1Wpm5b6ujV3X1BNHVHXQ2hrnOjRoQVI_-WPkm6XZUw,947
106
+ vellum/types/execute_workflow_response.py,sha256=O6f_Ow0yhGxlPcDyGHt53UAHxjfEQLXeuowovniDSmU,1085
107
+ vellum/types/execute_workflow_stream_error_response.py,sha256=xDmKmS3wYFngxJJiE7AEhYxoU4tRTOf1jtWV-9n2zX4,953
108
+ vellum/types/execute_workflow_workflow_result_event.py,sha256=1UIAqBeCGkOSw_x62mtuGMZYCRCNCMbUqT1DlTMjVsc,1067
109
+ vellum/types/execution_array_vellum_value.py,sha256=KrhtwHmJhA_HaJ8T50xXes1Eiwzbqd5U0uNcu6t3pAU,1099
110
+ vellum/types/execution_chat_history_vellum_value.py,sha256=cexvJOYOIsPH-Cr2HZ66SS6ita8FiPun0iLbpcbnS5A,1070
111
+ vellum/types/execution_error_vellum_value.py,sha256=J_26__AYVeRop3O1v2DeF-gfWqVNtgEU94qFTahEj80,1051
112
+ vellum/types/execution_function_call_vellum_value.py,sha256=SLPxk3s06Fwpd4lorCyiYWseHIK_rclGdaAxC7P8tes,1061
113
+ vellum/types/execution_json_vellum_value.py,sha256=X3Pd3_Y59OLHfYgBK0GlVgwFRGt2SQ7x_gtcYZlvS0k,1029
114
+ vellum/types/execution_number_vellum_value.py,sha256=xa5L8rZd4Qm4kzr-TXULoYFDJMIgzZqeAJ9OKwPi840,1008
115
+ vellum/types/execution_search_results_vellum_value.py,sha256=8yV87Ldlj9dxIgUfNhtq4ny2-aUCHb6WyOl4m7rz5gI,1075
116
+ vellum/types/execution_string_vellum_value.py,sha256=Llvb_swUejbBFXGJiyoDjp91-pr90-erHdMxsnGIqXQ,1006
117
+ vellum/types/execution_vellum_value.py,sha256=aEkd5eaFhGrI3POUFii5w3WZkvUgpB47KIFaAKS9_cQ,3144
118
+ vellum/types/external_test_case_execution.py,sha256=8Xo3ydFeP8FzrPU8V5XyfEVRy8cb022w3SLaVuu1aFs,1125
119
+ vellum/types/external_test_case_execution_request.py,sha256=dQt05_ct3Q_L7DUlVesHIoXWIGjfSdl2aw6YsCn8REo,1154
120
+ vellum/types/finish_reason_enum.py,sha256=KoNjzvXMHDCT0AUhhwGoZ1_7bi4h3fZEFvvHyGyoTP8,169
121
+ vellum/types/fulfilled_enum.py,sha256=MenrGneRMBvsq-n8tkMXAx0wppGWLJgkqdKnfklGP9U,124
122
+ vellum/types/fulfilled_execute_prompt_event.py,sha256=AuB-s-9Z7UVv_MEvQx2ncYIQ0SvdvYxWcEO85hD-00I,1235
123
+ vellum/types/fulfilled_execute_prompt_response.py,sha256=APRSwGVBh3H6-N1D_HrQKuWFkhPWAVqgn5nnp9YUADY,1457
124
+ vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=75PfQJgP1Ddp0V3h1QDDh5J-wWa0FLqWxq1fMwGUUkQ,1089
125
+ vellum/types/fulfilled_function_call.py,sha256=o4V5CPzM4yyShBv0c-JZMmqRQcDtZjACXTXhbvbbmzg,999
126
+ vellum/types/fulfilled_function_call_request.py,sha256=TkFuko99xU9WWYZ7MbIcaS4K9GexM78f71c5avuClIs,1073
127
+ vellum/types/fulfilled_prompt_execution_meta.py,sha256=PnbP6rGLHjNkM8XAPYwGF_zj_nyX80BuTCKCRoFWW_w,1228
128
+ vellum/types/fulfilled_workflow_node_result_event.py,sha256=-I5Evq3KNxVHP86AcV_lKCZMA_0qAXz8ZOHqzXwjjL4,1373
129
+ vellum/types/function_call.py,sha256=U1_fLhZ_VGnHYPX8rb7iqyyUhBzzbRAGR-ai4wLDrs4,813
130
+ vellum/types/function_call_chat_message_content.py,sha256=HXtr_-jXi0xFrq8u2ZpBaq-svxuxn2Bl-BQIc_X2jLw,1065
131
+ vellum/types/function_call_chat_message_content_request.py,sha256=UOtsUEmAQ66-UnNq1HB5vozK0ZAD6Mfdrkz_9RT9ogI,1094
132
+ vellum/types/function_call_chat_message_content_value.py,sha256=sckkwTHSa8nvpjvk5Wj9sQ2Ml4AI5UoB6Fj0TJM8Xcg,1013
133
+ vellum/types/function_call_chat_message_content_value_request.py,sha256=UJPQxmhOtbqGSt1-FfVmNHJG6VsKufu8H9ecStqU5aA,1020
134
+ vellum/types/function_call_enum.py,sha256=QK__nqbfcaPx1d6paBAoCFth7mWOStqgutY3MIit_cE,131
135
+ vellum/types/function_call_variable_value.py,sha256=S3lxBOL9eSI6UAmEciUP67rM7rZm_yYAGgQ1H6-suWQ,912
136
+ vellum/types/generate_error_response.py,sha256=Zrnq_Acm_2CfmZkZ60Axgw_uUISOjd6tbJBIkFuj2U0,940
137
+ vellum/types/generate_options_request.py,sha256=SD-39FB3py_HAZzMTaFyNeDRG0QbPPnayKICo2p9fTk,1079
138
+ vellum/types/generate_request.py,sha256=PdbtFLB-RfFJatIIB_b1prMWks-LSxChbXVszMIPIuw,1572
139
+ vellum/types/generate_response.py,sha256=DQNreImNi2knMgzvt4q-VPitdhS6cxj_xCoUYtAaOIs,1342
140
+ vellum/types/generate_result.py,sha256=UPCtFylBOhT6EsmzQo4jU8rfXdGlNZdAtWHZjZsHK6o,1394
141
+ vellum/types/generate_result_data.py,sha256=jXtJne8Bh2jUCzC1u-gMHOHxJJ06tT5_OlcMLq6XYvA,1087
142
+ vellum/types/generate_result_error.py,sha256=DDDe86-afRaPwPF6h25OTotlUwRkSg5_WmqQeKnkJH8,949
143
+ vellum/types/generate_stream_response.py,sha256=Mig0fk-ZS3zNBAFr1mthnkMs2PcpYMa8mkC7Cs42ba8,934
144
+ vellum/types/generate_stream_result.py,sha256=MVtPSf2xBtYpIoIgwtkE2xVit_bOS9cw0sJkCQu93iI,1101
145
+ vellum/types/generate_stream_result_data.py,sha256=erZMO34Kcw01WFwx8Od2Yy8hbINOiYwehdCPUVsGd-w,991
146
+ vellum/types/image_chat_message_content.py,sha256=VxAfJFUmUwOdYmJGKdMtfX4NsEH--CF7Gr3NC8Sad6o,975
147
+ vellum/types/image_chat_message_content_request.py,sha256=FelTpTbRUP_Fs5JW4FjdzTdF54E82olTWRs7l4IuaWQ,1004
148
+ vellum/types/image_enum.py,sha256=tCaNHfgdFi9F5MInvgaRq19i9lghWolWWmZpBH5uSJQ,116
149
+ vellum/types/image_variable_value.py,sha256=sTEWJjSx7Hh7uoZnH2eNpdF1lJltSw-yWQrbKYA5PzQ,1000
150
+ vellum/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwFYiel1U,213
151
+ vellum/types/initiated_enum.py,sha256=wLrGPYfE2-wOPUkceLglJheOUsHGAyROO0ropfSudJs,124
152
+ vellum/types/initiated_execute_prompt_event.py,sha256=_mdYoNnLS1u39vVbEugn37Al72ZmWa_WC0JmcM5DOH4,1134
153
+ vellum/types/initiated_prompt_execution_meta.py,sha256=SOLKLuVeSZeCm2CefjKX7hVGr5yijcRXHZCBHMxXBeU,1181
154
+ vellum/types/initiated_workflow_node_result_event.py,sha256=21Q_wO3U1qbYuNUAWBaXX2JVmgZZXJ7c-89FqJFNRZM,1377
155
+ vellum/types/json_enum.py,sha256=0Se0lTWxLGQe-JdQ8E9KwFt5NWXuI7BkOdWQcFKJg-8,114
156
+ vellum/types/json_input_request.py,sha256=fpBb3QS-E0a3hZU_mHZ5Yjkwr10-qqbQoMJbfhfGu_4,1048
157
+ vellum/types/json_variable_value.py,sha256=KdKz67NgVwVHpxXFgSxFPBeGBdjzTwZ_VKe22kcaWjo,904
158
+ vellum/types/logical_operator.py,sha256=MuuMZ1-gOCDvy1WDQkMFfiBNHsRCqKgJei-b3727sKc,487
159
+ vellum/types/logprobs_enum.py,sha256=D_458cZX2CAb6dX_ovrQ6HARlJkYcZRadKwsi1Cr-JM,151
160
+ vellum/types/metadata_filter_config_request.py,sha256=_1CVIxmDmtXezTMWoaqeea9boe8hyCmmAn28u69NEUk,1355
161
+ vellum/types/metadata_filter_rule_combinator.py,sha256=3Vpp1Mnv3As7efkxWTeV8qd4gdJ6OLoLhz_UeVBHAX8,165
162
+ vellum/types/metadata_filter_rule_request.py,sha256=kHXDnPobjbdWXBWda2lZNeUjNgJ4S9tQBIALYh3UlAo,1371
163
+ vellum/types/ml_model_usage.py,sha256=NYnyJt7C3cG88REt2X2zsmRZMqx-RBJp07ld6eAc96k,1086
164
+ vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=swgyn_U0Mzz13GmRNUZ-V1190h---N1rNVuQYBOmiAE,1098
165
+ vellum/types/named_scenario_input_request.py,sha256=v98mkxp2bZSWZur67dGxKM7UaIdk5H8b6mnK2myA4HE,1043
166
+ vellum/types/named_scenario_input_string_variable_value_request.py,sha256=rWuHXH_iaV3mkhuBWPfvMIIVKeYS9ygAi4pYQKLX1iQ,1006
167
+ vellum/types/named_test_case_chat_history_variable_value.py,sha256=wLR-Vhb_XAevyG1miX1AoyOagNyZ-7ievYyMxv4wEVQ,1044
168
+ vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=OTCmtteEOw70ptFTubbfh_m5C4qE4-KfM8ABMQpW-DE,1073
169
+ vellum/types/named_test_case_error_variable_value.py,sha256=HQI1CRF3K2fYxO_Gn5Y9KrrH4IEtzLN00rjt5wLJM0A,1018
170
+ vellum/types/named_test_case_error_variable_value_request.py,sha256=_LDMPlAbs9Q_-SghJW2UFioEH-IkOJCoIba6kBFVUho,1047
171
+ vellum/types/named_test_case_function_call_variable_value.py,sha256=7NrD4PlVYiUgFvYSIIJKnAwh4hgBY59SUu1VqrP52WI,1064
172
+ vellum/types/named_test_case_function_call_variable_value_request.py,sha256=OTMAd-Kxx8fZqQiJCy5K8ymuJpNxVSx93UDe9G8gGF8,1093
173
+ vellum/types/named_test_case_json_variable_value.py,sha256=icQDs-Z8EqoTbs6JiC4LiTHpgYkaDxUelCTsKyBTX_U,995
174
+ vellum/types/named_test_case_json_variable_value_request.py,sha256=F7L-Q5ZXiQDsv5JrUGMEY7Z7ILJ6UQIdBf3zyoJveJ0,1002
175
+ vellum/types/named_test_case_number_variable_value.py,sha256=N3fQPqNEeRIW6actTMPnlYwpVC16eHKbjUiR01a_e1Y,976
176
+ vellum/types/named_test_case_number_variable_value_request.py,sha256=2FjLXpstgKo10twG2UuSa0csPRtCzR0xV7mSDdopa1k,983
177
+ vellum/types/named_test_case_search_results_variable_value.py,sha256=H-KyurHySPSuVKlghlRLXkhBFRgKjstOZZzP_ePzllU,1051
178
+ vellum/types/named_test_case_search_results_variable_value_request.py,sha256=bKRFI9oSuHAO9gLscfof42d_slAT-EpFTUYaqMQ0OwY,1080
179
+ vellum/types/named_test_case_string_variable_value.py,sha256=g0qeMyTNN4N_3Y0QjtDdaO9kJJOysDC-SSEBRr0lc1M,974
180
+ vellum/types/named_test_case_string_variable_value_request.py,sha256=Jriilf5vooCSh2ReIt2ey1L-VsHZO8qHfGtfklSeRnM,981
181
+ vellum/types/named_test_case_variable_value.py,sha256=UtV113Yp1gpJvtNwB4HOLrvBMYwaeB0v2EDAv-v5d5o,3021
182
+ vellum/types/named_test_case_variable_value_request.py,sha256=qO-__UphDuhm6RjY7p_oYwO_IPNF1gS-vtJTHNxEs6I,3280
183
+ vellum/types/node_input_compiled_array_value.py,sha256=EovfwRo5RP2-iSoOw62ZQ1TXFkgQIFk--710HQWVe6I,1019
184
+ vellum/types/node_input_compiled_chat_history_value.py,sha256=PKEe2nu5ghEJXUWg_e9tRUhLwKHX0PmnQOf4VQp77nI,990
185
+ vellum/types/node_input_compiled_error_value.py,sha256=sGAVC36JonLCG5wwLlc1ThNek4Ud3H31E1dYWJ0rtBg,971
186
+ vellum/types/node_input_compiled_function_call.py,sha256=kWeyJ4hNW01HFzs2Q9AoF1CsmEi07Mpkewv-plXLnzg,976
187
+ vellum/types/node_input_compiled_json_value.py,sha256=JXOF4PTfmRtaHAWc-_G90RxMDKkuQ9fdoFlEgdAjCeU,949
188
+ vellum/types/node_input_compiled_number_value.py,sha256=Kpxo7ryDiOxylmzF1pz6jupsr0MPGpa6Rf69qhTNMgY,928
189
+ vellum/types/node_input_compiled_search_results_value.py,sha256=ejJuUB42LO9l-E12uKa0Ezk_T0nP6q023uuqDEqN4TU,995
190
+ vellum/types/node_input_compiled_string_value.py,sha256=cEssxmVjvY5SG2OINLYdw8pJPIJrKdEvdUgkU0xz_9k,926
191
+ vellum/types/node_input_variable_compiled_value.py,sha256=iXSNb6wRYmPOOzQZk8AWB929hedtL_NwFox17MjMT4w,3354
192
+ vellum/types/node_output_compiled_array_value.py,sha256=EZF3ddnHZY-W204Ja0iADDjcLVDs8R56va3973W7C7U,1008
193
+ vellum/types/node_output_compiled_chat_history_value.py,sha256=ciB6-KSnr_tV-uTQ1dGGqmKXodVanQ3hW2pQNevfiT4,979
194
+ vellum/types/node_output_compiled_error_value.py,sha256=ARX1mvBwoxr7bKyeHsoKaKIA6qL32klm7viYaMR58vU,960
195
+ vellum/types/node_output_compiled_function_value.py,sha256=Z9zVR29krOBrrZLQ781mBDkGCrh5hKD5N6vdoiVSD9E,966
196
+ vellum/types/node_output_compiled_json_value.py,sha256=py5bLrULnF7RH2Dqi5_OwTtDsNuMIWIGjC1HBZzEyro,938
197
+ vellum/types/node_output_compiled_number_value.py,sha256=KKtHNa33HH5qQLkJwqM8tHiMZqz_pfcZWOzuUFMZaIQ,917
198
+ vellum/types/node_output_compiled_search_results_value.py,sha256=DLjvpU_VT62Flj9OuouUpCV6XZxiXe9HRFR4vkQvyvg,984
199
+ vellum/types/node_output_compiled_string_value.py,sha256=iHTueQQe4zs-IQ_FMmYw4yDgWdcyDE_LXwaDb7xbbsc,915
200
+ vellum/types/node_output_compiled_value.py,sha256=xR2vnYE0d4Dyek9X-LOA_Cxos3D9qxXdS3rf6xQNjGM,3262
201
+ vellum/types/normalized_log_probs.py,sha256=LN6Ap1sDIZ5KZ_F6Xxc89SFAoLlV6sqPjju78wstEVg,1000
202
+ vellum/types/normalized_token_log_probs.py,sha256=-PYJPYzykDfG9aeXqRselY8XHdIvr0K1s6qnecPCB-k,1008
203
+ vellum/types/number_enum.py,sha256=M_h5PmC5HxQYpQbfqqyw1DualhKu1QOCU-o1NYTQz_o,118
204
+ vellum/types/number_variable_value.py,sha256=lZxdWVR_VwlAXpqHK6bgWXE32JcBkKkylnaJLi5iVy0,883
205
+ vellum/types/paginated_document_index_read_list.py,sha256=RowLxggvXFAniLSNAZWrWDGHp91GJLcJv6xk5rdKubA,1091
206
+ vellum/types/paginated_slim_deployment_read_list.py,sha256=SQSElvzHGApSBulXLzBuZhpS3JI_R3N96wV_p_LOXL4,1095
207
+ vellum/types/paginated_slim_document_list.py,sha256=L8RyvP1ADem7HUnNjDr4KyoQjIJtLOjMcc8xSD_5AFg,1070
208
+ vellum/types/paginated_slim_workflow_deployment_list.py,sha256=1NfPIuU_NgWgJsXcUpCBtOPj7MqZlblbcCXCjzGXwWc,1111
209
+ vellum/types/paginated_test_suite_run_execution_list.py,sha256=mVhD_un8RCqnJbH9yWliNQPf5E3C0jcH0ManhH6gxZc,1060
210
+ vellum/types/paginated_test_suite_test_case_list.py,sha256=Ak_plmBTt72atM2uC1PWm8uVffi3tPAozolApJ7LYS4,1044
211
+ vellum/types/processing_failure_reason_enum.py,sha256=R_KIW7TcQejhc-vLhtNf9SdkYADgoZCn4ch4_RRIvsI,195
212
+ vellum/types/processing_state_enum.py,sha256=lIEunnCpgYQExm2bGyTb12KyjQ3O7XOx636aWXb_Iwo,190
213
+ vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=r7xmsEaFZWLXKE1Y7GGjUXbaYyMnIdpdgFy3QvMEl8M,2044
214
+ vellum/types/prompt_deployment_input_request.py,sha256=o8PCi7TsitddNxiAfDblxaXkJ1-WjuDTAW0LnKbMDY4,1233
215
+ vellum/types/prompt_execution_meta.py,sha256=io92vwMO3qC7RsCIsyMPFEeY3Sizb2xv6X1TBwKu6eI,1370
216
+ vellum/types/prompt_node_result.py,sha256=BVRnp6zIKocaPquCln0UtqW2M18j8k_OnHLGWCB25hU,997
217
+ vellum/types/prompt_node_result_data.py,sha256=WaKh-Nh3vVklvitT3WxwVeMGt0VxAoeypDDW4gvcMpY,988
218
+ vellum/types/prompt_output.py,sha256=Df5UnLyBRf79_oUnYiMl9vi_h41yKEDLw1KgkgiX1Uk,1442
219
+ vellum/types/raw_prompt_execution_overrides_request.py,sha256=Hwfjk35PsGSqMfcRwBzwjfpaRiaixTVi8xsG9g9pV3E,1210
220
+ vellum/types/rejected_enum.py,sha256=ZatbMUdJos2j62CSK7lf2Pzv5xIh92XzRbzcsyc6NJg,122
221
+ vellum/types/rejected_execute_prompt_event.py,sha256=2giB2PrFd7i2eL3moa9FpGkA4BcR1_gXqnJ9Y5XVmeQ,1159
222
+ vellum/types/rejected_execute_prompt_response.py,sha256=dMzzZXvsVtLcnprXTbuPqwRJctJ1Bv07_4exvZRUKMQ,1417
223
+ vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=acYvyXoZfPMq2a0xCqCr8wtBSb6WzumErf_RngsYzqg,1103
224
+ vellum/types/rejected_function_call.py,sha256=KQrHybBgpZc1SSG_BxudlhZ1vOwu733XCCBGTeLOwDk,1038
225
+ vellum/types/rejected_prompt_execution_meta.py,sha256=kBS6bThYk1vvhKv47UB0FZP7WuCBoCAsbTnK43XQWbI,1138
226
+ vellum/types/rejected_workflow_node_result_event.py,sha256=NbHR7Dhd9QBxDY9AMVM3uHx6HkgPiW6C0LaBGktGycA,1293
227
+ vellum/types/sandbox_scenario.py,sha256=-MaSvpH6jSokr5XsCZybafKez3fnPctTFqm30Lfk8Ko,1144
228
+ vellum/types/scenario_input.py,sha256=6_jN2JaqgEOkQpP5h17l5HeRhI_kdNMD_jjVyNFDM7Q,907
229
+ vellum/types/scenario_input_chat_history_variable_value.py,sha256=j5CbnDsEQYHwVxXLSJFrXMDYKHCnvGYgDpozJ9NxB0A,1071
230
+ vellum/types/scenario_input_string_variable_value.py,sha256=JMwZg7htfdDqMuYgBRg-brwFO4sL6xfDI9DBIQFdT2o,1001
231
+ vellum/types/search_error_response.py,sha256=9gjyocnnz7l6DAU6RY_6WMvqY-z2BMXPru90Vqhzwos,938
232
+ vellum/types/search_filters_request.py,sha256=3yAsTofSzCk_w57AaRztgNm98QpnBdp6Rsa4DidQuEQ,1218
233
+ vellum/types/search_node_result.py,sha256=ylJR6lICVahKvr4eGZxDxdLbHkxnu3zaHEV-GWU7s54,997
234
+ vellum/types/search_node_result_data.py,sha256=bixMDjtlOKLFVkhUQHWkQcTffkbvYYfuob2hYkJWngg,1143
235
+ vellum/types/search_request_options_request.py,sha256=WI_MYTsu4pjILsaJvkC-1A-Ghi8ib5qQZdz3kUq9iSY,1622
236
+ vellum/types/search_response.py,sha256=tMnotqttu7YEYteBDuuriI2HYIJsstG1UFs-3GuNzPs,1047
237
+ vellum/types/search_result.py,sha256=an56LL9iowhUCIO6np-lQNpPUt2SaYaSsPqLByU3ig4,1304
238
+ vellum/types/search_result_document.py,sha256=z4Y2S_MZY1ebb-MmojkxpUh1N7VHHdUV3OheE6UfF_M,1437
239
+ vellum/types/search_result_document_request.py,sha256=xgR1HOrXdJUNUzQrK6f1KSaj508P1JgfsN6jejf7R0c,1365
240
+ vellum/types/search_result_merging_request.py,sha256=Yx1iv-58kFMCayP_ngjhD8O-m2nvlIAfAQUz1pRxwKI,972
241
+ vellum/types/search_result_request.py,sha256=fqqTr-id9cLg5cVxGavZSLOCJSTMBKPNRdkGAjJrytM,1333
242
+ vellum/types/search_results_enum.py,sha256=qiQWwPnGtlWgG6JVCOAV8KzJarrhOeZrOAeb569grgA,133
243
+ vellum/types/search_results_variable_value.py,sha256=eWhi8-aEO2pm5ybz-JJqS_5cqeITUabVQGgFX34P9Zk,950
244
+ vellum/types/search_weights_request.py,sha256=C6uvEWZSpmbslpU52qcVA-lEtKF_crRsafXsN_rDURc,1128
245
+ vellum/types/slim_deployment_read.py,sha256=_rdjrhGxMd9oyAhAUsPg5s4Uej-dxZML2yl8x-ydbqk,1753
246
+ vellum/types/slim_document.py,sha256=Sb02at3OFB_PXmIyevs3Ka0K1YUlgqUoN-LWW9kfx5c,2975
247
+ vellum/types/slim_workflow_deployment.py,sha256=xtJ7q7CYrLy0wc5Nx5BjDn7rI2pTPDAmJpAvAmPbLwM,2104
248
+ vellum/types/streaming_enum.py,sha256=vp3VWBaIOEg9liRsrwFCVLat4UFE8jp7HMMPP0KQUYw,124
249
+ vellum/types/streaming_execute_prompt_event.py,sha256=hx793bYN7WDvJeHyqMWtVKzcPe5rluac7DaMbmnUzOg,1388
250
+ vellum/types/streaming_prompt_execution_meta.py,sha256=SQaVvEgDhF-N7MBA8JYi5FJi0y9VmockMablab3mHjE,1030
251
+ vellum/types/streaming_workflow_node_result_event.py,sha256=Q4G30RF9p1WCOK0Zoo6lTGkl7OislrrvOziLqyb2hdk,1383
252
+ vellum/types/string_chat_message_content.py,sha256=wyBK73RnBksbaaklCEiDpoca6Q0WmFO4GaIXYObxI5E,930
253
+ vellum/types/string_chat_message_content_request.py,sha256=veTDkbJ39AfdxLUZ1MQPmQ55snl7aogaQwLyX7HgnRI,937
254
+ vellum/types/string_enum.py,sha256=8uLrjmZyaGRDEf7Y6DpJF1e4abJct69wIoq6ZQX6F-s,118
255
+ vellum/types/string_input_request.py,sha256=2c7ZbrA2r_Au12O-LnfMwY-5rQKzAqQkLVu-jc-qjTI,1026
256
+ vellum/types/string_variable_value.py,sha256=YGjpJpTVnxywk0mtXisQw8BkIfTS_amY4JPugLQ6dW0,881
257
+ vellum/types/submit_completion_actual_request.py,sha256=D3JNFxE8DHJP7RaSQjDBsJiacOwsd3I8r6-peyNDES0,1825
258
+ vellum/types/submit_completion_actuals_error_response.py,sha256=f2XlGM5NBdwZLy4oOJN9LrcaHwW31fGtTCmzcJVzUV4,875
259
+ vellum/types/submit_workflow_execution_actual_request.py,sha256=zR5Di5a9GC2fchGC9qLEXGELitg3UxCoQUqeIyeyLDc,1487
260
+ vellum/types/subworkflow_enum.py,sha256=6Tvuegdga54mAY0ojP19x9HTbsjOm3gw4QrH_BpD4rY,128
261
+ vellum/types/subworkflow_node_result.py,sha256=ICSI4rI2QFj4Nx_AWn_xgtiQYeQLCxsOioKNs1_ABLY,917
262
+ vellum/types/templating_node_array_result.py,sha256=huhwnErVQPAiN2nIk8QolAQRB1kPDdOrr0fnK4eKSf8,993
263
+ vellum/types/templating_node_chat_history_result.py,sha256=_1g3zY8AKbI4DyLg5nkvgoLsbUMXu_9HdgByRC3Qq8E,964
264
+ vellum/types/templating_node_error_result.py,sha256=3Sa0r1FpBaK_K_-9w6IzZDlN9z7MtdsulO9E9dAkavw,945
265
+ vellum/types/templating_node_function_call_result.py,sha256=Uz6GRk4TdWBJBJiyK3tqHTrR6zAJFAltAkyCO-9OSis,955
266
+ vellum/types/templating_node_json_result.py,sha256=guNdUc35pQjR4DspczVRHLVYucWYWmassTL4PO-CCVg,923
267
+ vellum/types/templating_node_number_result.py,sha256=16NTq0b8Bo8kB7Dyq4tUVURPXq8n9xnAWme0uT3Feu4,902
268
+ vellum/types/templating_node_result.py,sha256=xD7Z5G7R9xMVR8uGZVRX-SHsIFnHnzzSfBMUbfAIllo,1017
269
+ vellum/types/templating_node_result_data.py,sha256=sr9q2joBHsouTsgtXsG9Q_S46tX1FvN5a7CxbWV5Shk,956
270
+ vellum/types/templating_node_result_output.py,sha256=hZ2wrr8s0yg_l204bvCBBV2o0xn2aRZevnhRdAQINM4,3246
271
+ vellum/types/templating_node_search_results_result.py,sha256=heD8Tqk4GbtFRILq8kO8Xjbu-fvGU7i-08akMHqU_dA,969
272
+ vellum/types/templating_node_string_result.py,sha256=OzVQ-K-mdNu8GuELQL2dRLEeH8c7B56xsmnKLwhcYKM,900
273
+ vellum/types/terminal_node_array_result.py,sha256=mgBEjcdPdmae3NZdJ0fN58r8Z3HIWVqvuDaPK2V2mkM,1142
274
+ vellum/types/terminal_node_chat_history_result.py,sha256=BYrrb6peiMtkHDWoPky0pc4ELYDwgnuRb0lyHFmUr40,1113
275
+ vellum/types/terminal_node_error_result.py,sha256=rbO9su-F-BYY_CMjUq8RjykpMPQPMl6DjkhokxEpITM,1094
276
+ vellum/types/terminal_node_function_call_result.py,sha256=ZXpoaQsWUIqORiYqubOzMnNaWWOo8mATY5je9GNvZa4,1104
277
+ vellum/types/terminal_node_json_result.py,sha256=rLAPEuQpbMOZLNL8OWqkcQGLlLVZcrJb3dgv1FiDmGg,1072
278
+ vellum/types/terminal_node_number_result.py,sha256=SEwjdY43Tm__ntgiJqmKLmNt6LO159b_9G0sOyW_9kY,1051
279
+ vellum/types/terminal_node_result.py,sha256=h-l3xDB7qjivYFtjeQ9xJXT107DBLUQ5M4eItp4PHCI,1007
280
+ vellum/types/terminal_node_result_data.py,sha256=0EavYhcD-aZi5QngHK-bAB2wtFNw0CJC4mKXWCoDm10,948
281
+ vellum/types/terminal_node_result_output.py,sha256=lKXaYst9-JuY0rk0tjDV4mD2s_G-7gZm5FTKbW9xYo8,3164
282
+ vellum/types/terminal_node_search_results_result.py,sha256=neeojsER6K17-Mw8pQ92qMELRa_7o140wXeuvUty99Y,1118
283
+ vellum/types/terminal_node_string_result.py,sha256=AV-9qUXT0WJiftv_uv_qKSROXo8XEijEOMSshGU6JNA,1049
284
+ vellum/types/test_case_chat_history_variable_value.py,sha256=hi9BArWPk7im4X2091yGRfjpIgGPJSUBp9PqHA0ZH6w,1061
285
+ vellum/types/test_case_error_variable_value.py,sha256=7WIe0DMvp8tBCcqyRHQpT76vTylwuW2YQ3jRPkfc-t0,1036
286
+ vellum/types/test_case_function_call_variable_value.py,sha256=_1qdrMiMaKLWkljPpk8D0C9DH8VjQ7obWtY24mOy8xY,1081
287
+ vellum/types/test_case_json_variable_value.py,sha256=BsgNdPsgTh_Vxt3ZRkHy22foq2T-5MlKDSm0tDJFXpw,1012
288
+ vellum/types/test_case_number_variable_value.py,sha256=96vZuKZTm7AVa_r-xjTMTpQMRCCga-Pcfw0HLoAYkg8,996
289
+ vellum/types/test_case_search_results_variable_value.py,sha256=lzExcnYAH8PWjWEfMj6rmhDnQG7YSLiU0bwH62N2dIk,1068
290
+ vellum/types/test_case_string_variable_value.py,sha256=3-TIR-38VndZVe0fdPa0XPe-3PdUSCzYuffGQlH3WY4,991
291
+ vellum/types/test_case_variable_value.py,sha256=2BMIxU6WOTBZ6UE0Q5w3nHUSpvh1bwJD7y2cbSJ222k,2834
292
+ vellum/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=DYsHB5DPs3Go5_oLu5_EaLtvtTLyoHQ0MWqmhmfLGS8,1373
293
+ vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=4yR8eBKuOBxLm9eYlpQr03TH1FcvGtkN7B89BuQS_HE,1228
294
+ vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=9x9e-oxKOrbPibl2bOtrEY74Jhnr5jCrkJnmhv19E9w,1235
295
+ vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=MYmMaV7pnDGoH-QvlWuVIeZ4xEwCJdePIZNPl9PDTU0,1411
296
+ vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py,sha256=P49aTblFExVUA90soNhC-_S0q8xAHGCWOnm9uRiqgp0,174
297
+ vellum/types/test_suite_run_exec_config.py,sha256=ilF_6HuSMOt1csjBLGd8zzKB4BxbF1KL8okpD79xhag,1483
298
+ vellum/types/test_suite_run_exec_config_request.py,sha256=cV_Yq4cbHK8MZxPp6RQqA6HerbTSyDPcZCyBULxELF0,1598
299
+ vellum/types/test_suite_run_execution.py,sha256=IwWBhWtlqJvA0pmv0Tm5mKVGbEEk0TzIdOb1rApk4wM,1158
300
+ vellum/types/test_suite_run_execution_chat_history_output.py,sha256=zY5gpMhhYUfQ36Uy2D-SshURvn2vUqGD57EvEiOuW7c,1115
301
+ vellum/types/test_suite_run_execution_error_output.py,sha256=hY1TSU9-TvllhHvnubSy9F_JirzFFucL_5mbfllf8Eo,1089
302
+ vellum/types/test_suite_run_execution_function_call_output.py,sha256=ftrOWH3EuShDVLF4ICUJcICursiZ1q8dS59IhXoBK5E,1135
303
+ vellum/types/test_suite_run_execution_json_output.py,sha256=jEcPAovcKOadRnodsQyu0wTGlT0fKoy9XfDUhU_702c,1066
304
+ vellum/types/test_suite_run_execution_metric_definition.py,sha256=r9K5M-dxQZ0SN2Sp7qCLHf0ai0C0F67-RC4zLnoNDJg,973
305
+ vellum/types/test_suite_run_execution_metric_result.py,sha256=WKp6K3MhDlbBC245CT87YRsdPwrEkoLJUh8Ojzj3SO8,1218
306
+ vellum/types/test_suite_run_execution_number_output.py,sha256=WB68g1AGxjSkYBLhEzSAr-B-5SkRQRb4VuZCCLppHrw,1047
307
+ vellum/types/test_suite_run_execution_output.py,sha256=3OmxfK6ugKGyjA7udQ4p_E_nH7gCuvFefyCQZKkQU3g,3057
308
+ vellum/types/test_suite_run_execution_search_results_output.py,sha256=m4O5h8DYWyGj0h5mwu7n5l_9UoTLvIXlZskdzJLTEg0,1122
309
+ vellum/types/test_suite_run_execution_string_output.py,sha256=Q-iBSoRkgrqEp9PaJQC_yGKVUZs7aKPcaRzEIsWk-NI,1045
310
+ vellum/types/test_suite_run_external_exec_config.py,sha256=O3r_NWl-a58UyBmZSYj6R8g4i8j-18zoL7jUttDK6r4,1331
311
+ vellum/types/test_suite_run_external_exec_config_data.py,sha256=MUTj93cQoSZ1sRSv13NyAvzxBqFHFvKr5f7Z2ahwyZQ,1115
312
+ vellum/types/test_suite_run_external_exec_config_data_request.py,sha256=Dl5C9Z4VshSoy81JhLddAug4dc9ECKNkx3_GOf6hGck,1144
313
+ vellum/types/test_suite_run_external_exec_config_request.py,sha256=CRuAm6lyb2DdDL6_WoV_ncgmJJGwgHpOUzfX6l7QLuM,1360
314
+ vellum/types/test_suite_run_external_exec_config_type_enum.py,sha256=yX-VwukrI1rPH7_R2D7sRlBioduW6q791zXWiODMlo0,148
315
+ vellum/types/test_suite_run_metric_error_output.py,sha256=nB1kd7iypwUDOcTN8OeR_mYqMBF3PbS7guRjmFEy2D8,1005
316
+ vellum/types/test_suite_run_metric_error_output_type_enum.py,sha256=ZPKy0jkcgfuMhI2hG_3UUcw2sYH1BlV_ze8Axlq5nIU,144
317
+ vellum/types/test_suite_run_metric_number_output.py,sha256=HMMNcFF877aSOpODwPzOGyvlKg3a9fqJzb8ykjgSK4Q,963
318
+ vellum/types/test_suite_run_metric_number_output_type_enum.py,sha256=sXoES0zoliicpd66SwlF6xsVUjWSezGNkuxp6CthO2s,146
319
+ vellum/types/test_suite_run_metric_output.py,sha256=QkHRKO1tnQWoeCq7xc7TfSiAjC927Ha2hdePBJeEn0A,1291
320
+ vellum/types/test_suite_run_metric_string_output.py,sha256=KYr0myTzw-5EP_j8YAlMZzljD4LOs5ElHjk1eVM_WQY,961
321
+ vellum/types/test_suite_run_metric_string_output_type_enum.py,sha256=6OKwFyk0SUq4IKp6yg_FAc3ADM0jVCK-chq5JR9iwqo,146
322
+ vellum/types/test_suite_run_read.py,sha256=VcKvmpt3vFJCxh5qFO5AGtfZrwUNeDnyqwNPae8nufk,1500
323
+ vellum/types/test_suite_run_state.py,sha256=E4f_AfzXBnxhObLLZ12dBzdoYlRm-gaTqkzrZQ_KfCo,197
324
+ vellum/types/test_suite_run_test_suite.py,sha256=ZaDr75LR6PrTIruwrSqR4cdCmjBD0VrUQYzIUBuNroY,896
325
+ vellum/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=G0flXm-xN-np9aHRkhxiimiow1yDs-4UXFUWT8GbiZc,1367
326
+ vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=zt9QSO3scrHXKAfCngd99-U4ainrZRChyKWbrrK7jQo,1241
327
+ vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=usIaDWBsS-zTQc4IIWec9-bAQKI_57LcKABZGV8cGlA,1248
328
+ vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=P0zRtzh7ekun8pcEH2EFTB6p4Kq54cE955Vff4q6-dE,1405
329
+ vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py,sha256=JMN3-aK8SWJzTli6c-j9xmHSYVwGND1PaZgGzwwkMjo,170
330
+ vellum/types/test_suite_test_case.py,sha256=Zi4uLAXIgZnecVdrG0BTKA4I8Ri_Qrt83OuClyQkzIc,1086
331
+ vellum/types/upload_document_error_response.py,sha256=2OujdWv40S6dfpPg1XOY7VurwOWeXs-RhRAKzqDEE6k,866
332
+ vellum/types/upload_document_response.py,sha256=VsKBPRKSTblu_M0GS2rJMd-9ZK4Gm4dhUtV0EQnuags,946
333
+ vellum/types/vellum_error.py,sha256=WjaUKAuuRVNOXC630oAM0A6n6pD6AXndbZVZ44WszQ4,937
334
+ vellum/types/vellum_error_code_enum.py,sha256=87F6QjCk6b6x-fcIsf0qGpKTZsn6zn984TL_LOFjVZU,233
335
+ vellum/types/vellum_error_request.py,sha256=xhNAtPkUFsAIzyLMGekTSTdZrAjPitBTChb55RHHVYU,944
336
+ vellum/types/vellum_image.py,sha256=1QCMf26kEKRKP9DTxNI0qp7CNC1viWGFV9hmIxFyxoY,914
337
+ vellum/types/vellum_image_request.py,sha256=ADerbxbSJHzNYouJa1jaBIGvbHR2nSmqYAxE-cgS2Rg,921
338
+ vellum/types/vellum_variable.py,sha256=MPxkKBtuxtg4HZud4xwsyT_sH6FG-YDGeFLpUa4NZDs,944
339
+ vellum/types/vellum_variable_type.py,sha256=uHeBCGi7U_SksgKOxtvI4KxYffD4BD2TlddTPo_LUSM,281
340
+ vellum/types/workflow_deployment_read.py,sha256=KsGJ4Ah4ybWbEsdnb0ixXHxCfwxRSQssBuQmlyZMpbc,2110
341
+ vellum/types/workflow_event_error.py,sha256=1f-xt3rNeCIpSm37KmAqVMc9IEbDD-3pNH4zwBYzXP0,981
342
+ vellum/types/workflow_execution_actual_chat_history_request.py,sha256=772wvb3NA_hO6fldsxGwv8fxFo_8AfZe-gxgFlkeJnQ,2038
343
+ vellum/types/workflow_execution_actual_json_request.py,sha256=Z5f4Btqp7Hp4JCtDKRAfatxjwpy916xduGXKeUTRPKw,1975
344
+ vellum/types/workflow_execution_actual_string_request.py,sha256=rdu8TeZw8ZWpbooIlo0n9hb03wT78kknXBhsNNLusAY,1952
345
+ vellum/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDHSdtwGgg0LWvM5yVQfnXYc4,425
346
+ vellum/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
347
+ vellum/types/workflow_execution_node_result_event.py,sha256=qIjztqor0UcBTxbq7w7Is98Mqu0IgggUKY24qOHal4s,1139
348
+ vellum/types/workflow_execution_workflow_result_event.py,sha256=PyMUdEwRMd8vjdimdcOXSvzPNd3PoacfDKuEmdrzpTU,1134
349
+ vellum/types/workflow_node_result_data.py,sha256=fMi04ZIPmnjnPyMTKAXeilxtFdLoZ3toWax9XPzCQ_o,2966
350
+ vellum/types/workflow_node_result_event.py,sha256=0tSTva8wAxMKSGWrbSRADqGcbR_A6FMSR7xkYLP9rZg,1745
351
+ vellum/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
352
+ vellum/types/workflow_output.py,sha256=iSz1VQAm0e4gJcJlB_HG6jI9P4gRx4nQhMzoTgzG4lM,3212
353
+ vellum/types/workflow_output_array.py,sha256=d52Grj5m6s2G08W4jq4x0S_iYTzuVSXi_Qkj-1KOh6k,1154
354
+ vellum/types/workflow_output_chat_history.py,sha256=w77iHmsJKjmwGcjLgVSlz_JubZ5_posHgCORg-0H2SI,1131
355
+ vellum/types/workflow_output_error.py,sha256=W3Slj5xldWOz_RE6swVoai-0JlEIffDbnYh81bPTTLA,1106
356
+ vellum/types/workflow_output_function_call.py,sha256=9Xa7ZSdEVtnPFLO7AXDpXyo1C7BVbW88IaT7BI5KB9o,1123
357
+ vellum/types/workflow_output_image.py,sha256=7ZXS2nmcPM_7L4fYHgHXz_DCIdhOymfJ3FyZSYQCOHk,1106
358
+ vellum/types/workflow_output_json.py,sha256=XhuFKHZ5JHm8NzvR2ykXO8siNP_jmJ-8F3nfEzTqlzY,1082
359
+ vellum/types/workflow_output_number.py,sha256=rgQjAUOeA8iSBDv4ftS3gTN70tdQq6DheTwk5nxOIRo,1063
360
+ vellum/types/workflow_output_search_results.py,sha256=qknZXGjUGF8SHU_IoSgNqrC2a7_Ohp6Mq4X9alnl7XA,1138
361
+ vellum/types/workflow_output_string.py,sha256=HyywOoEJFYubNLiJwGBpWxUtZgnbGgMsBxxs2RoPtA4,1061
362
+ vellum/types/workflow_request_chat_history_input_request.py,sha256=RE_TFOEcG_3dyZsclTc6OGbK_s-kIy-EMluL2CKA5i8,1137
363
+ vellum/types/workflow_request_input_request.py,sha256=UgAzjnJR5zJSPZhD_E9h3FaV738ebLNIhpI_SJBgQ0Q,1772
364
+ vellum/types/workflow_request_json_input_request.py,sha256=pQmLN51AlOVNSd1jJ_lxItChLoIUCn1Rgwa9MhfytQA,1066
365
+ vellum/types/workflow_request_number_input_request.py,sha256=NohfBVNkLaijXUPSm4hRFdgVPCkKznUe71QyCU-uBAs,1047
366
+ vellum/types/workflow_request_string_input_request.py,sha256=4A_v_rBFZ2TtZeYOgFQuHFROnT55VfF_yOqsoWCScrk,1045
367
+ vellum/types/workflow_result_event.py,sha256=W5VJ5CQdzL9AHI5AUrdCFsGsrWns0w5L7CL0Klkd7nU,1475
368
+ vellum/types/workflow_result_event_output_data.py,sha256=AGLgUDif9Hw1iRcn0j1boSju6vUEskSzRJIervPe_0c,3529
369
+ vellum/types/workflow_result_event_output_data_array.py,sha256=qh3kxmE2fArLwx18ZMDxc9GZt1RqaR3jGi2MpXe4qSc,1423
370
+ vellum/types/workflow_result_event_output_data_chat_history.py,sha256=fcf7oAIKey0mIweuqKT0RVRlnQ_Qi63dDCbbObrVl7A,1400
371
+ vellum/types/workflow_result_event_output_data_error.py,sha256=o3TGpLkiDrN76L2xLq-KDVsDCCvKlDkd3woEpgNffG4,1375
372
+ vellum/types/workflow_result_event_output_data_function_call.py,sha256=lPIyG5iGpCT9hA9TXs-2378oHazHH8xMYn-a-THfsVQ,1392
373
+ vellum/types/workflow_result_event_output_data_json.py,sha256=zohM9viDuiXQWVtOFulzs1_-eV8cM-iYbz8oxV3QxX4,1351
374
+ vellum/types/workflow_result_event_output_data_number.py,sha256=5Dk2kq98Ou0E8ipNn1blwV0_vpzCNJKMkb89uptNgEs,1332
375
+ vellum/types/workflow_result_event_output_data_search_results.py,sha256=gazaUrC5WRQkvCc7BGqGVkzUtJPTsEaIOgfUbnOod94,1407
376
+ vellum/types/workflow_result_event_output_data_string.py,sha256=aVWIIGbLj4TJJhTTj6WzhbYXQkcZatKuhhNy8UYwXbw,1482
377
+ vellum/types/workflow_stream_event.py,sha256=KA6Bkk_XA6AIPWR-1vKnwF1A8l_Bm5y0arQCWWWRpsk,911
378
+ vellum/version.py,sha256=neLt8HBHHUtDF9M5fsyUzHT-pKooEPvceaLDqqIGb0s,77
379
+ vellum_ai-0.5.0.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
380
+ vellum_ai-0.5.0.dist-info/METADATA,sha256=NMcjVbiC1qiFwXV12zgJEaDVbp_Ty7SK85_L1BGTc68,3549
381
+ vellum_ai-0.5.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
382
+ vellum_ai-0.5.0.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from ..core.api_error import ApiError
4
- from ..types.register_prompt_error_response import RegisterPromptErrorResponse
5
-
6
-
7
- class ConflictError(ApiError):
8
- def __init__(self, body: RegisterPromptErrorResponse):
9
- super().__init__(status_code=409, body=body)
@@ -1,2 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
@@ -1,123 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
- import urllib.parse
5
- from json.decoder import JSONDecodeError
6
-
7
- from ...core.api_error import ApiError
8
- from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
9
- from ...core.jsonable_encoder import jsonable_encoder
10
- from ...core.remove_none_from_dict import remove_none_from_dict
11
- from ...core.request_options import RequestOptions
12
- from ...types.model_version_read import ModelVersionRead
13
-
14
- try:
15
- import pydantic.v1 as pydantic # type: ignore
16
- except ImportError:
17
- import pydantic # type: ignore
18
-
19
-
20
- class ModelVersionsClient:
21
- def __init__(self, *, client_wrapper: SyncClientWrapper):
22
- self._client_wrapper = client_wrapper
23
-
24
- def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> ModelVersionRead:
25
- """
26
- Deprecated. Use the `deployments/provider-payload` endpoint to fetch information that we send to Model providers.
27
-
28
- Parameters:
29
- - id: str. A UUID string identifying this model version.
30
-
31
- - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
32
- ---
33
- from vellum.client import Vellum
34
-
35
- client = Vellum(
36
- api_key="YOUR_API_KEY",
37
- )
38
- client.model_versions.retrieve(
39
- id="id",
40
- )
41
- """
42
- _response = self._client_wrapper.httpx_client.request(
43
- "GET",
44
- urllib.parse.urljoin(
45
- f"{self._client_wrapper.get_environment().default}/", f"v1/model-versions/{jsonable_encoder(id)}"
46
- ),
47
- params=jsonable_encoder(
48
- request_options.get("additional_query_parameters") if request_options is not None else None
49
- ),
50
- headers=jsonable_encoder(
51
- remove_none_from_dict(
52
- {
53
- **self._client_wrapper.get_headers(),
54
- **(request_options.get("additional_headers", {}) if request_options is not None else {}),
55
- }
56
- )
57
- ),
58
- timeout=request_options.get("timeout_in_seconds")
59
- if request_options is not None and request_options.get("timeout_in_seconds") is not None
60
- else self._client_wrapper.get_timeout(),
61
- retries=0,
62
- max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
63
- )
64
- if 200 <= _response.status_code < 300:
65
- return pydantic.parse_obj_as(ModelVersionRead, _response.json()) # type: ignore
66
- try:
67
- _response_json = _response.json()
68
- except JSONDecodeError:
69
- raise ApiError(status_code=_response.status_code, body=_response.text)
70
- raise ApiError(status_code=_response.status_code, body=_response_json)
71
-
72
-
73
- class AsyncModelVersionsClient:
74
- def __init__(self, *, client_wrapper: AsyncClientWrapper):
75
- self._client_wrapper = client_wrapper
76
-
77
- async def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> ModelVersionRead:
78
- """
79
- Deprecated. Use the `deployments/provider-payload` endpoint to fetch information that we send to Model providers.
80
-
81
- Parameters:
82
- - id: str. A UUID string identifying this model version.
83
-
84
- - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
85
- ---
86
- from vellum.client import AsyncVellum
87
-
88
- client = AsyncVellum(
89
- api_key="YOUR_API_KEY",
90
- )
91
- await client.model_versions.retrieve(
92
- id="id",
93
- )
94
- """
95
- _response = await self._client_wrapper.httpx_client.request(
96
- "GET",
97
- urllib.parse.urljoin(
98
- f"{self._client_wrapper.get_environment().default}/", f"v1/model-versions/{jsonable_encoder(id)}"
99
- ),
100
- params=jsonable_encoder(
101
- request_options.get("additional_query_parameters") if request_options is not None else None
102
- ),
103
- headers=jsonable_encoder(
104
- remove_none_from_dict(
105
- {
106
- **self._client_wrapper.get_headers(),
107
- **(request_options.get("additional_headers", {}) if request_options is not None else {}),
108
- }
109
- )
110
- ),
111
- timeout=request_options.get("timeout_in_seconds")
112
- if request_options is not None and request_options.get("timeout_in_seconds") is not None
113
- else self._client_wrapper.get_timeout(),
114
- retries=0,
115
- max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
116
- )
117
- if 200 <= _response.status_code < 300:
118
- return pydantic.parse_obj_as(ModelVersionRead, _response.json()) # type: ignore
119
- try:
120
- _response_json = _response.json()
121
- except JSONDecodeError:
122
- raise ApiError(status_code=_response.status_code, body=_response.text)
123
- raise ApiError(status_code=_response.status_code, body=_response_json)
@@ -1,2 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-