vellum-ai 0.3.6__tar.gz → 0.3.8__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (304) hide show
  1. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/PKG-INFO +1 -1
  2. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/pyproject.toml +1 -1
  3. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/__init__.py +40 -0
  4. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/client.py +11 -8
  5. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/core/client_wrapper.py +1 -1
  6. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/__init__.py +2 -0
  7. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/deployments/client.py +2 -2
  8. vellum_ai-0.3.8/src/vellum/resources/folder_entities/client.py +98 -0
  9. vellum_ai-0.3.8/src/vellum/resources/test_suites/__init__.py +2 -0
  10. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/workflow_deployments/client.py +65 -8
  11. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/__init__.py +40 -0
  12. vellum_ai-0.3.8/src/vellum/types/array_enum.py +5 -0
  13. vellum_ai-0.3.8/src/vellum/types/array_variable_value_item.py +89 -0
  14. vellum_ai-0.3.8/src/vellum/types/chat_history_variable_value.py +29 -0
  15. vellum_ai-0.3.8/src/vellum/types/node_input_compiled_array_value.py +31 -0
  16. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_variable_compiled_value.py +11 -0
  17. vellum_ai-0.3.8/src/vellum/types/node_output_compiled_array_value.py +30 -0
  18. vellum_ai-0.3.8/src/vellum/types/node_output_compiled_function_value.py +30 -0
  19. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_value.py +22 -0
  20. vellum_ai-0.3.8/src/vellum/types/number_variable_value.py +28 -0
  21. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_node_result_data.py +1 -0
  22. vellum_ai-0.3.8/src/vellum/types/search_results_variable_value.py +29 -0
  23. vellum_ai-0.3.8/src/vellum/types/workflow_deployment_read.py +57 -0
  24. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_request_chat_history_input_request.py +4 -0
  25. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_request_json_input_request.py +4 -0
  26. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_request_number_input_request.py +4 -0
  27. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_request_string_input_request.py +4 -0
  28. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/LICENSE +0 -0
  29. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/README.md +0 -0
  30. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/core/__init__.py +0 -0
  31. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/core/api_error.py +0 -0
  32. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/core/datetime_utils.py +0 -0
  33. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/core/jsonable_encoder.py +0 -0
  34. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/core/remove_none_from_dict.py +0 -0
  35. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/environment.py +0 -0
  36. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/errors/__init__.py +0 -0
  37. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/errors/bad_request_error.py +0 -0
  38. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/errors/conflict_error.py +0 -0
  39. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/errors/forbidden_error.py +0 -0
  40. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/errors/internal_server_error.py +0 -0
  41. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/errors/not_found_error.py +0 -0
  42. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/py.typed +0 -0
  43. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/deployments/__init__.py +0 -0
  44. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/deployments/types/__init__.py +0 -0
  45. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/deployments/types/deployments_list_request_status.py +0 -0
  46. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/document_indexes/__init__.py +0 -0
  47. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/document_indexes/client.py +0 -0
  48. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/documents/__init__.py +0 -0
  49. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/documents/client.py +0 -0
  50. {vellum_ai-0.3.6/src/vellum/resources/model_versions → vellum_ai-0.3.8/src/vellum/resources/folder_entities}/__init__.py +0 -0
  51. {vellum_ai-0.3.6/src/vellum/resources/registered_prompts → vellum_ai-0.3.8/src/vellum/resources/model_versions}/__init__.py +0 -0
  52. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/model_versions/client.py +0 -0
  53. {vellum_ai-0.3.6/src/vellum/resources/sandboxes → vellum_ai-0.3.8/src/vellum/resources/registered_prompts}/__init__.py +0 -0
  54. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/registered_prompts/client.py +0 -0
  55. {vellum_ai-0.3.6/src/vellum/resources/test_suites → vellum_ai-0.3.8/src/vellum/resources/sandboxes}/__init__.py +0 -0
  56. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/sandboxes/client.py +0 -0
  57. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/test_suites/client.py +0 -0
  58. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/workflow_deployments/__init__.py +0 -0
  59. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/workflow_deployments/types/__init__.py +0 -0
  60. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py +0 -0
  61. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/api_node_result.py +0 -0
  62. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/api_node_result_data.py +0 -0
  63. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/array_chat_message_content.py +0 -0
  64. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/array_chat_message_content_item.py +0 -0
  65. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/array_chat_message_content_item_request.py +0 -0
  66. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/array_chat_message_content_request.py +0 -0
  67. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/block_type_enum.py +0 -0
  68. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_history_enum.py +0 -0
  69. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_history_input_request.py +0 -0
  70. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_message.py +0 -0
  71. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_message_content.py +0 -0
  72. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_message_content_request.py +0 -0
  73. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_message_request.py +0 -0
  74. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/chat_message_role.py +0 -0
  75. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_chat_history_result.py +0 -0
  76. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_error_result.py +0 -0
  77. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_json_result.py +0 -0
  78. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_number_result.py +0 -0
  79. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_result.py +0 -0
  80. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_result_data.py +0 -0
  81. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_result_output.py +0 -0
  82. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_search_results_result.py +0 -0
  83. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/code_execution_node_string_result.py +0 -0
  84. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/conditional_node_result.py +0 -0
  85. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/conditional_node_result_data.py +0 -0
  86. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/deployment_provider_payload_response.py +0 -0
  87. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/deployment_read.py +0 -0
  88. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/document_document_to_document_index.py +0 -0
  89. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/document_index_read.py +0 -0
  90. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/document_read.py +0 -0
  91. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/document_status.py +0 -0
  92. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/enriched_normalized_completion.py +0 -0
  93. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/entity_status.py +0 -0
  94. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/environment_enum.py +0 -0
  95. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/error_enum.py +0 -0
  96. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/error_variable_value.py +0 -0
  97. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_prompt_api_error_response.py +0 -0
  98. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_prompt_event.py +0 -0
  99. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_prompt_response.py +0 -0
  100. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_workflow_error_response.py +0 -0
  101. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_workflow_response.py +0 -0
  102. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_workflow_stream_error_response.py +0 -0
  103. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/execute_workflow_workflow_result_event.py +0 -0
  104. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/finish_reason_enum.py +0 -0
  105. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_enum.py +0 -0
  106. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_execute_prompt_event.py +0 -0
  107. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_execute_prompt_response.py +0 -0
  108. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_execute_workflow_workflow_result_event.py +0 -0
  109. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_function_call.py +0 -0
  110. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_prompt_execution_meta.py +0 -0
  111. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/fulfilled_workflow_node_result_event.py +0 -0
  112. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call.py +0 -0
  113. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call_chat_message_content.py +0 -0
  114. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call_chat_message_content_request.py +0 -0
  115. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call_chat_message_content_value.py +0 -0
  116. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call_chat_message_content_value_request.py +0 -0
  117. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call_enum.py +0 -0
  118. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/function_call_variable_value.py +0 -0
  119. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_error_response.py +0 -0
  120. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_options_request.py +0 -0
  121. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_request.py +0 -0
  122. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_response.py +0 -0
  123. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_result.py +0 -0
  124. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_result_data.py +0 -0
  125. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_result_error.py +0 -0
  126. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_stream_response.py +0 -0
  127. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_stream_result.py +0 -0
  128. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/generate_stream_result_data.py +0 -0
  129. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/image_chat_message_content.py +0 -0
  130. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/image_chat_message_content_request.py +0 -0
  131. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/image_enum.py +0 -0
  132. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/indexing_state_enum.py +0 -0
  133. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/initiated_enum.py +0 -0
  134. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/initiated_execute_prompt_event.py +0 -0
  135. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/initiated_prompt_execution_meta.py +0 -0
  136. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/initiated_workflow_node_result_event.py +0 -0
  137. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/json_enum.py +0 -0
  138. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/json_input_request.py +0 -0
  139. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/json_variable_value.py +0 -0
  140. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/logical_operator.py +0 -0
  141. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/logprobs_enum.py +0 -0
  142. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/metadata_filter_config_request.py +0 -0
  143. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/metadata_filter_rule_combinator.py +0 -0
  144. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/metadata_filter_rule_request.py +0 -0
  145. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/model_version_build_config.py +0 -0
  146. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/model_version_exec_config.py +0 -0
  147. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/model_version_exec_config_parameters.py +0 -0
  148. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/model_version_read.py +0 -0
  149. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/model_version_read_status_enum.py +0 -0
  150. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/model_version_sandbox_snapshot.py +0 -0
  151. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_chat_history_variable_value_request.py +0 -0
  152. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_error_variable_value_request.py +0 -0
  153. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_json_variable_value_request.py +0 -0
  154. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_number_variable_value_request.py +0 -0
  155. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_search_results_variable_value_request.py +0 -0
  156. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_string_variable_value_request.py +0 -0
  157. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/named_test_case_variable_value_request.py +0 -0
  158. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_compiled_chat_history_value.py +0 -0
  159. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_compiled_error_value.py +0 -0
  160. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_compiled_json_value.py +0 -0
  161. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_compiled_number_value.py +0 -0
  162. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_compiled_search_results_value.py +0 -0
  163. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_input_compiled_string_value.py +0 -0
  164. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_chat_history_value.py +0 -0
  165. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_error_value.py +0 -0
  166. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_json_value.py +0 -0
  167. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_number_value.py +0 -0
  168. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_search_results_value.py +0 -0
  169. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/node_output_compiled_string_value.py +0 -0
  170. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/normalized_log_probs.py +0 -0
  171. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/normalized_token_log_probs.py +0 -0
  172. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/number_enum.py +0 -0
  173. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/paginated_slim_deployment_read_list.py +0 -0
  174. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/paginated_slim_document_list.py +0 -0
  175. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/paginated_slim_workflow_deployment_list.py +0 -0
  176. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/processing_failure_reason_enum.py +0 -0
  177. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/processing_state_enum.py +0 -0
  178. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_deployment_expand_meta_request_request.py +0 -0
  179. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_deployment_input_request.py +0 -0
  180. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_execution_meta.py +0 -0
  181. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_node_result.py +0 -0
  182. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_output.py +0 -0
  183. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_template_block.py +0 -0
  184. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_template_block_data.py +0 -0
  185. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_template_block_data_request.py +0 -0
  186. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_template_block_properties.py +0 -0
  187. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_template_block_properties_request.py +0 -0
  188. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/prompt_template_block_request.py +0 -0
  189. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/provider_enum.py +0 -0
  190. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/raw_prompt_execution_overrides_request.py +0 -0
  191. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/register_prompt_error_response.py +0 -0
  192. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/register_prompt_model_parameters_request.py +0 -0
  193. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/register_prompt_prompt.py +0 -0
  194. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/register_prompt_prompt_info_request.py +0 -0
  195. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/register_prompt_response.py +0 -0
  196. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/registered_prompt_deployment.py +0 -0
  197. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/registered_prompt_input_variable_request.py +0 -0
  198. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/registered_prompt_model_version.py +0 -0
  199. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/registered_prompt_sandbox.py +0 -0
  200. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/registered_prompt_sandbox_snapshot.py +0 -0
  201. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_enum.py +0 -0
  202. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_execute_prompt_event.py +0 -0
  203. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_execute_prompt_response.py +0 -0
  204. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_execute_workflow_workflow_result_event.py +0 -0
  205. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_function_call.py +0 -0
  206. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_prompt_execution_meta.py +0 -0
  207. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/rejected_workflow_node_result_event.py +0 -0
  208. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/sandbox_scenario.py +0 -0
  209. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/scenario_input.py +0 -0
  210. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/scenario_input_request.py +0 -0
  211. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/scenario_input_type_enum.py +0 -0
  212. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_error_response.py +0 -0
  213. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_filters_request.py +0 -0
  214. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_node_result.py +0 -0
  215. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_node_result_data.py +0 -0
  216. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_request_options_request.py +0 -0
  217. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_response.py +0 -0
  218. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_result.py +0 -0
  219. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_result_document.py +0 -0
  220. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_result_document_request.py +0 -0
  221. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_result_merging_request.py +0 -0
  222. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_result_request.py +0 -0
  223. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_results_enum.py +0 -0
  224. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/search_weights_request.py +0 -0
  225. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/slim_deployment_read.py +0 -0
  226. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/slim_document.py +0 -0
  227. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/slim_workflow_deployment.py +0 -0
  228. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/streaming_enum.py +0 -0
  229. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/streaming_execute_prompt_event.py +0 -0
  230. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/streaming_prompt_execution_meta.py +0 -0
  231. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/streaming_workflow_node_result_event.py +0 -0
  232. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/string_chat_message_content.py +0 -0
  233. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/string_chat_message_content_request.py +0 -0
  234. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/string_enum.py +0 -0
  235. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/string_input_request.py +0 -0
  236. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/string_variable_value.py +0 -0
  237. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/submit_completion_actual_request.py +0 -0
  238. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/submit_completion_actuals_error_response.py +0 -0
  239. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/submit_workflow_execution_actual_request.py +0 -0
  240. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_chat_history_result.py +0 -0
  241. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_error_result.py +0 -0
  242. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_json_result.py +0 -0
  243. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_number_result.py +0 -0
  244. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_result.py +0 -0
  245. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_result_data.py +0 -0
  246. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_result_output.py +0 -0
  247. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_search_results_result.py +0 -0
  248. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/templating_node_string_result.py +0 -0
  249. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_chat_history_result.py +0 -0
  250. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_error_result.py +0 -0
  251. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_json_result.py +0 -0
  252. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_number_result.py +0 -0
  253. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_result.py +0 -0
  254. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_result_data.py +0 -0
  255. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_result_output.py +0 -0
  256. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_search_results_result.py +0 -0
  257. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/terminal_node_string_result.py +0 -0
  258. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_chat_history_variable_value.py +0 -0
  259. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_error_variable_value.py +0 -0
  260. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_json_variable_value.py +0 -0
  261. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_number_variable_value.py +0 -0
  262. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_search_results_variable_value.py +0 -0
  263. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_string_variable_value.py +0 -0
  264. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_case_variable_value.py +0 -0
  265. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/test_suite_test_case.py +0 -0
  266. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/upload_document_error_response.py +0 -0
  267. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/upload_document_response.py +0 -0
  268. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_error.py +0 -0
  269. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_error_code_enum.py +0 -0
  270. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_error_request.py +0 -0
  271. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_image.py +0 -0
  272. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_image_request.py +0 -0
  273. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_variable.py +0 -0
  274. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/vellum_variable_type.py +0 -0
  275. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_event_error.py +0 -0
  276. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_actual_chat_history_request.py +0 -0
  277. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_actual_json_request.py +0 -0
  278. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_actual_string_request.py +0 -0
  279. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_event_error_code.py +0 -0
  280. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_event_type.py +0 -0
  281. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_node_result_event.py +0 -0
  282. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_execution_workflow_result_event.py +0 -0
  283. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_node_result_data.py +0 -0
  284. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_node_result_event.py +0 -0
  285. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_node_result_event_state.py +0 -0
  286. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output.py +0 -0
  287. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_chat_history.py +0 -0
  288. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_error.py +0 -0
  289. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_function_call.py +0 -0
  290. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_image.py +0 -0
  291. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_json.py +0 -0
  292. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_number.py +0 -0
  293. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_search_results.py +0 -0
  294. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_output_string.py +0 -0
  295. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_request_input_request.py +0 -0
  296. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event.py +0 -0
  297. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data.py +0 -0
  298. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data_chat_history.py +0 -0
  299. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data_error.py +0 -0
  300. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data_json.py +0 -0
  301. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data_number.py +0 -0
  302. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data_search_results.py +0 -0
  303. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_result_event_output_data_string.py +0 -0
  304. {vellum_ai-0.3.6 → vellum_ai-0.3.8}/src/vellum/types/workflow_stream_event.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.3.6
3
+ Version: 0.3.8
4
4
  Summary:
5
5
  Requires-Python: >=3.7,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "vellum-ai"
3
- version = "0.3.6"
3
+ version = "0.3.8"
4
4
  description = ""
5
5
  readme = "README.md"
6
6
  authors = []
@@ -13,9 +13,19 @@ from .types import (
13
13
  ArrayChatMessageContentItem_Image,
14
14
  ArrayChatMessageContentItem_String,
15
15
  ArrayChatMessageContentRequest,
16
+ ArrayEnum,
17
+ ArrayVariableValueItem,
18
+ ArrayVariableValueItem_ChatHistory,
19
+ ArrayVariableValueItem_Error,
20
+ ArrayVariableValueItem_FunctionCall,
21
+ ArrayVariableValueItem_Json,
22
+ ArrayVariableValueItem_Number,
23
+ ArrayVariableValueItem_SearchResults,
24
+ ArrayVariableValueItem_String,
16
25
  BlockTypeEnum,
17
26
  ChatHistoryEnum,
18
27
  ChatHistoryInputRequest,
28
+ ChatHistoryVariableValue,
19
29
  ChatMessage,
20
30
  ChatMessageContent,
21
31
  ChatMessageContentRequest,
@@ -134,6 +144,7 @@ from .types import (
134
144
  NamedTestCaseVariableValueRequest_Number,
135
145
  NamedTestCaseVariableValueRequest_SearchResults,
136
146
  NamedTestCaseVariableValueRequest_String,
147
+ NodeInputCompiledArrayValue,
137
148
  NodeInputCompiledChatHistoryValue,
138
149
  NodeInputCompiledErrorValue,
139
150
  NodeInputCompiledJsonValue,
@@ -141,21 +152,26 @@ from .types import (
141
152
  NodeInputCompiledSearchResultsValue,
142
153
  NodeInputCompiledStringValue,
143
154
  NodeInputVariableCompiledValue,
155
+ NodeInputVariableCompiledValue_Array,
144
156
  NodeInputVariableCompiledValue_ChatHistory,
145
157
  NodeInputVariableCompiledValue_Error,
146
158
  NodeInputVariableCompiledValue_Json,
147
159
  NodeInputVariableCompiledValue_Number,
148
160
  NodeInputVariableCompiledValue_SearchResults,
149
161
  NodeInputVariableCompiledValue_String,
162
+ NodeOutputCompiledArrayValue,
150
163
  NodeOutputCompiledChatHistoryValue,
151
164
  NodeOutputCompiledErrorValue,
165
+ NodeOutputCompiledFunctionValue,
152
166
  NodeOutputCompiledJsonValue,
153
167
  NodeOutputCompiledNumberValue,
154
168
  NodeOutputCompiledSearchResultsValue,
155
169
  NodeOutputCompiledStringValue,
156
170
  NodeOutputCompiledValue,
171
+ NodeOutputCompiledValue_Array,
157
172
  NodeOutputCompiledValue_ChatHistory,
158
173
  NodeOutputCompiledValue_Error,
174
+ NodeOutputCompiledValue_FunctionCall,
159
175
  NodeOutputCompiledValue_Json,
160
176
  NodeOutputCompiledValue_Number,
161
177
  NodeOutputCompiledValue_SearchResults,
@@ -163,6 +179,7 @@ from .types import (
163
179
  NormalizedLogProbs,
164
180
  NormalizedTokenLogProbs,
165
181
  NumberEnum,
182
+ NumberVariableValue,
166
183
  PaginatedSlimDeploymentReadList,
167
184
  PaginatedSlimDocumentList,
168
185
  PaginatedSlimWorkflowDeploymentList,
@@ -222,6 +239,7 @@ from .types import (
222
239
  SearchResultMergingRequest,
223
240
  SearchResultRequest,
224
241
  SearchResultsEnum,
242
+ SearchResultsVariableValue,
225
243
  SearchWeightsRequest,
226
244
  SlimDeploymentRead,
227
245
  SlimDocument,
@@ -294,6 +312,7 @@ from .types import (
294
312
  VellumImageRequest,
295
313
  VellumVariable,
296
314
  VellumVariableType,
315
+ WorkflowDeploymentRead,
297
316
  WorkflowEventError,
298
317
  WorkflowExecutionActualChatHistoryRequest,
299
318
  WorkflowExecutionActualJsonRequest,
@@ -367,6 +386,7 @@ from .resources import (
367
386
  deployments,
368
387
  document_indexes,
369
388
  documents,
389
+ folder_entities,
370
390
  model_versions,
371
391
  registered_prompts,
372
392
  sandboxes,
@@ -388,10 +408,20 @@ __all__ = [
388
408
  "ArrayChatMessageContentItem_Image",
389
409
  "ArrayChatMessageContentItem_String",
390
410
  "ArrayChatMessageContentRequest",
411
+ "ArrayEnum",
412
+ "ArrayVariableValueItem",
413
+ "ArrayVariableValueItem_ChatHistory",
414
+ "ArrayVariableValueItem_Error",
415
+ "ArrayVariableValueItem_FunctionCall",
416
+ "ArrayVariableValueItem_Json",
417
+ "ArrayVariableValueItem_Number",
418
+ "ArrayVariableValueItem_SearchResults",
419
+ "ArrayVariableValueItem_String",
391
420
  "BadRequestError",
392
421
  "BlockTypeEnum",
393
422
  "ChatHistoryEnum",
394
423
  "ChatHistoryInputRequest",
424
+ "ChatHistoryVariableValue",
395
425
  "ChatMessage",
396
426
  "ChatMessageContent",
397
427
  "ChatMessageContentRequest",
@@ -514,6 +544,7 @@ __all__ = [
514
544
  "NamedTestCaseVariableValueRequest_Number",
515
545
  "NamedTestCaseVariableValueRequest_SearchResults",
516
546
  "NamedTestCaseVariableValueRequest_String",
547
+ "NodeInputCompiledArrayValue",
517
548
  "NodeInputCompiledChatHistoryValue",
518
549
  "NodeInputCompiledErrorValue",
519
550
  "NodeInputCompiledJsonValue",
@@ -521,21 +552,26 @@ __all__ = [
521
552
  "NodeInputCompiledSearchResultsValue",
522
553
  "NodeInputCompiledStringValue",
523
554
  "NodeInputVariableCompiledValue",
555
+ "NodeInputVariableCompiledValue_Array",
524
556
  "NodeInputVariableCompiledValue_ChatHistory",
525
557
  "NodeInputVariableCompiledValue_Error",
526
558
  "NodeInputVariableCompiledValue_Json",
527
559
  "NodeInputVariableCompiledValue_Number",
528
560
  "NodeInputVariableCompiledValue_SearchResults",
529
561
  "NodeInputVariableCompiledValue_String",
562
+ "NodeOutputCompiledArrayValue",
530
563
  "NodeOutputCompiledChatHistoryValue",
531
564
  "NodeOutputCompiledErrorValue",
565
+ "NodeOutputCompiledFunctionValue",
532
566
  "NodeOutputCompiledJsonValue",
533
567
  "NodeOutputCompiledNumberValue",
534
568
  "NodeOutputCompiledSearchResultsValue",
535
569
  "NodeOutputCompiledStringValue",
536
570
  "NodeOutputCompiledValue",
571
+ "NodeOutputCompiledValue_Array",
537
572
  "NodeOutputCompiledValue_ChatHistory",
538
573
  "NodeOutputCompiledValue_Error",
574
+ "NodeOutputCompiledValue_FunctionCall",
539
575
  "NodeOutputCompiledValue_Json",
540
576
  "NodeOutputCompiledValue_Number",
541
577
  "NodeOutputCompiledValue_SearchResults",
@@ -544,6 +580,7 @@ __all__ = [
544
580
  "NormalizedTokenLogProbs",
545
581
  "NotFoundError",
546
582
  "NumberEnum",
583
+ "NumberVariableValue",
547
584
  "PaginatedSlimDeploymentReadList",
548
585
  "PaginatedSlimDocumentList",
549
586
  "PaginatedSlimWorkflowDeploymentList",
@@ -603,6 +640,7 @@ __all__ = [
603
640
  "SearchResultMergingRequest",
604
641
  "SearchResultRequest",
605
642
  "SearchResultsEnum",
643
+ "SearchResultsVariableValue",
606
644
  "SearchWeightsRequest",
607
645
  "SlimDeploymentRead",
608
646
  "SlimDocument",
@@ -676,6 +714,7 @@ __all__ = [
676
714
  "VellumImageRequest",
677
715
  "VellumVariable",
678
716
  "VellumVariableType",
717
+ "WorkflowDeploymentRead",
679
718
  "WorkflowDeploymentsListRequestStatus",
680
719
  "WorkflowEventError",
681
720
  "WorkflowExecutionActualChatHistoryRequest",
@@ -745,6 +784,7 @@ __all__ = [
745
784
  "deployments",
746
785
  "document_indexes",
747
786
  "documents",
787
+ "folder_entities",
748
788
  "model_versions",
749
789
  "registered_prompts",
750
790
  "sandboxes",
@@ -18,6 +18,7 @@ from .errors.not_found_error import NotFoundError
18
18
  from .resources.deployments.client import AsyncDeploymentsClient, DeploymentsClient
19
19
  from .resources.document_indexes.client import AsyncDocumentIndexesClient, DocumentIndexesClient
20
20
  from .resources.documents.client import AsyncDocumentsClient, DocumentsClient
21
+ from .resources.folder_entities.client import AsyncFolderEntitiesClient, FolderEntitiesClient
21
22
  from .resources.model_versions.client import AsyncModelVersionsClient, ModelVersionsClient
22
23
  from .resources.registered_prompts.client import AsyncRegisteredPromptsClient, RegisteredPromptsClient
23
24
  from .resources.sandboxes.client import AsyncSandboxesClient, SandboxesClient
@@ -67,6 +68,7 @@ class Vellum:
67
68
  self.deployments = DeploymentsClient(client_wrapper=self._client_wrapper)
68
69
  self.document_indexes = DocumentIndexesClient(client_wrapper=self._client_wrapper)
69
70
  self.documents = DocumentsClient(client_wrapper=self._client_wrapper)
71
+ self.folder_entities = FolderEntitiesClient(client_wrapper=self._client_wrapper)
70
72
  self.model_versions = ModelVersionsClient(client_wrapper=self._client_wrapper)
71
73
  self.registered_prompts = RegisteredPromptsClient(client_wrapper=self._client_wrapper)
72
74
  self.sandboxes = SandboxesClient(client_wrapper=self._client_wrapper)
@@ -98,7 +100,7 @@ class Vellum:
98
100
 
99
101
  - release_tag: typing.Optional[str]. Optionally specify a release tag if you want to pin to a specific release of the Prompt Deployment
100
102
 
101
- - external_id: typing.Optional[str].
103
+ - external_id: typing.Optional[str]. "Optionally include a unique identifier for tracking purposes. Must be unique for a given prompt deployment.
102
104
 
103
105
  - expand_meta: typing.Optional[PromptDeploymentExpandMetaRequestRequest]. The name of the Prompt Deployment. Must provide either this or prompt_deployment_id.
104
106
 
@@ -173,7 +175,7 @@ class Vellum:
173
175
 
174
176
  - release_tag: typing.Optional[str]. Optionally specify a release tag if you want to pin to a specific release of the Prompt Deployment
175
177
 
176
- - external_id: typing.Optional[str].
178
+ - external_id: typing.Optional[str]. "Optionally include a unique identifier for tracking purposes. Must be unique for a given prompt deployment.
177
179
 
178
180
  - expand_meta: typing.Optional[PromptDeploymentExpandMetaRequestRequest]. The name of the Prompt Deployment. Must provide either this or prompt_deployment_id.
179
181
 
@@ -249,7 +251,7 @@ class Vellum:
249
251
 
250
252
  - inputs: typing.List[WorkflowRequestInputRequest]. The list of inputs defined in the Workflow's Deployment with their corresponding values.
251
253
 
252
- - external_id: typing.Optional[str]. Optionally include a unique identifier for monitoring purposes.
254
+ - external_id: typing.Optional[str]. Optionally include a unique identifier for monitoring purposes. Must be unique for a given workflow deployment.
253
255
  """
254
256
  _request: typing.Dict[str, typing.Any] = {"inputs": inputs}
255
257
  if workflow_deployment_id is not OMIT:
@@ -303,7 +305,7 @@ class Vellum:
303
305
 
304
306
  - inputs: typing.List[WorkflowRequestInputRequest]. The list of inputs defined in the Workflow's deployment with their corresponding values.
305
307
 
306
- - external_id: typing.Optional[str]. Optionally include a unique identifier for tracking purposes.
308
+ - external_id: typing.Optional[str]. Optionally include a unique identifier for tracking purposes. Must be unique for a given workflow deployment.
307
309
 
308
310
  - event_types: typing.Optional[typing.List[WorkflowExecutionEventType]]. Optionally specify which events you want to receive. Defaults to only WORKFLOW events. Note that the schema of non-WORKFLOW events is unstable and should be used with caution.
309
311
  """
@@ -649,6 +651,7 @@ class AsyncVellum:
649
651
  self.deployments = AsyncDeploymentsClient(client_wrapper=self._client_wrapper)
650
652
  self.document_indexes = AsyncDocumentIndexesClient(client_wrapper=self._client_wrapper)
651
653
  self.documents = AsyncDocumentsClient(client_wrapper=self._client_wrapper)
654
+ self.folder_entities = AsyncFolderEntitiesClient(client_wrapper=self._client_wrapper)
652
655
  self.model_versions = AsyncModelVersionsClient(client_wrapper=self._client_wrapper)
653
656
  self.registered_prompts = AsyncRegisteredPromptsClient(client_wrapper=self._client_wrapper)
654
657
  self.sandboxes = AsyncSandboxesClient(client_wrapper=self._client_wrapper)
@@ -680,7 +683,7 @@ class AsyncVellum:
680
683
 
681
684
  - release_tag: typing.Optional[str]. Optionally specify a release tag if you want to pin to a specific release of the Prompt Deployment
682
685
 
683
- - external_id: typing.Optional[str].
686
+ - external_id: typing.Optional[str]. "Optionally include a unique identifier for tracking purposes. Must be unique for a given prompt deployment.
684
687
 
685
688
  - expand_meta: typing.Optional[PromptDeploymentExpandMetaRequestRequest]. The name of the Prompt Deployment. Must provide either this or prompt_deployment_id.
686
689
 
@@ -755,7 +758,7 @@ class AsyncVellum:
755
758
 
756
759
  - release_tag: typing.Optional[str]. Optionally specify a release tag if you want to pin to a specific release of the Prompt Deployment
757
760
 
758
- - external_id: typing.Optional[str].
761
+ - external_id: typing.Optional[str]. "Optionally include a unique identifier for tracking purposes. Must be unique for a given prompt deployment.
759
762
 
760
763
  - expand_meta: typing.Optional[PromptDeploymentExpandMetaRequestRequest]. The name of the Prompt Deployment. Must provide either this or prompt_deployment_id.
761
764
 
@@ -831,7 +834,7 @@ class AsyncVellum:
831
834
 
832
835
  - inputs: typing.List[WorkflowRequestInputRequest]. The list of inputs defined in the Workflow's Deployment with their corresponding values.
833
836
 
834
- - external_id: typing.Optional[str]. Optionally include a unique identifier for monitoring purposes.
837
+ - external_id: typing.Optional[str]. Optionally include a unique identifier for monitoring purposes. Must be unique for a given workflow deployment.
835
838
  """
836
839
  _request: typing.Dict[str, typing.Any] = {"inputs": inputs}
837
840
  if workflow_deployment_id is not OMIT:
@@ -885,7 +888,7 @@ class AsyncVellum:
885
888
 
886
889
  - inputs: typing.List[WorkflowRequestInputRequest]. The list of inputs defined in the Workflow's deployment with their corresponding values.
887
890
 
888
- - external_id: typing.Optional[str]. Optionally include a unique identifier for tracking purposes.
891
+ - external_id: typing.Optional[str]. Optionally include a unique identifier for tracking purposes. Must be unique for a given workflow deployment.
889
892
 
890
893
  - event_types: typing.Optional[typing.List[WorkflowExecutionEventType]]. Optionally specify which events you want to receive. Defaults to only WORKFLOW events. Note that the schema of non-WORKFLOW events is unstable and should be used with caution.
891
894
  """
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "vellum-ai",
19
- "X-Fern-SDK-Version": "0.3.6",
19
+ "X-Fern-SDK-Version": "0.3.8",
20
20
  }
21
21
  headers["X_API_KEY"] = self.api_key
22
22
  return headers
@@ -4,6 +4,7 @@ from . import (
4
4
  deployments,
5
5
  document_indexes,
6
6
  documents,
7
+ folder_entities,
7
8
  model_versions,
8
9
  registered_prompts,
9
10
  sandboxes,
@@ -19,6 +20,7 @@ __all__ = [
19
20
  "deployments",
20
21
  "document_indexes",
21
22
  "documents",
23
+ "folder_entities",
22
24
  "model_versions",
23
25
  "registered_prompts",
24
26
  "sandboxes",
@@ -43,7 +43,7 @@ class DeploymentsClient:
43
43
 
44
44
  - ordering: typing.Optional[str]. Which field to use when ordering the results.
45
45
 
46
- - status: typing.Optional[DeploymentsListRequestStatus]. The current status of the deployment
46
+ - status: typing.Optional[DeploymentsListRequestStatus]. status
47
47
  ---
48
48
  from vellum.client import Vellum
49
49
 
@@ -164,7 +164,7 @@ class AsyncDeploymentsClient:
164
164
 
165
165
  - ordering: typing.Optional[str]. Which field to use when ordering the results.
166
166
 
167
- - status: typing.Optional[DeploymentsListRequestStatus]. The current status of the deployment
167
+ - status: typing.Optional[DeploymentsListRequestStatus]. status
168
168
  ---
169
169
  from vellum.client import AsyncVellum
170
170
 
@@ -0,0 +1,98 @@
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
+
11
+ # this is used as the default value for optional parameters
12
+ OMIT = typing.cast(typing.Any, ...)
13
+
14
+
15
+ class FolderEntitiesClient:
16
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
17
+ self._client_wrapper = client_wrapper
18
+
19
+ def add_entity_to_folder(self, folder_id: str, *, entity_id: str) -> None:
20
+ """
21
+ Add an entity to a specific folder or root directory.
22
+
23
+ Adding an entity to a folder will remove it from any other folders it might have been a member of.
24
+
25
+ Parameters:
26
+ - folder_id: str. The ID of the folder to which the entity should be added. This can be a UUID of a folder, or the name of a root directory (e.g. "PROMPT_SANDBOX").
27
+
28
+ - entity_id: str. The ID of the entity you would like to move.
29
+ ---
30
+ from vellum.client import Vellum
31
+
32
+ client = Vellum(
33
+ api_key="YOUR_API_KEY",
34
+ )
35
+ client.folder_entities.add_entity_to_folder(
36
+ folder_id="folder_id",
37
+ entity_id="entity_id",
38
+ )
39
+ """
40
+ _response = self._client_wrapper.httpx_client.request(
41
+ "POST",
42
+ urllib.parse.urljoin(
43
+ f"{self._client_wrapper.get_environment().default}/", f"v1/folders/{folder_id}/add-entity"
44
+ ),
45
+ json=jsonable_encoder({"entity_id": entity_id}),
46
+ headers=self._client_wrapper.get_headers(),
47
+ timeout=None,
48
+ )
49
+ if 200 <= _response.status_code < 300:
50
+ return
51
+ try:
52
+ _response_json = _response.json()
53
+ except JSONDecodeError:
54
+ raise ApiError(status_code=_response.status_code, body=_response.text)
55
+ raise ApiError(status_code=_response.status_code, body=_response_json)
56
+
57
+
58
+ class AsyncFolderEntitiesClient:
59
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
60
+ self._client_wrapper = client_wrapper
61
+
62
+ async def add_entity_to_folder(self, folder_id: str, *, entity_id: str) -> None:
63
+ """
64
+ Add an entity to a specific folder or root directory.
65
+
66
+ Adding an entity to a folder will remove it from any other folders it might have been a member of.
67
+
68
+ Parameters:
69
+ - folder_id: str. The ID of the folder to which the entity should be added. This can be a UUID of a folder, or the name of a root directory (e.g. "PROMPT_SANDBOX").
70
+
71
+ - entity_id: str. The ID of the entity you would like to move.
72
+ ---
73
+ from vellum.client import AsyncVellum
74
+
75
+ client = AsyncVellum(
76
+ api_key="YOUR_API_KEY",
77
+ )
78
+ await client.folder_entities.add_entity_to_folder(
79
+ folder_id="folder_id",
80
+ entity_id="entity_id",
81
+ )
82
+ """
83
+ _response = await self._client_wrapper.httpx_client.request(
84
+ "POST",
85
+ urllib.parse.urljoin(
86
+ f"{self._client_wrapper.get_environment().default}/", f"v1/folders/{folder_id}/add-entity"
87
+ ),
88
+ json=jsonable_encoder({"entity_id": entity_id}),
89
+ headers=self._client_wrapper.get_headers(),
90
+ timeout=None,
91
+ )
92
+ if 200 <= _response.status_code < 300:
93
+ return
94
+ try:
95
+ _response_json = _response.json()
96
+ except JSONDecodeError:
97
+ raise ApiError(status_code=_response.status_code, body=_response.text)
98
+ raise ApiError(status_code=_response.status_code, body=_response_json)
@@ -0,0 +1,2 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
@@ -8,6 +8,7 @@ from ...core.api_error import ApiError
8
8
  from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
9
9
  from ...core.remove_none_from_dict import remove_none_from_dict
10
10
  from ...types.paginated_slim_workflow_deployment_list import PaginatedSlimWorkflowDeploymentList
11
+ from ...types.workflow_deployment_read import WorkflowDeploymentRead
11
12
  from .types.workflow_deployments_list_request_status import WorkflowDeploymentsListRequestStatus
12
13
 
13
14
  try:
@@ -36,10 +37,8 @@ class WorkflowDeploymentsClient:
36
37
 
37
38
  - ordering: typing.Optional[str]. Which field to use when ordering the results.
38
39
 
39
- - status: typing.Optional[WorkflowDeploymentsListRequestStatus]. The current status of the workflow deployment
40
-
41
- - `ACTIVE` - Active
42
- - `ARCHIVED` - Archived---
40
+ - status: typing.Optional[WorkflowDeploymentsListRequestStatus]. status
41
+ ---
43
42
  from vellum.client import Vellum
44
43
 
45
44
  client = Vellum(
@@ -62,6 +61,36 @@ class WorkflowDeploymentsClient:
62
61
  raise ApiError(status_code=_response.status_code, body=_response.text)
63
62
  raise ApiError(status_code=_response.status_code, body=_response_json)
64
63
 
64
+ def retrieve(self, id: str) -> WorkflowDeploymentRead:
65
+ """
66
+ Used to retrieve a workflow deployment given its ID or name.
67
+
68
+ Parameters:
69
+ - id: str. Either the Workflow Deployment's ID or its unique name
70
+ ---
71
+ from vellum.client import Vellum
72
+
73
+ client = Vellum(
74
+ api_key="YOUR_API_KEY",
75
+ )
76
+ client.workflow_deployments.retrieve(
77
+ id="id",
78
+ )
79
+ """
80
+ _response = self._client_wrapper.httpx_client.request(
81
+ "GET",
82
+ urllib.parse.urljoin(f"{self._client_wrapper.get_environment().default}/", f"v1/workflow-deployments/{id}"),
83
+ headers=self._client_wrapper.get_headers(),
84
+ timeout=None,
85
+ )
86
+ if 200 <= _response.status_code < 300:
87
+ return pydantic.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
88
+ try:
89
+ _response_json = _response.json()
90
+ except JSONDecodeError:
91
+ raise ApiError(status_code=_response.status_code, body=_response.text)
92
+ raise ApiError(status_code=_response.status_code, body=_response_json)
93
+
65
94
 
66
95
  class AsyncWorkflowDeploymentsClient:
67
96
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
@@ -83,10 +112,8 @@ class AsyncWorkflowDeploymentsClient:
83
112
 
84
113
  - ordering: typing.Optional[str]. Which field to use when ordering the results.
85
114
 
86
- - status: typing.Optional[WorkflowDeploymentsListRequestStatus]. The current status of the workflow deployment
87
-
88
- - `ACTIVE` - Active
89
- - `ARCHIVED` - Archived---
115
+ - status: typing.Optional[WorkflowDeploymentsListRequestStatus]. status
116
+ ---
90
117
  from vellum.client import AsyncVellum
91
118
 
92
119
  client = AsyncVellum(
@@ -108,3 +135,33 @@ class AsyncWorkflowDeploymentsClient:
108
135
  except JSONDecodeError:
109
136
  raise ApiError(status_code=_response.status_code, body=_response.text)
110
137
  raise ApiError(status_code=_response.status_code, body=_response_json)
138
+
139
+ async def retrieve(self, id: str) -> WorkflowDeploymentRead:
140
+ """
141
+ Used to retrieve a workflow deployment given its ID or name.
142
+
143
+ Parameters:
144
+ - id: str. Either the Workflow Deployment's ID or its unique name
145
+ ---
146
+ from vellum.client import AsyncVellum
147
+
148
+ client = AsyncVellum(
149
+ api_key="YOUR_API_KEY",
150
+ )
151
+ await client.workflow_deployments.retrieve(
152
+ id="id",
153
+ )
154
+ """
155
+ _response = await self._client_wrapper.httpx_client.request(
156
+ "GET",
157
+ urllib.parse.urljoin(f"{self._client_wrapper.get_environment().default}/", f"v1/workflow-deployments/{id}"),
158
+ headers=self._client_wrapper.get_headers(),
159
+ timeout=None,
160
+ )
161
+ if 200 <= _response.status_code < 300:
162
+ return pydantic.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
163
+ try:
164
+ _response_json = _response.json()
165
+ except JSONDecodeError:
166
+ raise ApiError(status_code=_response.status_code, body=_response.text)
167
+ raise ApiError(status_code=_response.status_code, body=_response_json)