vellum-ai 0.3.14__py3-none-any.whl → 0.3.16__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- vellum/__init__.py +22 -0
- vellum/client.py +846 -100
- vellum/core/__init__.py +8 -0
- vellum/core/client_wrapper.py +27 -8
- vellum/core/file.py +38 -0
- vellum/core/http_client.py +130 -0
- vellum/core/jsonable_encoder.py +2 -2
- vellum/core/request_options.py +32 -0
- vellum/resources/deployments/client.py +161 -24
- vellum/resources/document_indexes/client.py +337 -80
- vellum/resources/documents/client.py +278 -58
- vellum/resources/folder_entities/client.py +60 -10
- vellum/resources/model_versions/client.py +48 -8
- vellum/resources/registered_prompts/client.py +52 -6
- vellum/resources/sandboxes/client.py +108 -26
- vellum/resources/test_suite_runs/client.py +221 -38
- vellum/resources/test_suites/client.py +110 -24
- vellum/resources/workflow_deployments/client.py +110 -14
- vellum/types/__init__.py +20 -0
- vellum/types/api_node_result.py +1 -0
- vellum/types/api_node_result_data.py +4 -2
- vellum/types/array_chat_message_content.py +1 -0
- vellum/types/array_chat_message_content_item.py +6 -5
- vellum/types/array_chat_message_content_item_request.py +6 -5
- vellum/types/array_chat_message_content_request.py +1 -0
- vellum/types/array_enum.py +2 -2
- vellum/types/array_variable_value_item.py +16 -10
- vellum/types/chat_history_enum.py +2 -2
- vellum/types/chat_history_input_request.py +6 -1
- vellum/types/chat_history_variable_value.py +2 -1
- vellum/types/chat_message.py +7 -5
- vellum/types/chat_message_content.py +8 -6
- vellum/types/chat_message_content_request.py +8 -6
- vellum/types/chat_message_request.py +7 -5
- vellum/types/code_execution_node_array_result.py +31 -0
- vellum/types/code_execution_node_chat_history_result.py +2 -1
- vellum/types/code_execution_node_error_result.py +2 -1
- vellum/types/code_execution_node_function_call_result.py +31 -0
- vellum/types/code_execution_node_json_result.py +2 -1
- vellum/types/code_execution_node_number_result.py +2 -1
- vellum/types/code_execution_node_result.py +1 -0
- vellum/types/code_execution_node_result_data.py +2 -1
- vellum/types/code_execution_node_result_output.py +36 -8
- vellum/types/code_execution_node_search_results_result.py +2 -1
- vellum/types/code_execution_node_string_result.py +2 -1
- vellum/types/conditional_node_result.py +1 -0
- vellum/types/conditional_node_result_data.py +2 -1
- vellum/types/deployment_provider_payload_response.py +1 -0
- vellum/types/deployment_read.py +32 -17
- vellum/types/document_document_to_document_index.py +21 -15
- vellum/types/document_index_read.py +32 -19
- vellum/types/document_read.py +34 -24
- vellum/types/document_status.py +2 -2
- vellum/types/enriched_normalized_completion.py +36 -19
- vellum/types/error_enum.py +2 -2
- vellum/types/error_variable_value.py +2 -1
- vellum/types/execute_prompt_api_error_response.py +5 -1
- vellum/types/execute_prompt_event.py +8 -6
- vellum/types/execute_prompt_response.py +4 -4
- vellum/types/execute_workflow_error_response.py +5 -1
- vellum/types/execute_workflow_response.py +3 -2
- vellum/types/execute_workflow_stream_error_response.py +5 -1
- vellum/types/execute_workflow_workflow_result_event.py +4 -4
- vellum/types/execution_array_vellum_value.py +7 -2
- vellum/types/execution_chat_history_vellum_value.py +7 -2
- vellum/types/execution_error_vellum_value.py +7 -2
- vellum/types/execution_function_call_vellum_value.py +7 -2
- vellum/types/execution_json_vellum_value.py +7 -2
- vellum/types/execution_number_vellum_value.py +7 -2
- vellum/types/execution_search_results_vellum_value.py +7 -2
- vellum/types/execution_string_vellum_value.py +7 -2
- vellum/types/execution_vellum_value.py +16 -10
- vellum/types/fulfilled_enum.py +2 -2
- vellum/types/fulfilled_execute_prompt_event.py +2 -1
- vellum/types/fulfilled_execute_prompt_response.py +12 -5
- vellum/types/fulfilled_execute_workflow_workflow_result_event.py +1 -0
- vellum/types/fulfilled_function_call.py +2 -1
- vellum/types/fulfilled_prompt_execution_meta.py +3 -2
- vellum/types/fulfilled_workflow_node_result_event.py +6 -5
- vellum/types/function_call.py +4 -4
- vellum/types/function_call_chat_message_content.py +1 -0
- vellum/types/function_call_chat_message_content_request.py +1 -0
- vellum/types/function_call_chat_message_content_value.py +2 -1
- vellum/types/function_call_chat_message_content_value_request.py +2 -1
- vellum/types/function_call_enum.py +2 -2
- vellum/types/function_call_variable_value.py +1 -0
- vellum/types/generate_error_response.py +5 -1
- vellum/types/generate_options_request.py +8 -5
- vellum/types/generate_request.py +15 -9
- vellum/types/generate_result.py +10 -6
- vellum/types/generate_result_data.py +5 -3
- vellum/types/generate_result_error.py +5 -1
- vellum/types/generate_stream_response.py +1 -0
- vellum/types/generate_stream_result.py +3 -2
- vellum/types/generate_stream_result_data.py +1 -0
- vellum/types/image_chat_message_content.py +1 -0
- vellum/types/image_chat_message_content_request.py +1 -0
- vellum/types/image_enum.py +2 -2
- vellum/types/image_variable_value.py +2 -1
- vellum/types/initiated_enum.py +2 -2
- vellum/types/initiated_execute_prompt_event.py +2 -1
- vellum/types/initiated_prompt_execution_meta.py +5 -4
- vellum/types/initiated_workflow_node_result_event.py +5 -4
- vellum/types/json_enum.py +2 -2
- vellum/types/json_input_request.py +6 -1
- vellum/types/json_variable_value.py +2 -1
- vellum/types/logprobs_enum.py +2 -2
- vellum/types/metadata_filter_config_request.py +7 -6
- vellum/types/metadata_filter_rule_request.py +7 -6
- vellum/types/model_version_build_config.py +12 -7
- vellum/types/model_version_exec_config.py +18 -11
- vellum/types/model_version_exec_config_parameters.py +7 -6
- vellum/types/model_version_read.py +51 -32
- vellum/types/model_version_sandbox_snapshot.py +17 -4
- vellum/types/named_test_case_chat_history_variable_value_request.py +2 -1
- vellum/types/named_test_case_error_variable_value_request.py +2 -1
- vellum/types/named_test_case_json_variable_value_request.py +2 -1
- vellum/types/named_test_case_number_variable_value_request.py +2 -1
- vellum/types/named_test_case_search_results_variable_value_request.py +2 -1
- vellum/types/named_test_case_string_variable_value_request.py +2 -1
- vellum/types/named_test_case_variable_value_request.py +12 -8
- vellum/types/node_input_compiled_array_value.py +2 -1
- vellum/types/node_input_compiled_chat_history_value.py +2 -1
- vellum/types/node_input_compiled_error_value.py +2 -1
- vellum/types/node_input_compiled_function_call.py +32 -0
- vellum/types/node_input_compiled_json_value.py +2 -1
- vellum/types/node_input_compiled_number_value.py +2 -1
- vellum/types/node_input_compiled_search_results_value.py +2 -1
- vellum/types/node_input_compiled_string_value.py +2 -1
- vellum/types/node_input_variable_compiled_value.py +26 -9
- vellum/types/node_output_compiled_array_value.py +2 -1
- vellum/types/node_output_compiled_chat_history_value.py +2 -1
- vellum/types/node_output_compiled_error_value.py +2 -1
- vellum/types/node_output_compiled_function_value.py +2 -1
- vellum/types/node_output_compiled_json_value.py +2 -1
- vellum/types/node_output_compiled_number_value.py +2 -1
- vellum/types/node_output_compiled_search_results_value.py +2 -1
- vellum/types/node_output_compiled_string_value.py +2 -1
- vellum/types/node_output_compiled_value.py +16 -10
- vellum/types/normalized_log_probs.py +2 -1
- vellum/types/normalized_token_log_probs.py +3 -2
- vellum/types/number_enum.py +2 -2
- vellum/types/number_variable_value.py +2 -1
- vellum/types/paginated_document_index_read_list.py +5 -4
- vellum/types/paginated_slim_deployment_read_list.py +5 -4
- vellum/types/paginated_slim_document_list.py +5 -4
- vellum/types/paginated_slim_workflow_deployment_list.py +5 -4
- vellum/types/paginated_test_suite_run_execution_list.py +5 -4
- vellum/types/prompt_deployment_expand_meta_request_request.py +25 -15
- vellum/types/prompt_deployment_input_request.py +6 -5
- vellum/types/prompt_execution_meta.py +6 -5
- vellum/types/prompt_node_result.py +1 -0
- vellum/types/prompt_node_result_data.py +4 -3
- vellum/types/prompt_output.py +8 -6
- vellum/types/prompt_template_block.py +1 -0
- vellum/types/prompt_template_block_data.py +1 -0
- vellum/types/prompt_template_block_data_request.py +1 -0
- vellum/types/prompt_template_block_properties.py +11 -10
- vellum/types/prompt_template_block_properties_request.py +11 -10
- vellum/types/prompt_template_block_request.py +1 -0
- vellum/types/raw_prompt_execution_overrides_request.py +11 -5
- vellum/types/register_prompt_error_response.py +5 -1
- vellum/types/register_prompt_model_parameters_request.py +5 -4
- vellum/types/register_prompt_prompt.py +10 -2
- vellum/types/register_prompt_prompt_info_request.py +5 -3
- vellum/types/register_prompt_response.py +30 -10
- vellum/types/registered_prompt_deployment.py +15 -3
- vellum/types/registered_prompt_input_variable_request.py +3 -2
- vellum/types/registered_prompt_model_version.py +10 -2
- vellum/types/registered_prompt_sandbox.py +10 -2
- vellum/types/registered_prompt_sandbox_snapshot.py +5 -1
- vellum/types/rejected_enum.py +2 -2
- vellum/types/rejected_execute_prompt_event.py +2 -1
- vellum/types/rejected_execute_prompt_response.py +12 -5
- vellum/types/rejected_execute_workflow_workflow_result_event.py +1 -0
- vellum/types/rejected_function_call.py +2 -1
- vellum/types/rejected_prompt_execution_meta.py +3 -2
- vellum/types/rejected_workflow_node_result_event.py +4 -3
- vellum/types/sandbox_scenario.py +11 -3
- vellum/types/scenario_input.py +4 -3
- vellum/types/scenario_input_request.py +4 -3
- vellum/types/search_error_response.py +5 -1
- vellum/types/search_filters_request.py +10 -6
- vellum/types/search_node_result.py +1 -0
- vellum/types/search_node_result_data.py +7 -4
- vellum/types/search_request_options_request.py +20 -8
- vellum/types/search_response.py +5 -3
- vellum/types/search_result.py +15 -5
- vellum/types/search_result_document.py +20 -8
- vellum/types/search_result_document_request.py +15 -7
- vellum/types/search_result_merging_request.py +5 -1
- vellum/types/search_result_request.py +15 -5
- vellum/types/search_results_enum.py +2 -2
- vellum/types/search_results_variable_value.py +2 -1
- vellum/types/search_weights_request.py +10 -4
- vellum/types/slim_deployment_read.py +28 -14
- vellum/types/slim_document.py +56 -35
- vellum/types/slim_workflow_deployment.py +37 -24
- vellum/types/streaming_enum.py +2 -2
- vellum/types/streaming_execute_prompt_event.py +6 -4
- vellum/types/streaming_prompt_execution_meta.py +2 -1
- vellum/types/streaming_workflow_node_result_event.py +6 -5
- vellum/types/string_chat_message_content.py +1 -0
- vellum/types/string_chat_message_content_request.py +1 -0
- vellum/types/string_enum.py +2 -2
- vellum/types/string_input_request.py +6 -1
- vellum/types/string_variable_value.py +2 -1
- vellum/types/submit_completion_actual_request.py +25 -13
- vellum/types/submit_completion_actuals_error_response.py +1 -0
- vellum/types/submit_workflow_execution_actual_request.py +6 -5
- vellum/types/subworkflow_enum.py +2 -2
- vellum/types/subworkflow_node_result.py +1 -0
- vellum/types/templating_node_array_result.py +31 -0
- vellum/types/templating_node_chat_history_result.py +2 -1
- vellum/types/templating_node_error_result.py +2 -1
- vellum/types/templating_node_function_call_result.py +31 -0
- vellum/types/templating_node_json_result.py +2 -1
- vellum/types/templating_node_number_result.py +2 -1
- vellum/types/templating_node_result.py +1 -0
- vellum/types/templating_node_result_data.py +1 -0
- vellum/types/templating_node_result_output.py +36 -8
- vellum/types/templating_node_search_results_result.py +2 -1
- vellum/types/templating_node_string_result.py +2 -1
- vellum/types/terminal_node_array_result.py +8 -3
- vellum/types/terminal_node_chat_history_result.py +8 -3
- vellum/types/terminal_node_error_result.py +8 -3
- vellum/types/terminal_node_function_call_result.py +8 -3
- vellum/types/terminal_node_json_result.py +8 -3
- vellum/types/terminal_node_number_result.py +8 -3
- vellum/types/terminal_node_result.py +1 -0
- vellum/types/terminal_node_result_data.py +1 -0
- vellum/types/terminal_node_result_output.py +16 -10
- vellum/types/terminal_node_search_results_result.py +8 -3
- vellum/types/terminal_node_string_result.py +8 -3
- vellum/types/test_case_chat_history_variable_value.py +2 -1
- vellum/types/test_case_error_variable_value.py +2 -1
- vellum/types/test_case_json_variable_value.py +2 -1
- vellum/types/test_case_number_variable_value.py +2 -1
- vellum/types/test_case_search_results_variable_value.py +2 -1
- vellum/types/test_case_string_variable_value.py +2 -1
- vellum/types/test_case_variable_value.py +12 -8
- vellum/types/test_suite_run_deployment_release_tag_exec_config.py +5 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py +10 -4
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +10 -4
- vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py +5 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py +2 -2
- vellum/types/test_suite_run_exec_config.py +4 -4
- vellum/types/test_suite_run_exec_config_request.py +4 -4
- vellum/types/test_suite_run_execution.py +1 -0
- vellum/types/test_suite_run_execution_chat_history_output.py +2 -1
- vellum/types/test_suite_run_execution_error_output.py +2 -1
- vellum/types/test_suite_run_execution_json_output.py +2 -1
- vellum/types/test_suite_run_execution_metric_result.py +1 -0
- vellum/types/test_suite_run_execution_number_output.py +2 -1
- vellum/types/test_suite_run_execution_output.py +12 -8
- vellum/types/test_suite_run_execution_search_results_output.py +2 -1
- vellum/types/test_suite_run_execution_string_output.py +2 -1
- vellum/types/test_suite_run_metric_error_output.py +1 -0
- vellum/types/test_suite_run_metric_error_output_type_enum.py +2 -2
- vellum/types/test_suite_run_metric_number_output.py +1 -0
- vellum/types/test_suite_run_metric_number_output_type_enum.py +2 -2
- vellum/types/test_suite_run_metric_output.py +4 -4
- vellum/types/test_suite_run_read.py +16 -14
- vellum/types/test_suite_run_test_suite.py +1 -0
- vellum/types/test_suite_run_workflow_release_tag_exec_config.py +5 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py +10 -6
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +10 -6
- vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py +5 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py +2 -2
- vellum/types/test_suite_test_case.py +3 -2
- vellum/types/upload_document_error_response.py +1 -0
- vellum/types/upload_document_response.py +5 -1
- vellum/types/vellum_error.py +1 -0
- vellum/types/vellum_error_request.py +1 -0
- vellum/types/vellum_image.py +2 -1
- vellum/types/vellum_image_request.py +2 -1
- vellum/types/vellum_variable.py +1 -0
- vellum/types/workflow_deployment_read.py +37 -24
- vellum/types/workflow_event_error.py +1 -0
- vellum/types/workflow_execution_actual_chat_history_request.py +25 -15
- vellum/types/workflow_execution_actual_json_request.py +25 -15
- vellum/types/workflow_execution_actual_string_request.py +25 -15
- vellum/types/workflow_execution_node_result_event.py +3 -2
- vellum/types/workflow_execution_workflow_result_event.py +3 -2
- vellum/types/workflow_node_result_data.py +16 -10
- vellum/types/workflow_node_result_event.py +8 -6
- vellum/types/workflow_output.py +18 -11
- vellum/types/workflow_output_array.py +7 -2
- vellum/types/workflow_output_chat_history.py +7 -2
- vellum/types/workflow_output_error.py +7 -2
- vellum/types/workflow_output_function_call.py +7 -2
- vellum/types/workflow_output_image.py +7 -2
- vellum/types/workflow_output_json.py +7 -2
- vellum/types/workflow_output_number.py +7 -2
- vellum/types/workflow_output_search_results.py +7 -2
- vellum/types/workflow_output_string.py +7 -2
- vellum/types/workflow_request_chat_history_input_request.py +6 -1
- vellum/types/workflow_request_input_request.py +8 -6
- vellum/types/workflow_request_json_input_request.py +6 -1
- vellum/types/workflow_request_number_input_request.py +6 -1
- vellum/types/workflow_request_string_input_request.py +6 -1
- vellum/types/workflow_result_event.py +5 -4
- vellum/types/workflow_result_event_output_data.py +16 -10
- vellum/types/workflow_result_event_output_data_array.py +8 -5
- vellum/types/workflow_result_event_output_data_chat_history.py +8 -5
- vellum/types/workflow_result_event_output_data_error.py +8 -5
- vellum/types/workflow_result_event_output_data_function_call.py +8 -5
- vellum/types/workflow_result_event_output_data_json.py +8 -5
- vellum/types/workflow_result_event_output_data_number.py +8 -5
- vellum/types/workflow_result_event_output_data_search_results.py +8 -5
- vellum/types/workflow_result_event_output_data_string.py +11 -7
- vellum/types/workflow_stream_event.py +4 -4
- vellum/version.py +4 -0
- {vellum_ai-0.3.14.dist-info → vellum_ai-0.3.16.dist-info}/METADATA +5 -4
- vellum_ai-0.3.16.dist-info/RECORD +365 -0
- vellum_ai-0.3.14.dist-info/RECORD +0 -356
- {vellum_ai-0.3.14.dist-info → vellum_ai-0.3.16.dist-info}/LICENSE +0 -0
- {vellum_ai-0.3.14.dist-info → vellum_ai-0.3.16.dist-info}/WHEEL +0 -0
@@ -18,14 +18,16 @@ class WorkflowResultEventOutputDataFunctionCall(pydantic.BaseModel):
|
|
18
18
|
A Function Call output returned from a Workflow execution.
|
19
19
|
"""
|
20
20
|
|
21
|
-
id: typing.Optional[str]
|
21
|
+
id: typing.Optional[str] = None
|
22
22
|
name: str
|
23
23
|
state: WorkflowNodeResultEventState
|
24
24
|
node_id: str
|
25
|
-
delta: typing.Optional[str] = pydantic.Field(
|
26
|
-
|
27
|
-
|
28
|
-
|
25
|
+
delta: typing.Optional[str] = pydantic.Field(default=None)
|
26
|
+
"""
|
27
|
+
The newly output string value. Only relevant for string outputs with a state of STREAMING.
|
28
|
+
"""
|
29
|
+
|
30
|
+
value: typing.Optional[FunctionCall] = None
|
29
31
|
|
30
32
|
def json(self, **kwargs: typing.Any) -> str:
|
31
33
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -38,4 +40,5 @@ class WorkflowResultEventOutputDataFunctionCall(pydantic.BaseModel):
|
|
38
40
|
class Config:
|
39
41
|
frozen = True
|
40
42
|
smart_union = True
|
43
|
+
extra = pydantic.Extra.allow
|
41
44
|
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -17,14 +17,16 @@ class WorkflowResultEventOutputDataJson(pydantic.BaseModel):
|
|
17
17
|
A JSON output streamed from a Workflow execution.
|
18
18
|
"""
|
19
19
|
|
20
|
-
id: typing.Optional[str]
|
20
|
+
id: typing.Optional[str] = None
|
21
21
|
name: str
|
22
22
|
state: WorkflowNodeResultEventState
|
23
23
|
node_id: str
|
24
|
-
delta: typing.Optional[str] = pydantic.Field(
|
25
|
-
|
26
|
-
|
27
|
-
|
24
|
+
delta: typing.Optional[str] = pydantic.Field(default=None)
|
25
|
+
"""
|
26
|
+
The newly output string value. Only relevant for string outputs with a state of STREAMING.
|
27
|
+
"""
|
28
|
+
|
29
|
+
value: typing.Optional[typing.Dict[str, typing.Any]] = None
|
28
30
|
|
29
31
|
def json(self, **kwargs: typing.Any) -> str:
|
30
32
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -37,4 +39,5 @@ class WorkflowResultEventOutputDataJson(pydantic.BaseModel):
|
|
37
39
|
class Config:
|
38
40
|
frozen = True
|
39
41
|
smart_union = True
|
42
|
+
extra = pydantic.Extra.allow
|
40
43
|
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -17,14 +17,16 @@ class WorkflowResultEventOutputDataNumber(pydantic.BaseModel):
|
|
17
17
|
A number output streamed from a Workflow execution.
|
18
18
|
"""
|
19
19
|
|
20
|
-
id: typing.Optional[str]
|
20
|
+
id: typing.Optional[str] = None
|
21
21
|
name: str
|
22
22
|
state: WorkflowNodeResultEventState
|
23
23
|
node_id: str
|
24
|
-
delta: typing.Optional[str] = pydantic.Field(
|
25
|
-
|
26
|
-
|
27
|
-
|
24
|
+
delta: typing.Optional[str] = pydantic.Field(default=None)
|
25
|
+
"""
|
26
|
+
The newly output string value. Only relevant for string outputs with a state of STREAMING.
|
27
|
+
"""
|
28
|
+
|
29
|
+
value: typing.Optional[float] = None
|
28
30
|
|
29
31
|
def json(self, **kwargs: typing.Any) -> str:
|
30
32
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -37,4 +39,5 @@ class WorkflowResultEventOutputDataNumber(pydantic.BaseModel):
|
|
37
39
|
class Config:
|
38
40
|
frozen = True
|
39
41
|
smart_union = True
|
42
|
+
extra = pydantic.Extra.allow
|
40
43
|
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -18,14 +18,16 @@ class WorkflowResultEventOutputDataSearchResults(pydantic.BaseModel):
|
|
18
18
|
A Search Results output streamed from a Workflow execution.
|
19
19
|
"""
|
20
20
|
|
21
|
-
id: typing.Optional[str]
|
21
|
+
id: typing.Optional[str] = None
|
22
22
|
name: str
|
23
23
|
state: WorkflowNodeResultEventState
|
24
24
|
node_id: str
|
25
|
-
delta: typing.Optional[str] = pydantic.Field(
|
26
|
-
|
27
|
-
|
28
|
-
|
25
|
+
delta: typing.Optional[str] = pydantic.Field(default=None)
|
26
|
+
"""
|
27
|
+
The newly output string value. Only relevant for string outputs with a state of STREAMING.
|
28
|
+
"""
|
29
|
+
|
30
|
+
value: typing.Optional[typing.List[SearchResult]] = None
|
29
31
|
|
30
32
|
def json(self, **kwargs: typing.Any) -> str:
|
31
33
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -38,4 +40,5 @@ class WorkflowResultEventOutputDataSearchResults(pydantic.BaseModel):
|
|
38
40
|
class Config:
|
39
41
|
frozen = True
|
40
42
|
smart_union = True
|
43
|
+
extra = pydantic.Extra.allow
|
41
44
|
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -17,16 +17,19 @@ class WorkflowResultEventOutputDataString(pydantic.BaseModel):
|
|
17
17
|
A string output streamed from a Workflow execution.
|
18
18
|
"""
|
19
19
|
|
20
|
-
id: typing.Optional[str]
|
20
|
+
id: typing.Optional[str] = None
|
21
21
|
name: str
|
22
22
|
state: WorkflowNodeResultEventState
|
23
23
|
node_id: str
|
24
|
-
delta: typing.Optional[str] = pydantic.Field(
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
)
|
24
|
+
delta: typing.Optional[str] = pydantic.Field(default=None)
|
25
|
+
"""
|
26
|
+
The newly output string value, meant to be concatenated with all previous. Will be non-null for events of state STREAMING.
|
27
|
+
"""
|
28
|
+
|
29
|
+
value: typing.Optional[str] = pydantic.Field(default=None)
|
30
|
+
"""
|
31
|
+
The entire string value. Will be non-null for events of state FULFILLED.
|
32
|
+
"""
|
30
33
|
|
31
34
|
def json(self, **kwargs: typing.Any) -> str:
|
32
35
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -39,4 +42,5 @@ class WorkflowResultEventOutputDataString(pydantic.BaseModel):
|
|
39
42
|
class Config:
|
40
43
|
frozen = True
|
41
44
|
smart_union = True
|
45
|
+
extra = pydantic.Extra.allow
|
42
46
|
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -4,28 +4,28 @@ from __future__ import annotations
|
|
4
4
|
|
5
5
|
import typing
|
6
6
|
|
7
|
-
import typing_extensions
|
8
|
-
|
9
7
|
from .workflow_execution_node_result_event import WorkflowExecutionNodeResultEvent
|
10
8
|
from .workflow_execution_workflow_result_event import WorkflowExecutionWorkflowResultEvent
|
11
9
|
|
12
10
|
|
13
11
|
class WorkflowStreamEvent_Workflow(WorkflowExecutionWorkflowResultEvent):
|
14
|
-
type:
|
12
|
+
type: typing.Literal["WORKFLOW"] = "WORKFLOW"
|
15
13
|
|
16
14
|
class Config:
|
17
15
|
frozen = True
|
18
16
|
smart_union = True
|
19
17
|
allow_population_by_field_name = True
|
18
|
+
populate_by_name = True
|
20
19
|
|
21
20
|
|
22
21
|
class WorkflowStreamEvent_Node(WorkflowExecutionNodeResultEvent):
|
23
|
-
type:
|
22
|
+
type: typing.Literal["NODE"] = "NODE"
|
24
23
|
|
25
24
|
class Config:
|
26
25
|
frozen = True
|
27
26
|
smart_union = True
|
28
27
|
allow_population_by_field_name = True
|
28
|
+
populate_by_name = True
|
29
29
|
|
30
30
|
|
31
31
|
WorkflowStreamEvent = typing.Union[WorkflowStreamEvent_Workflow, WorkflowStreamEvent_Node]
|
vellum/version.py
ADDED
@@ -1,16 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: vellum-ai
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.16
|
4
4
|
Summary:
|
5
|
-
Requires-Python: >=3.
|
5
|
+
Requires-Python: >=3.8,<4.0
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
7
|
-
Classifier: Programming Language :: Python :: 3.7
|
8
7
|
Classifier: Programming Language :: Python :: 3.8
|
9
8
|
Classifier: Programming Language :: Python :: 3.9
|
10
9
|
Classifier: Programming Language :: Python :: 3.10
|
11
10
|
Classifier: Programming Language :: Python :: 3.11
|
11
|
+
Requires-Dist: cdktf (>=0.20.5,<0.21.0)
|
12
12
|
Requires-Dist: httpx (>=0.21.2)
|
13
|
-
Requires-Dist: pydantic (>=1.9.2
|
13
|
+
Requires-Dist: pydantic (>=1.9.2)
|
14
|
+
Requires-Dist: typing_extensions (>=4.0.0)
|
14
15
|
Description-Content-Type: text/markdown
|
15
16
|
|
16
17
|
# Vellum Python Library
|
@@ -0,0 +1,365 @@
|
|
1
|
+
vellum/__init__.py,sha256=17WXNkvq4OC3V1VqGWc64nJklzsPgBH0D_uux72OYng,33627
|
2
|
+
vellum/client.py,sha256=XB_tltKpWwPoZpsm4g0ftLPKFYjZSLjLAteJwp-xSWA,96636
|
3
|
+
vellum/core/__init__.py,sha256=RWfyDqkzWsf8e3VGc3NV60MovfJbg5XWzNFGB2DZ0hA,790
|
4
|
+
vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
+
vellum/core/client_wrapper.py,sha256=AKWkWlKI25Id8GdIJuOlRAEr17nre-D85hJGhSZmdtA,1698
|
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=IEhJedBpobt0zOfjW0pcH_sptQH3_frWtRF_s6i4HTM,3799
|
10
|
+
vellum/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
|
11
|
+
vellum/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
|
12
|
+
vellum/environment.py,sha256=bcAFjoE9XXd7tiysYS90Os669IJmUMZS2JZ_ZQn0Dpg,498
|
13
|
+
vellum/errors/__init__.py,sha256=57E7ykyjmPTSDm-CJKS6exWPndqZBUVslrmzLbtQUYg,402
|
14
|
+
vellum/errors/bad_request_error.py,sha256=jvBFMSUKdTc6ya16S5O7zwaFnPhOm8N4DjIom_pw5pc,248
|
15
|
+
vellum/errors/conflict_error.py,sha256=DFxSC0nkPmb6_3lR018RksrzHH5-LOStlLnTetamGfs,327
|
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/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
+
vellum/resources/__init__.py,sha256=oZf2_nhta_EWSHcf3p2j6kX6i3XZrXEzsTMUEimGWRA,822
|
21
|
+
vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
|
22
|
+
vellum/resources/deployments/client.py,sha256=5cGO32y457SyJRF7GuaeoFRIZo02duo4jKS_QrBcQac,19542
|
23
|
+
vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
|
24
|
+
vellum/resources/deployments/types/deployments_list_request_status.py,sha256=phuWe_3mJi4tJh2XR9BFw5QimgzBBWKzKRG2huILy8o,518
|
25
|
+
vellum/resources/document_indexes/__init__.py,sha256=YpOl_9IV7xOlH4OmusQxtAJB11kxQfCSMDyT1_UD0oM,165
|
26
|
+
vellum/resources/document_indexes/client.py,sha256=kcnJKQGMwqBLQsd5Ov7oRjFD0ZxnjJ4kGG_h82lJXc0,39745
|
27
|
+
vellum/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
|
28
|
+
vellum/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=oW_LSbBd7Rsz9Agw5SGZQgWdqoJkMAPAS2olMLvWr04,530
|
29
|
+
vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
30
|
+
vellum/resources/documents/client.py,sha256=OUlI-9pHwfVqLeufbzPNt34t1Z78PY8wlO3VMuHJu3Q,29728
|
31
|
+
vellum/resources/folder_entities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
32
|
+
vellum/resources/folder_entities/client.py,sha256=2rw4Q_zUbwQQbIUlaIt6LYkR3GhzEBxtCx2gro5_re4,6413
|
33
|
+
vellum/resources/model_versions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
34
|
+
vellum/resources/model_versions/client.py,sha256=4e0EkZsbvm90-xsRqKdRR-xL3Xp0QPmhhfUdU8q-NnY,5168
|
35
|
+
vellum/resources/registered_prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
36
|
+
vellum/resources/registered_prompts/client.py,sha256=5mbnlOvicfdVRXXXdor0R5shqbA5FUKMfIVYkjEB2yg,15002
|
37
|
+
vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
38
|
+
vellum/resources/sandboxes/client.py,sha256=gW_DTrJ3w6BfaSATZxB0Z-bxVUXQ0JtPAjL6mK5VEho,13639
|
39
|
+
vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
40
|
+
vellum/resources/test_suite_runs/client.py,sha256=T5vF1S5jDfQLxKOg-2Q2XYCF9g5W-dos6Ff6Av21gr8,17120
|
41
|
+
vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
42
|
+
vellum/resources/test_suites/client.py,sha256=zB8Ne4rUqwyazytyBWNKuI449C8MB7S5dugRg5NBjd4,13316
|
43
|
+
vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
|
44
|
+
vellum/resources/workflow_deployments/client.py,sha256=DUY1h8mvXqwP-zilmwoek_XbLNTFeeVbxgd7M-k2IzA,11164
|
45
|
+
vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
|
46
|
+
vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=8-G1SalBR6-AfRnb6POOR9M3tvZa3CGwFIs1ArZb6uw,542
|
47
|
+
vellum/types/__init__.py,sha256=59p1m_erR_1kg_kWmTUWaBafV5zzijV_5EZ7yJXIRvI,44795
|
48
|
+
vellum/types/api_node_result.py,sha256=aLOooryBCfglTeZwOuyyqRoHz5oPTja2mYYY7Gj8XxA,1040
|
49
|
+
vellum/types/api_node_result_data.py,sha256=cQcZiwI1hjRvQFlkVEGxyaD360vEklIfjBmhBAeI75U,1215
|
50
|
+
vellum/types/array_chat_message_content.py,sha256=Z7nKH8RNgot0i4-159w95OHywLjc-376gBPOovbw2hk,1087
|
51
|
+
vellum/types/array_chat_message_content_item.py,sha256=OI-Egmo1nCHcHxAPyIiVE6cl9U56g9NxNMRw5pKp-qs,1297
|
52
|
+
vellum/types/array_chat_message_content_item_request.py,sha256=BDCVgQ578urGkM_118yAXWv4BZlWLPk22oBZGJIF6wo,1421
|
53
|
+
vellum/types/array_chat_message_content_request.py,sha256=EUQku1QVyrwogAU-qPpqvGlzutpRvwYJaYNtAxOTiCs,1116
|
54
|
+
vellum/types/array_enum.py,sha256=4p5fpx2piS8FhkPAEz6Xu3OIOKFuDZF-aokSW6-dV0E,116
|
55
|
+
vellum/types/array_variable_value_item.py,sha256=xkX151Bfx4p9y6rVLIhz1m8rQLcyULrfBFUuyJJPnT8,3002
|
56
|
+
vellum/types/block_type_enum.py,sha256=w6z5D3RTe75YQBG6HpX8NCbO_kSZxIL0Xy1xss2RKS8,1051
|
57
|
+
vellum/types/chat_history_enum.py,sha256=etXbSJGuOjEcYXyCoQEw0bd9sfbZZNctMQyFoCdnywM,129
|
58
|
+
vellum/types/chat_history_input_request.py,sha256=c1jeB6sLLiBTm3RUzhvLCs1Tkeb9h8FwsQ5_BRjO-X4,1175
|
59
|
+
vellum/types/chat_history_variable_value.py,sha256=NadISCRUoxD53RAkbHW0D0Pxbm7EpdBTA_iyLsTdZcM,1002
|
60
|
+
vellum/types/chat_message.py,sha256=8OzRK6Zq1QmBhPbFQWxWUeThjD-CnD52MG7YfsecI3k,1267
|
61
|
+
vellum/types/chat_message_content.py,sha256=jUdD6bGK6hpbgV4xzXOhlX1VZvATICxqxBe6rL2AYRg,1573
|
62
|
+
vellum/types/chat_message_content_request.py,sha256=-Ar1P-EdzMlIMedySF_t33N1jGPGxTb_IpP_teXq-6c,1737
|
63
|
+
vellum/types/chat_message_request.py,sha256=nu94Hu0wk2B-atuaewUYQDLZa6uHdfINOh4J-4sCGMA,1296
|
64
|
+
vellum/types/chat_message_role.py,sha256=IXfZXOw62Y6k6TMGpGWz1DCSdl44bRJzYEIRasKl26o,914
|
65
|
+
vellum/types/code_execution_node_array_result.py,sha256=W1TYSYyDojW_JhC0hPkApbp75w1xoL-OmpvN-R8UHCI,1053
|
66
|
+
vellum/types/code_execution_node_chat_history_result.py,sha256=y4d9-HyxNjU3pAudj6cJ5m_RkrsYzhL36yYt0aAb-1U,1024
|
67
|
+
vellum/types/code_execution_node_error_result.py,sha256=CW-SZE-GrNdYy7ph2jw9Y7DmsgKTEZtvGAm6C-IEMxA,1005
|
68
|
+
vellum/types/code_execution_node_function_call_result.py,sha256=5ZCF8rfO29v7hjcu5_LrshndYR6TPYkSg5wK6luUoQk,1015
|
69
|
+
vellum/types/code_execution_node_json_result.py,sha256=ApVi24bG6bE5IIRe0DmlAqkPzseZvX811MAHaCC4X2o,983
|
70
|
+
vellum/types/code_execution_node_number_result.py,sha256=xNibxeqjQRoXdKcs-j40qmRLEU0GCvcFH2fDdIHY540,962
|
71
|
+
vellum/types/code_execution_node_result.py,sha256=FivMUumvVNmNorKs4tn7zHL5oLnhQfRW5o_M6Gnvs-g,1091
|
72
|
+
vellum/types/code_execution_node_result_data.py,sha256=3vzM7I8qm-emFN9stHtRZIx8NXjxj1WMSAEpXqFJSDE,1073
|
73
|
+
vellum/types/code_execution_node_result_output.py,sha256=JlqgCO5Og1fo_fHgrn5Dq-g8UfYBaamaHw_xdyDAhNQ,3377
|
74
|
+
vellum/types/code_execution_node_search_results_result.py,sha256=dJKzZDGG1CGbc8RtE-6U7mw_dAtWx0svplmoIRk38Qg,1029
|
75
|
+
vellum/types/code_execution_node_string_result.py,sha256=W0KujT-GJfQCdrama1NXB1NF5Rr4z4oFU7Z1GVLNjgI,960
|
76
|
+
vellum/types/conditional_node_result.py,sha256=nuNZ0ycAWmrqmgqdYfQmrd1DxPqGOT2wekS0cLEt9Ms,1079
|
77
|
+
vellum/types/conditional_node_result_data.py,sha256=uxuPu_t1ASqTAvyXi34f4taURVwgGcPEa5y_kQOgXD4,955
|
78
|
+
vellum/types/deployment_provider_payload_response.py,sha256=BFHC0RvUtXtGReqjMNQw-jq6-d_d-RQLuPnsvfMVvHc,955
|
79
|
+
vellum/types/deployment_read.py,sha256=wjxDl4zvnKRfHVVyQJIk-FR_Tq7_Cztr7f_x0Cn83EE,1980
|
80
|
+
vellum/types/document_document_to_document_index.py,sha256=CNjzOJMhqASAcFWpPLmzEt1T8uBOUjQZX0MCsGkhtk4,1580
|
81
|
+
vellum/types/document_index_read.py,sha256=ZF4QDXjl3M9RSoVnCFV5WJkOHG8NawI4BpvNmBs3Poo,1825
|
82
|
+
vellum/types/document_read.py,sha256=Sak3KgR3-h8cT0bhcY0_RLYL-jTls85o6-jmsh5VUhk,2242
|
83
|
+
vellum/types/document_status.py,sha256=GD_TSoFmZUBJnPl-chAmaQFzQ2_TYO3PSqi3-9QfEHE,122
|
84
|
+
vellum/types/enriched_normalized_completion.py,sha256=FSjUYYSsMUIIJvuEr-_gORipJkESy_Ro3A06jPlQHiU,2147
|
85
|
+
vellum/types/entity_status.py,sha256=mOmg4bcQlLH1OZ1dV5TIHGqgHrG89XhAC-dailkM1s0,539
|
86
|
+
vellum/types/environment_enum.py,sha256=4BOiy38qQQfcoSHJyfAGaC4QMOo8Zc-9TdNP7z9q2iw,799
|
87
|
+
vellum/types/error_enum.py,sha256=HF_ubfzqmFQN3vVCDFZALADjHFRChuvkU_-zqjxa3ns,116
|
88
|
+
vellum/types/error_variable_value.py,sha256=ZudRmtHA0QgmZyaG8C53r-6TWwplI9qTnYzLx5Ibf6A,983
|
89
|
+
vellum/types/execute_prompt_api_error_response.py,sha256=v4bPqcCgE9hMh9423KZAYFm2in8oBEYpi7FG0gSPHDs,1002
|
90
|
+
vellum/types/execute_prompt_event.py,sha256=WBKdWBRgtDYoxMbHC7FjCjCxxTuOgjINonDYQITD1-4,1636
|
91
|
+
vellum/types/execute_prompt_response.py,sha256=HHD1EoPDz78OQA8XYcsopklbzk0fVYk-rXwjwW19n6M,914
|
92
|
+
vellum/types/execute_workflow_error_response.py,sha256=9IOWLsxVUhW7YXAPO3pRhJvmhYXeMJegryQ8WX4sM3M,1001
|
93
|
+
vellum/types/execute_workflow_response.py,sha256=vn9hJcjMigD8fWolgxWoL-6n4AHs0FDRfLxgSB8-mtQ,1142
|
94
|
+
vellum/types/execute_workflow_stream_error_response.py,sha256=iCstmFxVskqDWVZolTVaZLQLgriWh-dDpkIOagtyZ4k,1007
|
95
|
+
vellum/types/execute_workflow_workflow_result_event.py,sha256=1UIAqBeCGkOSw_x62mtuGMZYCRCNCMbUqT1DlTMjVsc,1067
|
96
|
+
vellum/types/execution_array_vellum_value.py,sha256=27UXb5cKm0YS0HM7ar47eUku9E_BWs9hN23X9dlqNoo,1153
|
97
|
+
vellum/types/execution_chat_history_vellum_value.py,sha256=NDDkZytTCiLoT7ueN8S47PMxwhtSTxmOAvgktQmCb_M,1124
|
98
|
+
vellum/types/execution_error_vellum_value.py,sha256=FYNYRMWx2lG9lj_RoN2L2LDnCSkFSkmi250jvyOHgDM,1105
|
99
|
+
vellum/types/execution_function_call_vellum_value.py,sha256=mYGRPz3786SK7TYqmr0SBtBM_IAruoGt6LKk_OBlVd8,1115
|
100
|
+
vellum/types/execution_json_vellum_value.py,sha256=hyGnfJpQYQtsjMICeIxTCbu0uaTvnHgZu3m7XBm2p5Q,1083
|
101
|
+
vellum/types/execution_number_vellum_value.py,sha256=N3lcnG1cc21T8b4pO7O8ccnc5T9vZxvYow-9O4Cart8,1062
|
102
|
+
vellum/types/execution_search_results_vellum_value.py,sha256=tj3hPVHyTJ9RrYyOJ8w0R2vw7Mf_mazjJHSURiSsgk8,1129
|
103
|
+
vellum/types/execution_string_vellum_value.py,sha256=B9Vvtmvz9KHynnomuHl9vwLur2fGMs6PQma4wsFv55w,1060
|
104
|
+
vellum/types/execution_vellum_value.py,sha256=aEkd5eaFhGrI3POUFii5w3WZkvUgpB47KIFaAKS9_cQ,3144
|
105
|
+
vellum/types/finish_reason_enum.py,sha256=zAvOLiq2ngmDILEftziwCGYb4z-wlih0XHRNOo35FzM,726
|
106
|
+
vellum/types/fulfilled_enum.py,sha256=MenrGneRMBvsq-n8tkMXAx0wppGWLJgkqdKnfklGP9U,124
|
107
|
+
vellum/types/fulfilled_execute_prompt_event.py,sha256=2_jNUOaSg12WKggFiczulVoHFM7i3yIAIZbL99tVf2M,1292
|
108
|
+
vellum/types/fulfilled_execute_prompt_response.py,sha256=LyVpUlphfBrqSWzo1QyIzdTjAJ8cgW60U98VnMd83ws,1508
|
109
|
+
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=ROLCpeU2FoqyisPDvgumUlYFDUbwOr93pEfII-ST3NI,1146
|
110
|
+
vellum/types/fulfilled_function_call.py,sha256=wIk8JVy9HyjSbY7rPOhrXPh3OuKy3mtpUvPSOx2FcUc,1056
|
111
|
+
vellum/types/fulfilled_prompt_execution_meta.py,sha256=_cDf859bAtbKHRt3cvdLHeuQi44CUqjUSYWITLBeubk,1196
|
112
|
+
vellum/types/fulfilled_workflow_node_result_event.py,sha256=MGxts5L-VBaYP7xbL5ojjtKWEXUv45XSPqT7Y2RtvjI,1454
|
113
|
+
vellum/types/function_call.py,sha256=U1_fLhZ_VGnHYPX8rb7iqyyUhBzzbRAGR-ai4wLDrs4,813
|
114
|
+
vellum/types/function_call_chat_message_content.py,sha256=z9bTybrPXuhztOUw65PXGws-obJkCJWhc0Zfv1ZwA-k,1122
|
115
|
+
vellum/types/function_call_chat_message_content_request.py,sha256=baMUPS50E_tago-AF45JztqPH3WF2DhlMfiSMg1dkQ8,1151
|
116
|
+
vellum/types/function_call_chat_message_content_value.py,sha256=9wMAW7d1AojngSY4HTqkXVradLnoHwfLT7mqjlh5CSQ,1070
|
117
|
+
vellum/types/function_call_chat_message_content_value_request.py,sha256=yPRYr-4FTbKUblT6L4ru61gUn9vIK3uWx1U2eDQ-0So,1077
|
118
|
+
vellum/types/function_call_enum.py,sha256=QK__nqbfcaPx1d6paBAoCFth7mWOStqgutY3MIit_cE,131
|
119
|
+
vellum/types/function_call_variable_value.py,sha256=AV76pHjwshzkqGxIIX2cfysaQQlZu4ijym-swGy1Csw,969
|
120
|
+
vellum/types/generate_error_response.py,sha256=zpQo15oLXMWQzkVWMSvm4GT1rEiKWrdcufQMx2MJyPU,994
|
121
|
+
vellum/types/generate_options_request.py,sha256=jKGXQPt6i9hxkfquU76deRsy2xDruTesKtgsbxXIE3g,1133
|
122
|
+
vellum/types/generate_request.py,sha256=rBucxc22zdY_G7_OsV3E44pr09kmiCrzajGZMdTk9t8,1620
|
123
|
+
vellum/types/generate_response.py,sha256=DQNreImNi2knMgzvt4q-VPitdhS6cxj_xCoUYtAaOIs,1342
|
124
|
+
vellum/types/generate_result.py,sha256=z0m3TytGa5Qv_-3ZsfloFD7LP6tmqkM3Di2EbZ8n0W0,1445
|
125
|
+
vellum/types/generate_result_data.py,sha256=GflsXd9chZMMQXfXxoSmJ1Ggzzt1k7u__SzfdLeRkF8,1141
|
126
|
+
vellum/types/generate_result_error.py,sha256=APzDe_Yg6JF6NhAnMgrgfia5Jy3Do_qiXgPmDiGU_Kg,1003
|
127
|
+
vellum/types/generate_stream_response.py,sha256=YaQ7dC69nnd3T0qfXJYKWhQuIX8YgZrhvr6wPS4kdtw,991
|
128
|
+
vellum/types/generate_stream_result.py,sha256=ojj2xlx1R-3PTu7-XFSw_j57WOgXn2gKSqKweB1Voqk,1158
|
129
|
+
vellum/types/generate_stream_result_data.py,sha256=vYtuPBnP3QuivyIm87LIX0-b7c27vk1w8GtChbM1sTE,1048
|
130
|
+
vellum/types/image_chat_message_content.py,sha256=4_sjad8icnIQIhlKHPqeSBld3Qpff-9pSgEHSgRk6Dg,1032
|
131
|
+
vellum/types/image_chat_message_content_request.py,sha256=xd1YlL7G9W3PMu48HlIeNLGQJ6fpZm24azaFsIq65-M,1061
|
132
|
+
vellum/types/image_enum.py,sha256=tCaNHfgdFi9F5MInvgaRq19i9lghWolWWmZpBH5uSJQ,116
|
133
|
+
vellum/types/image_variable_value.py,sha256=7brkIvC0JQyDpf80mG-jRtVzMTVGNYysQB0x8NM6NAM,1057
|
134
|
+
vellum/types/indexing_state_enum.py,sha256=uzSb7J75Ge0vxH_WQ2WHKQbZIjvfluyZ2IjqyJjVCrs,1181
|
135
|
+
vellum/types/initiated_enum.py,sha256=wLrGPYfE2-wOPUkceLglJheOUsHGAyROO0ropfSudJs,124
|
136
|
+
vellum/types/initiated_execute_prompt_event.py,sha256=4cLkf-2kkVLgiSBQu4sr1T55TH8nMdXHRaB3TveC4HY,1191
|
137
|
+
vellum/types/initiated_prompt_execution_meta.py,sha256=bPq9L5F-GwXixzkcXgcZKs45nlE7Vgor2l27gOXQkr8,1238
|
138
|
+
vellum/types/initiated_workflow_node_result_event.py,sha256=EH3Zryf_h7UJsvi_8uD-aYoE4un23d_gNkLEkxOCCZo,1434
|
139
|
+
vellum/types/json_enum.py,sha256=0Se0lTWxLGQe-JdQ8E9KwFt5NWXuI7BkOdWQcFKJg-8,114
|
140
|
+
vellum/types/json_input_request.py,sha256=G-F0WIcnkUXb8IRKyJ4Q_k7l_Z_EetUU2gHNKplznzo,1102
|
141
|
+
vellum/types/json_variable_value.py,sha256=9kEH1X6_-wg_s-jjj0vnE62ljbmake-fufTKj1PCjPo,961
|
142
|
+
vellum/types/logical_operator.py,sha256=kS7lccMbnTqBzcpJQz_vP100yoG4DE2npIjoQud_GAk,4282
|
143
|
+
vellum/types/logprobs_enum.py,sha256=cw9yroKgrZzpPHniPV4hg7_21PM9_FSX1GArHHC_-_o,492
|
144
|
+
vellum/types/metadata_filter_config_request.py,sha256=JH5EBNES30DuRIhgad6IYwXZcuAW6bRajSnWUqs4hG4,1412
|
145
|
+
vellum/types/metadata_filter_rule_combinator.py,sha256=hmfQ3drGlGYqRA78iZr7ek8qZTFN-WENrwL3_OlexMM,528
|
146
|
+
vellum/types/metadata_filter_rule_request.py,sha256=JGPkjXzMS9I3dlEQUAJ0HllJ3F-Znp-0x-4hp06miPs,1428
|
147
|
+
vellum/types/model_version_build_config.py,sha256=0dOGfizN30eYJtjs-fJc32TUBGdpYuMFo57a_tEutSg,1400
|
148
|
+
vellum/types/model_version_exec_config.py,sha256=tJJ1Kb8rBdbkD4z9fVwP94bjR9gee4I9N-i9o9w8vVs,1677
|
149
|
+
vellum/types/model_version_exec_config_parameters.py,sha256=jF4wm_GIeITFavMNGSvBd-fa5v9fEjWxoHaZhVFx0CI,1326
|
150
|
+
vellum/types/model_version_read.py,sha256=Ize9tyNNnR2oMXQSKwrEfuJilR5O3qSssfrJQwmSFqw,2425
|
151
|
+
vellum/types/model_version_read_status_enum.py,sha256=uQCzeBoMqn29-V2b6fiq5rv9G3yBApaHWQLMMRRL-Hs,1032
|
152
|
+
vellum/types/model_version_sandbox_snapshot.py,sha256=bXe_7Fp-CSQ_WOvjX8GJfO7ZbV0i99nbkv5yiqdFjeI,1309
|
153
|
+
vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=0kyTzNfZcOdhtTqFu9W74j5z2uWNTYwftvRneeiQOE8,1058
|
154
|
+
vellum/types/named_test_case_error_variable_value_request.py,sha256=ZdDkqQzLaAxr8Oa-xIKuxjWSSGeUrj_lOLkJBIRd5w4,1039
|
155
|
+
vellum/types/named_test_case_json_variable_value_request.py,sha256=djA5yuYKhpOslFATgwNOgGkyKV6J7imWC2WuMJbDR_8,995
|
156
|
+
vellum/types/named_test_case_number_variable_value_request.py,sha256=b3isz1f9gHh4gHgUQroY5z7XI5POreW5TlKxH81Vkrs,974
|
157
|
+
vellum/types/named_test_case_search_results_variable_value_request.py,sha256=jPNGGET7zEXNfUCkfprKIcKrv2WQXKN_5rCqVu8_Toc,1063
|
158
|
+
vellum/types/named_test_case_string_variable_value_request.py,sha256=ojEYk8kQTL0FJVbUgY2PFXcE0chqqeYyEHOXeBH_aco,972
|
159
|
+
vellum/types/named_test_case_variable_value_request.py,sha256=hCNEq0Ubqod6kOELWZcbizCocKvLGbPwgaFAo1sWOuw,2807
|
160
|
+
vellum/types/node_input_compiled_array_value.py,sha256=Zw78U4629WGprdmBVsnsthUsDNiJcC_7CecOs3B1M4M,1076
|
161
|
+
vellum/types/node_input_compiled_chat_history_value.py,sha256=aOY49Id1sawCnfSnkP_UDoHMTUp3I1JwHrSUMtt57J8,1047
|
162
|
+
vellum/types/node_input_compiled_error_value.py,sha256=xqxiWubiUCi2TOp4vxeXf8Ct_O9EoOsPodbjNztjacM,1028
|
163
|
+
vellum/types/node_input_compiled_function_call.py,sha256=dgcjuRmX7kLp0RYljl5u9O6Zklz2rV-gfmR59iG9ylM,1033
|
164
|
+
vellum/types/node_input_compiled_json_value.py,sha256=XDfWlCSQJMU8T7mFP0q8x3tVd4konOBE8mcvw_dQP7I,1006
|
165
|
+
vellum/types/node_input_compiled_number_value.py,sha256=TJH5BJ8fKKLRwULep9d0bnue_7JHWHFzDozdRMa2MIg,985
|
166
|
+
vellum/types/node_input_compiled_search_results_value.py,sha256=8p4EJ8nm9DENXoQhSL2qNPBoFs0Wr6wM1sDbuf-PJXc,1052
|
167
|
+
vellum/types/node_input_compiled_string_value.py,sha256=0ts7RNnHpOfaXYzdBHwcRh4W7jNBy-CMoGlmy089aMg,983
|
168
|
+
vellum/types/node_input_variable_compiled_value.py,sha256=iXSNb6wRYmPOOzQZk8AWB929hedtL_NwFox17MjMT4w,3354
|
169
|
+
vellum/types/node_output_compiled_array_value.py,sha256=rVo2mibG_m-7awEIsRrfY1xs3Qi1U44uoBZhsJ_QjmI,1065
|
170
|
+
vellum/types/node_output_compiled_chat_history_value.py,sha256=jF-7bmCGGYz1Ck6q16jur9QMKf9Abuy5154zHxv-sIk,1036
|
171
|
+
vellum/types/node_output_compiled_error_value.py,sha256=1c_D_W4y1j04wg3_XiWOb2cmkR8q1U_42d4lM5tUYZ0,1017
|
172
|
+
vellum/types/node_output_compiled_function_value.py,sha256=De8faetc3bTuekUZIum6WO2U60gN_EP45Zu11ksENvE,1023
|
173
|
+
vellum/types/node_output_compiled_json_value.py,sha256=o22E2LnpIaYd6hkn7JXikbQFblUdmhrXfw08xMFVfGs,995
|
174
|
+
vellum/types/node_output_compiled_number_value.py,sha256=QW3aal9d3E8Xu0SUzdPeqshdwsbgv4iHLgk3kXDXh-g,974
|
175
|
+
vellum/types/node_output_compiled_search_results_value.py,sha256=JNr4xLw1Yc9SXHGyPK15bBzTnD4wf7XugZ1dPnDD-GY,1041
|
176
|
+
vellum/types/node_output_compiled_string_value.py,sha256=aKvUzQcThQpqn7v2O51BmGb_ZTD1XgvqEjIolmg0Dgk,972
|
177
|
+
vellum/types/node_output_compiled_value.py,sha256=xR2vnYE0d4Dyek9X-LOA_Cxos3D9qxXdS3rf6xQNjGM,3262
|
178
|
+
vellum/types/normalized_log_probs.py,sha256=LjOfw4C8LEkRSZAH44zhVX9aM8vyfErTXZw6HiECu9E,1057
|
179
|
+
vellum/types/normalized_token_log_probs.py,sha256=4HM4WF1wubvKgRMeldUe5-aZLWiONM9Zg0YvlDJWWUo,1065
|
180
|
+
vellum/types/number_enum.py,sha256=M_h5PmC5HxQYpQbfqqyw1DualhKu1QOCU-o1NYTQz_o,118
|
181
|
+
vellum/types/number_variable_value.py,sha256=ZJuvR9t2Eit7mWEwmOj236PddcPd5WeEWwSGWurt6jU,940
|
182
|
+
vellum/types/paginated_document_index_read_list.py,sha256=hwPQzmn-2xP5PPe7q39by_B7lg5B4KPd31DznBVgpt0,1148
|
183
|
+
vellum/types/paginated_slim_deployment_read_list.py,sha256=4pMZYAVl7pLI8d9-CE3NYGfbcjnFQGDK3ImvKJdUSG4,1152
|
184
|
+
vellum/types/paginated_slim_document_list.py,sha256=Zvr_VzHcUEEiqAXEitoaM5YcPcaTKgEx8fziy3SH1CU,1127
|
185
|
+
vellum/types/paginated_slim_workflow_deployment_list.py,sha256=dCew3Xy72Mo5MHIBdCbcuDaH0v2yeCRNBDt4m-8tb0A,1168
|
186
|
+
vellum/types/paginated_test_suite_run_execution_list.py,sha256=pwT-FeIxOBnP_S3kpqlAUOtlXEYfFgfViRGxeFTebRI,1117
|
187
|
+
vellum/types/processing_failure_reason_enum.py,sha256=MDj2vNyO1Y-2WHuolkrGez8F1cZqS6ultfsqvGI4Fg8,752
|
188
|
+
vellum/types/processing_state_enum.py,sha256=rMhw5oLZNfhR4QkIgFfLMWRSLXgHt9qhiguEqWQNz5k,962
|
189
|
+
vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=jvi3NW0nJxyLwNEhk35oEdAm_aDOuy48eNy5LqvkkRs,1885
|
190
|
+
vellum/types/prompt_deployment_input_request.py,sha256=o8PCi7TsitddNxiAfDblxaXkJ1-WjuDTAW0LnKbMDY4,1233
|
191
|
+
vellum/types/prompt_execution_meta.py,sha256=ix_1Wscqv3kthyyirFEjwY6xXYD5wuw0sdypyfb8hAo,1338
|
192
|
+
vellum/types/prompt_node_result.py,sha256=s6jusFXMD1calmDVdL0lWO0NIqILWpdLP8xFRqf-5-k,1054
|
193
|
+
vellum/types/prompt_node_result_data.py,sha256=q6y32EyaaAoIxM1od6-5RQAmPTitBQ-Hlkw5QNdeo6g,1045
|
194
|
+
vellum/types/prompt_output.py,sha256=Df5UnLyBRf79_oUnYiMl9vi_h41yKEDLw1KgkgiX1Uk,1442
|
195
|
+
vellum/types/prompt_template_block.py,sha256=i8IuMHOpgwi4RMrT5-mfSIXxf-fv40Ek7SjtTPX-Rls,1201
|
196
|
+
vellum/types/prompt_template_block_data.py,sha256=E50ttPm8qR2heSf6f2LkfsSW2hm92z-AhvGqTQJwcjA,1020
|
197
|
+
vellum/types/prompt_template_block_data_request.py,sha256=r1no7jOHSTh8N2nih1lvx4YGMp3H_8GdRvHisNP3wGY,1049
|
198
|
+
vellum/types/prompt_template_block_properties.py,sha256=h7eBnaF1FL8FPv7PYF4_epQuZi8aqWdNTYODC0vqz6Q,1731
|
199
|
+
vellum/types/prompt_template_block_properties_request.py,sha256=qiFJZIiDLYK_-18rVXZs0ViKR-iKQLB9nvsid1xvcIE,1767
|
200
|
+
vellum/types/prompt_template_block_request.py,sha256=Sg-ZKO68WYAQG0efh96ORPSIC9eGe9GqYgWZABLika8,1237
|
201
|
+
vellum/types/provider_enum.py,sha256=npChY_aeD59zF0hOu3wYMBJECq3k1vRQrjDBtCVQMEs,2516
|
202
|
+
vellum/types/raw_prompt_execution_overrides_request.py,sha256=uwtGVke-G85AwiIxn7EVuzCiCsXkK-BKM80IbRFgzQQ,1261
|
203
|
+
vellum/types/register_prompt_error_response.py,sha256=qWDaB5Uoe3BDmSZGLQ4_FqV-Bh8cCqFS_p_G708R6Io,1000
|
204
|
+
vellum/types/register_prompt_model_parameters_request.py,sha256=_YUzDERQwZZU0BX3PSiDWMDCCiwtVYRvxiUWpcijN3A,1280
|
205
|
+
vellum/types/register_prompt_prompt.py,sha256=5b9CSCg_cXq0B_iwim1mTtD6jIenjkxMfLzwlUyZo_w,1087
|
206
|
+
vellum/types/register_prompt_prompt_info_request.py,sha256=6GITGU9Z7Xa31h5fY0d4o2MuehucUP8Q9S65_aVJcVI,1299
|
207
|
+
vellum/types/register_prompt_response.py,sha256=etYKl-A0XSHFU30wRAHL9n2p8DFf4GyKBcM-2Y2AWEY,1982
|
208
|
+
vellum/types/registered_prompt_deployment.py,sha256=CrGVGi6w4NY818j_DVLNtfpWyUcNzmvrReDtQTmwaf4,1209
|
209
|
+
vellum/types/registered_prompt_input_variable_request.py,sha256=5u9QDW93x6FgbXhzQrDskFy2NAnSW0by5j5QljKcXtc,1071
|
210
|
+
vellum/types/registered_prompt_model_version.py,sha256=1TooDBZSXroikQxAj01aXrSafqYRcWZewOkpbac4ZdA,1109
|
211
|
+
vellum/types/registered_prompt_sandbox.py,sha256=mtrPp1JsdwyMOZqLt953kL7QPFdTmbsGWgr7lt1V8r4,1092
|
212
|
+
vellum/types/registered_prompt_sandbox_snapshot.py,sha256=q1lH4ZcXRkhtJuIZEFF8_B1Z0xsKiooqrMQhfiEH_Ys,1004
|
213
|
+
vellum/types/rejected_enum.py,sha256=ZatbMUdJos2j62CSK7lf2Pzv5xIh92XzRbzcsyc6NJg,122
|
214
|
+
vellum/types/rejected_execute_prompt_event.py,sha256=uNgeF59llPmwhgt7ey5PLpevV6v-qzv3faZdsaDEoL8,1216
|
215
|
+
vellum/types/rejected_execute_prompt_response.py,sha256=lZGnx2yJNaZa_kAZ0dztOCvqfQfPlCKbRLALu__py3o,1468
|
216
|
+
vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=l3tAFlDWBQKtkxPimYEpcQiKvcULMw3uuW1wcefdrQ0,1160
|
217
|
+
vellum/types/rejected_function_call.py,sha256=LeTe__cO3r7TqqiLRUDIoraetIMPbUZF52lDx3tTNEg,1095
|
218
|
+
vellum/types/rejected_prompt_execution_meta.py,sha256=qlkDcHDCoJM1e4S_Dm9pdB3Mqy-g4rDFWuWx6xO9ezY,1195
|
219
|
+
vellum/types/rejected_workflow_node_result_event.py,sha256=2HrFDp3H1sH4a03enG4E6HgWHp5w0yrs4kVYkxbJwfY,1350
|
220
|
+
vellum/types/sandbox_scenario.py,sha256=8uxTOne5AUFm61cTjI1-UysM0ZqTkozsM8G0Q2eqvZ8,1157
|
221
|
+
vellum/types/scenario_input.py,sha256=UqdiHUjPCcj-evU5jYL7TNdctXaslpvuNeps2mimslk,1166
|
222
|
+
vellum/types/scenario_input_request.py,sha256=Ir9rXTN4hmAAdW-CRR75V-gDi4ddebq-qXX5tEKkcnI,1195
|
223
|
+
vellum/types/scenario_input_type_enum.py,sha256=S16TuGQ_Ifge1QLKem_ZlHSsqr3_lfLGZpEAj2IYrQk,580
|
224
|
+
vellum/types/search_error_response.py,sha256=jblcOG0eLZE_Kopp6XgJ4LrwBl8jy4K15nM1Uj1WrxU,992
|
225
|
+
vellum/types/search_filters_request.py,sha256=gM7OigNuFdKB99Pj0eWDzvVxDBLOcBPbT2ELh16nYOU,1269
|
226
|
+
vellum/types/search_node_result.py,sha256=2MXpxQPSipcIOygRXzR5Rh25MyFMUBpBpH4wx64TOnA,1054
|
227
|
+
vellum/types/search_node_result_data.py,sha256=yAbYuTyv5DNuZad1CWwNC1omSDIL7rLJmiYCB7xg5cM,1197
|
228
|
+
vellum/types/search_request_options_request.py,sha256=U4-RGZIkh3nCCTyDbj_uj5eokYK0O6-gq38DVT0POQw,1667
|
229
|
+
vellum/types/search_response.py,sha256=OtQhiwbXJeTEq7p4GpzrLJ5zDyMBxT8hdJgmxxKZ6Ng,1101
|
230
|
+
vellum/types/search_result.py,sha256=f3PHorWnR4isfE1EWMTGKndgx2RIDsWFcQeGwQQ2SSY,1352
|
231
|
+
vellum/types/search_result_document.py,sha256=0l8HBaSnZyHROcvi1GZ3NgbmJVOVVnYznI2tGn6e7s4,1482
|
232
|
+
vellum/types/search_result_document_request.py,sha256=RUqnYY30Hb_o8wZnbs60Cpsj9XPmRARr8spemdXi0tA,1413
|
233
|
+
vellum/types/search_result_merging_request.py,sha256=cCK8J-1_MYsJvwx3RE0d87wgLzl0ghSnimJFeXYsf1o,1026
|
234
|
+
vellum/types/search_result_request.py,sha256=LuWDbyj0_c3--Rs0DtLWNBGOWewuYrXdOCtychRXZ_Q,1381
|
235
|
+
vellum/types/search_results_enum.py,sha256=qiQWwPnGtlWgG6JVCOAV8KzJarrhOeZrOAeb569grgA,133
|
236
|
+
vellum/types/search_results_variable_value.py,sha256=dYEMF-MTgeRHiYBTxCcu8T57IfQH_L9fAu14iSFE9DU,1007
|
237
|
+
vellum/types/search_weights_request.py,sha256=yQnHFURoecubAK_cqSGiQ43f_HlN7rUnkHUWv3f4kMs,1179
|
238
|
+
vellum/types/slim_deployment_read.py,sha256=qS1Op45EEEWqwu8HpWAckK6UytN2FR4HLxEdtVm4sjA,1798
|
239
|
+
vellum/types/slim_document.py,sha256=NPC2LC4Lc9jvTv1g8vh2Y9oDsrKJa7FQ1wfueNFpz2U,3005
|
240
|
+
vellum/types/slim_workflow_deployment.py,sha256=UDmBAo2hQZIjTGlvWu7fSDVqaJ_SsNJf8meBciINtv0,2143
|
241
|
+
vellum/types/streaming_enum.py,sha256=vp3VWBaIOEg9liRsrwFCVLat4UFE8jp7HMMPP0KQUYw,124
|
242
|
+
vellum/types/streaming_execute_prompt_event.py,sha256=aPQ9nooYw6KPItv-mupwmcsjHuMSt9vdc_YeeYlVngg,1442
|
243
|
+
vellum/types/streaming_prompt_execution_meta.py,sha256=FyBmEuoYRA0c6IztU_JJDbzXlR1ac5pWmxH1um_U7N4,1087
|
244
|
+
vellum/types/streaming_workflow_node_result_event.py,sha256=hNSSb5BzRocOCvxCZo9deEGWKXW03ItRtsmlFBLp72U,1440
|
245
|
+
vellum/types/string_chat_message_content.py,sha256=zSWrrWlIlT5zhgbpX7aRC1WCJ9zVs8g_imS47shNB_U,987
|
246
|
+
vellum/types/string_chat_message_content_request.py,sha256=U5vNnU-eCYCqDi0lS3ztF-Wd-VsxEXjXr44lRYMMO-I,994
|
247
|
+
vellum/types/string_enum.py,sha256=8uLrjmZyaGRDEf7Y6DpJF1e4abJct69wIoq6ZQX6F-s,118
|
248
|
+
vellum/types/string_input_request.py,sha256=rM-lsXjLIrSV2An8zp2ah8VITwxapR7oBR-aDbCdTjU,1080
|
249
|
+
vellum/types/string_variable_value.py,sha256=hO1_JkvUuI7kdVktPFrn8QRnEcf3VYdq9YXVtgyEnRw,938
|
250
|
+
vellum/types/submit_completion_actual_request.py,sha256=SodNVAFr-DaXBdWkyHbfiaIVFVd37jIDZvb5t4TWNeg,1867
|
251
|
+
vellum/types/submit_completion_actuals_error_response.py,sha256=BThaK5x5qRTkACz7GROykr10SU2meJJ-ni0jLhEGxo8,932
|
252
|
+
vellum/types/submit_workflow_execution_actual_request.py,sha256=zR5Di5a9GC2fchGC9qLEXGELitg3UxCoQUqeIyeyLDc,1487
|
253
|
+
vellum/types/subworkflow_enum.py,sha256=6Tvuegdga54mAY0ojP19x9HTbsjOm3gw4QrH_BpD4rY,128
|
254
|
+
vellum/types/subworkflow_node_result.py,sha256=JY_rLRybC_BBbT8ZSff4piZT7KjHR5hgjXelWFzgpUY,974
|
255
|
+
vellum/types/templating_node_array_result.py,sha256=SeuNykEYRaFys8tocrLwe8fa_aEZALSiz5R2eT0V4bM,1050
|
256
|
+
vellum/types/templating_node_chat_history_result.py,sha256=t5gt8yLDPgBtMWSImIZGte0S_0X5ptD70G_q7j4F3HI,1021
|
257
|
+
vellum/types/templating_node_error_result.py,sha256=1NuZtaw7psKry2-gWV8LL9U2L1Q5wveasMjkyPMNe7A,1002
|
258
|
+
vellum/types/templating_node_function_call_result.py,sha256=F4KVmHQ4XQ1K4JUviwSR3QnYu6uhzGNNOhRalmWUr7Q,1012
|
259
|
+
vellum/types/templating_node_json_result.py,sha256=1QTKybNlBsCcWngGAamxGa6paSSM8qDteUd-6M-8UT0,980
|
260
|
+
vellum/types/templating_node_number_result.py,sha256=rHGZK6llF5KH4nJ_BkDribbKFGH0Vpzv74vUuuvezMs,959
|
261
|
+
vellum/types/templating_node_result.py,sha256=_d0JBoSbuzxNPGRGgfaa5yVZ4O6cf9edUm4o-dYo3pg,1074
|
262
|
+
vellum/types/templating_node_result_data.py,sha256=Yi_KyTcBs4ZnBnR3oTP41GYNJor1IHi686jZVRO5xZY,1013
|
263
|
+
vellum/types/templating_node_result_output.py,sha256=hZ2wrr8s0yg_l204bvCBBV2o0xn2aRZevnhRdAQINM4,3246
|
264
|
+
vellum/types/templating_node_search_results_result.py,sha256=3jai82lyugKtMxwIqIZVtCMnG98Noo9qYgrD9ZLaFEs,1026
|
265
|
+
vellum/types/templating_node_string_result.py,sha256=yanjVI-WO-1LU1hsnDvJsRitq-VCv_X0Wrxjmjxi7g4,957
|
266
|
+
vellum/types/terminal_node_array_result.py,sha256=JZPG3EOrvGIMROfEDR5b9f31Ex4Q7TmopUYA1uUAgWc,1196
|
267
|
+
vellum/types/terminal_node_chat_history_result.py,sha256=IrHozgb5TCqDGPaCJmsFFKjzWXo2IrCibpm4g_LFiWk,1167
|
268
|
+
vellum/types/terminal_node_error_result.py,sha256=-AkLOh3pFRatpTgkKWENw-TuxhAe4nkLztMklWiUwoY,1148
|
269
|
+
vellum/types/terminal_node_function_call_result.py,sha256=C3sbGgUsmLPqYRXtgeEdRQg8SozBudFShgHgCET2gVM,1158
|
270
|
+
vellum/types/terminal_node_json_result.py,sha256=fbk5EdSM71NAwp6liUuQork26m6Aan7NP9t_QVivagA,1126
|
271
|
+
vellum/types/terminal_node_number_result.py,sha256=wPuCjDveyX8NCU0t6nfYMtg8VDOSH6E-pRdMLoyjuAA,1105
|
272
|
+
vellum/types/terminal_node_result.py,sha256=DJq5AUe2oOvGU4w27LjAkvPIbfDaDhhM8hpO0UP81eA,1064
|
273
|
+
vellum/types/terminal_node_result_data.py,sha256=i4Oa1itlpyFKDwXPAOtfu--vqyM6UG_T_qZnowU8bB4,1005
|
274
|
+
vellum/types/terminal_node_result_output.py,sha256=lKXaYst9-JuY0rk0tjDV4mD2s_G-7gZm5FTKbW9xYo8,3164
|
275
|
+
vellum/types/terminal_node_search_results_result.py,sha256=PZ-PsvMnI6_CdkbwfhN0KqwxcsBECoG5C3oZaSN84BU,1172
|
276
|
+
vellum/types/terminal_node_string_result.py,sha256=38fufuCtk8ifqcBqTxT9wT3B8eulWfYGPZGRHE3x4RE,1103
|
277
|
+
vellum/types/test_case_chat_history_variable_value.py,sha256=MyDknq8L3TUL5VsLD7bMrlYa9OMJf9GWgLpPDpJrPjs,1031
|
278
|
+
vellum/types/test_case_error_variable_value.py,sha256=sbrmxd-Jc2X-D4MaqOgXF2r1LFEOGhZy_PiH-eUFWzI,1012
|
279
|
+
vellum/types/test_case_json_variable_value.py,sha256=IR_WGLnW8QzAd-mIb6DhUUxz6T4UM4ffnC03LXN4t0M,990
|
280
|
+
vellum/types/test_case_number_variable_value.py,sha256=YrR7TllXXOJAJMInADf0FswIxYESxKWDrR3yTGSWTwA,969
|
281
|
+
vellum/types/test_case_search_results_variable_value.py,sha256=sjT-aoUzK0dJCi4FlSpYBQggoxkJXmeDkHagc6pSIj8,1036
|
282
|
+
vellum/types/test_case_string_variable_value.py,sha256=5RKbSlS_mQoiv70QJkLVqi1W3mgQLrMzd8isaWZQKgE,967
|
283
|
+
vellum/types/test_case_variable_value.py,sha256=bE_lqnjrZMYFedIdd8Dqt1jlZ1wLdeuhCviHrawELEQ,2423
|
284
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=dixH2anYonGi3INTDnCtQgQ1VLtSLIcsWOX-qpBhR1c,1427
|
285
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=h1KBU0bSZZ9qDeq4wEFLgBwXC9aLSBRaxbvadjKQaD0,1279
|
286
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=XwWET1EsPwKszS3r5h2m5ZMxH5CyryBBtwQ7R5sbBio,1286
|
287
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=yTK-3MlF81q0NiQ0SO7VC2dnjaVX8fBDlJUqQzGArUg,1465
|
288
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py,sha256=P49aTblFExVUA90soNhC-_S0q8xAHGCWOnm9uRiqgp0,174
|
289
|
+
vellum/types/test_suite_run_exec_config.py,sha256=I5MlYJBynyPouRDWe3pgsyIuyAx-CSiedLyF7UQEQXY,1092
|
290
|
+
vellum/types/test_suite_run_exec_config_request.py,sha256=hspIHnkklKLBg58Rq2uWEjd04o_zLiBcJIzGHIATrso,1171
|
291
|
+
vellum/types/test_suite_run_execution.py,sha256=Gj0jFE9-VZDQCxdzM9xe5-r3XX726WUgaVwoAxZQZ84,1215
|
292
|
+
vellum/types/test_suite_run_execution_chat_history_output.py,sha256=DG5h0SGOAVyZleApagKZzDJNvea87IVNQIW400CfZLI,1044
|
293
|
+
vellum/types/test_suite_run_execution_error_output.py,sha256=dkiaFHf4f3u0wujcQ66317uk8BbhyX7HquHCkwHo97w,1025
|
294
|
+
vellum/types/test_suite_run_execution_json_output.py,sha256=0tvtY0Bt34gqK3idM629NS3Iq-QA-FPQ6UfchE2p52o,1003
|
295
|
+
vellum/types/test_suite_run_execution_metric_result.py,sha256=B-1X895FMMmVgAeIGcWd3nMjmo81I6wHkorRguL6jtU,1050
|
296
|
+
vellum/types/test_suite_run_execution_number_output.py,sha256=Lh4xtUqkVB-EwbQ-leoUud96zzlbW9IoM7zWxHVsMqQ,982
|
297
|
+
vellum/types/test_suite_run_execution_output.py,sha256=vOm3PiblQDdybmDUzP5KUzgkZxSrk31MBmJog-iW3Pk,2615
|
298
|
+
vellum/types/test_suite_run_execution_search_results_output.py,sha256=c18YX3w_BVYpGVAI73ZpJ2fw8T3hUNA251iGnok5n70,1049
|
299
|
+
vellum/types/test_suite_run_execution_string_output.py,sha256=lRjauYmNQGPvzxU2u-NAFfKXUhmf3hGQdFr7vQu85hM,980
|
300
|
+
vellum/types/test_suite_run_metric_error_output.py,sha256=N0ZRTO1QV4Bobrh9u1-k5qBMiFh8CF2NLiElGA94oIo,1062
|
301
|
+
vellum/types/test_suite_run_metric_error_output_type_enum.py,sha256=ZPKy0jkcgfuMhI2hG_3UUcw2sYH1BlV_ze8Axlq5nIU,144
|
302
|
+
vellum/types/test_suite_run_metric_number_output.py,sha256=vedeqnSpDl7Y23DdgAlcl16Gxd1WlNo4m4PQ2SGI8Tk,1020
|
303
|
+
vellum/types/test_suite_run_metric_number_output_type_enum.py,sha256=sXoES0zoliicpd66SwlF6xsVUjWSezGNkuxp6CthO2s,146
|
304
|
+
vellum/types/test_suite_run_metric_output.py,sha256=O_v0dGiAnXXRc_MpEZT3La5p6iBPPRNfNWJesGIHe9M,907
|
305
|
+
vellum/types/test_suite_run_read.py,sha256=bb6kgQaMQpkshETe_dXiMNVCx3r05t12ajaiqTAnvHg,1551
|
306
|
+
vellum/types/test_suite_run_state.py,sha256=myD2yLYpEiTUK4AyRZwl3MrXOKYkDA8k4fpqnDnALAY,1111
|
307
|
+
vellum/types/test_suite_run_test_suite.py,sha256=jsSjV803xCQ4zQ29MCvCM06rH1PCviCZ7G8KzR-LiOA,953
|
308
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=BUdgfSWQQPGIWI4VsvX5paPr7TrVv3jju83sgm-Dyyw,1421
|
309
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=GTST-9RaijidckGcwFlyr1_NerJ7DiFWIElYQve1eJo,1292
|
310
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=LylFbBcPhrzmSsCOEVol_RFRbTu2suklEjzeyHADcE0,1299
|
311
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=9xB7kLNHRdPmDhm2rfAeiziQWXfMCjs4de4n8G--M_E,1459
|
312
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py,sha256=JMN3-aK8SWJzTli6c-j9xmHSYVwGND1PaZgGzwwkMjo,170
|
313
|
+
vellum/types/test_suite_test_case.py,sha256=kbOsm0Au7v19uxnBVN3sy6XM4ew0AAz5wX0hUVv8WsI,1143
|
314
|
+
vellum/types/upload_document_error_response.py,sha256=XssDnlQu3fq5cVSfJApmL-cWxPR4bbSsUDDawdNb6S4,923
|
315
|
+
vellum/types/upload_document_response.py,sha256=MAJuA5_KLO5JlL1E0JIUysdPDSf9yAVovN-EjSOGN9k,1000
|
316
|
+
vellum/types/vellum_error.py,sha256=6-p3cBzdDPh-vZuJ9HWYCpBrP3fCaEtMZTSTLPEs-BQ,994
|
317
|
+
vellum/types/vellum_error_code_enum.py,sha256=YtfS3VEJKTJTBwNyirfkk4cmlH03L7C9qZ-hqxJDkrQ,1221
|
318
|
+
vellum/types/vellum_error_request.py,sha256=YCEPo0FhrnHLPYO9PYsVW_Vwmf4rlvP-fA765XEI288,1001
|
319
|
+
vellum/types/vellum_image.py,sha256=XheZImmoOwBpygzaXA2K-vJZEPxmbNk50YsPEeMpmuU,971
|
320
|
+
vellum/types/vellum_image_request.py,sha256=UuVGFYzTAqh9hbQTON5eDW4EPfNBj8kjmPeTXOcWCTE,978
|
321
|
+
vellum/types/vellum_variable.py,sha256=4Q0i_D1h2nk6uQWU0nBM5A5D0rSVEhmrgHjUBwF_XaY,1001
|
322
|
+
vellum/types/vellum_variable_type.py,sha256=noEyyIxh9AutFdSnL9hdkngSWSEzF_xHRJVte19RX_E,1855
|
323
|
+
vellum/types/workflow_deployment_read.py,sha256=_L-cTTUivzL6HI82_dvWLtVcBYISXhJrGaJL5MIILiY,2149
|
324
|
+
vellum/types/workflow_event_error.py,sha256=R8TPgbCmn4GXzza8yjQSoZ2KykACPcqxxIXQz0xB814,1038
|
325
|
+
vellum/types/workflow_execution_actual_chat_history_request.py,sha256=2rqAxRONmY3GD4LC4xDuW65dhyWXnOPNdvYfFMDW7sk,2080
|
326
|
+
vellum/types/workflow_execution_actual_json_request.py,sha256=UQc_iDw_8JVbt6v_sbDutlOFJ8NPj3BtsUjDc4aDFLY,2017
|
327
|
+
vellum/types/workflow_execution_actual_string_request.py,sha256=sKUDVUCyH0zhK4pq6hokGOoc4zLt3aSAzd74giB5dsA,1994
|
328
|
+
vellum/types/workflow_execution_event_error_code.py,sha256=1_DYokaHexD0qZFdcAlSwdWFHvWPSfohpg2H3ruWkIQ,2449
|
329
|
+
vellum/types/workflow_execution_event_type.py,sha256=3wBRqajwUjytX6akx2zXkWxUB-iqB7xLIK4kAKNISPk,567
|
330
|
+
vellum/types/workflow_execution_node_result_event.py,sha256=GzKGymHl5D_zDa_O-JcROLaCtL9cgLRMERh46Rvs6zU,1196
|
331
|
+
vellum/types/workflow_execution_workflow_result_event.py,sha256=C0EvLdsD3Hj4QP5ldC4EID1JrGdPGQGyEOrEEfbJ7IY,1191
|
332
|
+
vellum/types/workflow_node_result_data.py,sha256=fMi04ZIPmnjnPyMTKAXeilxtFdLoZ3toWax9XPzCQ_o,2966
|
333
|
+
vellum/types/workflow_node_result_event.py,sha256=0tSTva8wAxMKSGWrbSRADqGcbR_A6FMSR7xkYLP9rZg,1745
|
334
|
+
vellum/types/workflow_node_result_event_state.py,sha256=PwWxuO6cqCPQOoH1woYEahxr3za7yEr2YiS0zuICj4I,1035
|
335
|
+
vellum/types/workflow_output.py,sha256=iSz1VQAm0e4gJcJlB_HG6jI9P4gRx4nQhMzoTgzG4lM,3212
|
336
|
+
vellum/types/workflow_output_array.py,sha256=YuCb-QkjZWnk85WewsCbW4kkM1uR75HuAaAGGAK9SjA,1208
|
337
|
+
vellum/types/workflow_output_chat_history.py,sha256=ugc5hgq6Oqqnkp7g3M9DzrNPat2XVqu1pLme2Wjbx3Y,1185
|
338
|
+
vellum/types/workflow_output_error.py,sha256=f1P-CNnVS3TbWGZy3qAa8caPSrmKi2EKaEENZ5Ca2-g,1160
|
339
|
+
vellum/types/workflow_output_function_call.py,sha256=FDnHzFynyzKbTlTa6CDSg937CIBMu2qIUvLS9G9aWW8,1177
|
340
|
+
vellum/types/workflow_output_image.py,sha256=sipBUKBa2-w-Yts2ChKrh1BzoiI4FS6RrPyB3TqVcoY,1160
|
341
|
+
vellum/types/workflow_output_json.py,sha256=w6t9PCF0bgoJvPkgQeEzrSrnN0mFFUjlSf2MgnxrsUg,1136
|
342
|
+
vellum/types/workflow_output_number.py,sha256=8FmK8e6blabr7x_zS_CAQfV-g4TKHPrWni7CX_GzwAk,1117
|
343
|
+
vellum/types/workflow_output_search_results.py,sha256=b96-N69lQhdW1_V7pY_7lrwvAzaygYKzjgBP01VsyqQ,1192
|
344
|
+
vellum/types/workflow_output_string.py,sha256=MUfzjHkGVyo4YiZTN6GF8hTnOU31t_peNx__EGWX30U,1115
|
345
|
+
vellum/types/workflow_request_chat_history_input_request.py,sha256=U1g0q-HIt3DPvv0a317pr9lazEzgoxVbgSg-qYsnCQY,1191
|
346
|
+
vellum/types/workflow_request_input_request.py,sha256=UgAzjnJR5zJSPZhD_E9h3FaV738ebLNIhpI_SJBgQ0Q,1772
|
347
|
+
vellum/types/workflow_request_json_input_request.py,sha256=FjUMWcpqu2H-T-Y2h3rezicAjFmN-IDynT_QqxB3bDw,1120
|
348
|
+
vellum/types/workflow_request_number_input_request.py,sha256=bD9IZtl2A7uOA4dvYUpRcc61Hq6NEg44jxB2VI5ue3U,1101
|
349
|
+
vellum/types/workflow_request_string_input_request.py,sha256=qWj5ABDQILLi01hqZLnfF-ADzbGHnlMXLOCLogO3q3I,1099
|
350
|
+
vellum/types/workflow_result_event.py,sha256=6GjOORhpH9duWfSFHZYMGXUZEK_vDGL6SHK_BPnp92g,1532
|
351
|
+
vellum/types/workflow_result_event_output_data.py,sha256=AGLgUDif9Hw1iRcn0j1boSju6vUEskSzRJIervPe_0c,3529
|
352
|
+
vellum/types/workflow_result_event_output_data_array.py,sha256=Xp63irruDLwAPYsvZzhvVpgc-YKGTq3T2GG2BEO6nX8,1477
|
353
|
+
vellum/types/workflow_result_event_output_data_chat_history.py,sha256=RNOtmyW-5-XlheLrZPG926gZVOP1aaIC_AzSC55aFEY,1454
|
354
|
+
vellum/types/workflow_result_event_output_data_error.py,sha256=fZnVUVLx5dB_PUU4tPKwYs-MMdl0AoLCZO_mnOlfuq4,1429
|
355
|
+
vellum/types/workflow_result_event_output_data_function_call.py,sha256=cf0Hz3vnyYZYfrF539VUID5EbvmZpeVnxg80EJP3cz8,1446
|
356
|
+
vellum/types/workflow_result_event_output_data_json.py,sha256=a7eVT0wVwPX4_W02gPDf6OCJz1Hqep7UWv8u8gIC1to,1405
|
357
|
+
vellum/types/workflow_result_event_output_data_number.py,sha256=dTml0gtsQgf3lrqMDidzMwMAhH8rfetPRlZr8epZRTE,1386
|
358
|
+
vellum/types/workflow_result_event_output_data_search_results.py,sha256=wYc76-DWXqr5LMp8I2P9Y15rWlPGAB6LBYKHW07MQIY,1461
|
359
|
+
vellum/types/workflow_result_event_output_data_string.py,sha256=7SR46tKt-I_cGd_eVeKU8ymQ7R3vKkA_dFHCgAU1GcQ,1533
|
360
|
+
vellum/types/workflow_stream_event.py,sha256=KA6Bkk_XA6AIPWR-1vKnwF1A8l_Bm5y0arQCWWWRpsk,911
|
361
|
+
vellum/version.py,sha256=neLt8HBHHUtDF9M5fsyUzHT-pKooEPvceaLDqqIGb0s,77
|
362
|
+
vellum_ai-0.3.16.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
363
|
+
vellum_ai-0.3.16.dist-info/METADATA,sha256=-YukMCQZIEozwaLF0_H6TvMfen_8_7a3e4tnmbq0ZWA,3513
|
364
|
+
vellum_ai-0.3.16.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
365
|
+
vellum_ai-0.3.16.dist-info/RECORD,,
|