vellum-ai 0.7.2__py3-none-any.whl → 0.7.5__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- vellum/__init__.py +146 -94
- vellum/client.py +1051 -1097
- vellum/core/__init__.py +4 -1
- vellum/core/client_wrapper.py +7 -3
- vellum/core/http_client.py +365 -20
- vellum/core/jsonable_encoder.py +3 -0
- vellum/core/pydantic_utilities.py +16 -0
- vellum/core/query_encoder.py +33 -0
- vellum/core/remove_none_from_dict.py +2 -2
- vellum/core/request_options.py +2 -2
- vellum/resources/__init__.py +2 -0
- vellum/resources/deployments/client.py +354 -371
- vellum/resources/document_indexes/client.py +542 -610
- vellum/resources/documents/client.py +327 -399
- vellum/resources/folder_entities/client.py +56 -72
- vellum/{types/map_enum.py → resources/ml_models/__init__.py} +0 -3
- vellum/resources/ml_models/client.py +837 -0
- vellum/resources/sandboxes/client.py +204 -242
- vellum/resources/test_suite_runs/client.py +183 -213
- vellum/resources/test_suites/client.py +307 -311
- vellum/resources/workflow_deployments/client.py +230 -268
- vellum/resources/workflow_sandboxes/client.py +82 -96
- vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz +0 -0
- vellum/terraform/data_vellum_document_index/__init__.py +10 -10
- vellum/terraform/document_index/__init__.py +17 -17
- vellum/terraform/provider/__init__.py +57 -12
- vellum/terraform/versions.json +1 -1
- vellum/types/__init__.py +152 -96
- vellum/types/api_node_result.py +7 -3
- vellum/types/api_node_result_data.py +7 -3
- vellum/types/array_chat_message_content.py +7 -3
- vellum/types/array_chat_message_content_item.py +53 -12
- vellum/types/array_chat_message_content_item_request.py +53 -12
- vellum/types/array_chat_message_content_request.py +7 -3
- vellum/types/array_parameter_config.py +50 -0
- vellum/types/array_parameter_config_request.py +50 -0
- vellum/types/array_variable_value_item.py +102 -24
- vellum/types/array_vellum_value_item.py +102 -24
- vellum/types/array_vellum_value_item_request.py +102 -24
- vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py +7 -3
- vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py +7 -3
- vellum/types/boolean_parameter_config.py +35 -0
- vellum/types/boolean_parameter_config_request.py +35 -0
- vellum/types/chat_history_input_request.py +7 -3
- vellum/types/chat_message.py +7 -3
- vellum/types/chat_message_content.py +70 -16
- vellum/types/chat_message_content_request.py +70 -16
- vellum/types/chat_message_request.py +7 -3
- vellum/types/code_execution_node_array_result.py +7 -3
- vellum/types/code_execution_node_chat_history_result.py +7 -3
- vellum/types/code_execution_node_error_result.py +7 -3
- vellum/types/code_execution_node_function_call_result.py +7 -3
- vellum/types/code_execution_node_json_result.py +7 -3
- vellum/types/code_execution_node_number_result.py +7 -3
- vellum/types/code_execution_node_result.py +7 -3
- vellum/types/code_execution_node_result_data.py +7 -3
- vellum/types/code_execution_node_result_output.py +144 -32
- vellum/types/code_execution_node_search_results_result.py +7 -3
- vellum/types/code_execution_node_string_result.py +7 -3
- vellum/types/compile_prompt_deployment_expand_meta_request.py +42 -0
- vellum/types/compile_prompt_meta.py +35 -0
- vellum/types/conditional_node_result.py +7 -3
- vellum/types/conditional_node_result_data.py +7 -3
- vellum/types/const_parameter_config.py +35 -0
- vellum/types/const_parameter_config_request.py +35 -0
- vellum/types/create_test_suite_test_case_request.py +7 -3
- vellum/types/deployment_provider_payload_response.py +9 -3
- vellum/types/deployment_read.py +12 -3
- vellum/types/deployment_release_tag_deployment_history_item.py +7 -3
- vellum/types/deployment_release_tag_read.py +7 -3
- vellum/types/document_document_to_document_index.py +7 -3
- vellum/types/document_index_chunking.py +54 -12
- vellum/types/document_index_chunking_request.py +54 -12
- vellum/types/document_index_indexing_config.py +7 -3
- vellum/types/document_index_indexing_config_request.py +7 -3
- vellum/types/document_index_read.py +7 -3
- vellum/types/document_read.py +7 -3
- vellum/types/enriched_normalized_completion.py +7 -3
- vellum/types/error_variable_value.py +7 -3
- vellum/types/error_vellum_value.py +7 -3
- vellum/types/error_vellum_value_request.py +7 -3
- vellum/types/execute_prompt_event.py +82 -16
- vellum/types/execute_prompt_response.py +44 -8
- vellum/types/execute_workflow_response.py +7 -3
- vellum/types/execute_workflow_workflow_result_event.py +41 -8
- vellum/types/execution_array_vellum_value.py +7 -3
- vellum/types/execution_chat_history_vellum_value.py +7 -3
- vellum/types/execution_error_vellum_value.py +7 -3
- vellum/types/execution_function_call_vellum_value.py +7 -3
- vellum/types/execution_json_vellum_value.py +7 -3
- vellum/types/execution_number_vellum_value.py +7 -3
- vellum/types/execution_search_results_vellum_value.py +7 -3
- vellum/types/execution_string_vellum_value.py +7 -3
- vellum/types/execution_vellum_value.py +152 -32
- vellum/types/external_test_case_execution.py +7 -3
- vellum/types/external_test_case_execution_request.py +7 -3
- vellum/types/fulfilled_execute_prompt_event.py +7 -3
- vellum/types/fulfilled_execute_prompt_response.py +7 -3
- vellum/types/fulfilled_execute_workflow_workflow_result_event.py +7 -3
- vellum/types/fulfilled_prompt_execution_meta.py +7 -3
- vellum/types/fulfilled_workflow_node_result_event.py +7 -3
- vellum/types/function_call.py +7 -3
- vellum/types/function_call_chat_message_content.py +7 -3
- vellum/types/function_call_chat_message_content_request.py +7 -3
- vellum/types/function_call_chat_message_content_value.py +7 -3
- vellum/types/function_call_chat_message_content_value_request.py +7 -3
- vellum/types/function_call_request.py +7 -3
- vellum/types/function_call_variable_value.py +7 -3
- vellum/types/function_call_vellum_value.py +7 -3
- vellum/types/function_call_vellum_value_request.py +7 -3
- vellum/types/generate_options_request.py +7 -3
- vellum/types/generate_request.py +7 -3
- vellum/types/generate_result.py +7 -3
- vellum/types/generate_result_data.py +7 -3
- vellum/types/generate_result_error.py +7 -3
- vellum/types/generate_stream_response.py +7 -3
- vellum/types/generate_stream_result.py +7 -3
- vellum/types/generate_stream_result_data.py +7 -3
- vellum/types/hkunlp_instructor_xl_vectorizer.py +7 -3
- vellum/types/hkunlp_instructor_xl_vectorizer_request.py +7 -3
- vellum/types/hosted_by_enum.py +26 -0
- vellum/types/hugging_face_tokenizer_config.py +34 -0
- vellum/types/hugging_face_tokenizer_config_request.py +34 -0
- vellum/types/image_chat_message_content.py +7 -3
- vellum/types/image_chat_message_content_request.py +7 -3
- vellum/types/image_variable_value.py +7 -3
- vellum/types/image_vellum_value.py +7 -3
- vellum/types/image_vellum_value_request.py +7 -3
- vellum/types/indexing_config_vectorizer.py +117 -36
- vellum/types/indexing_config_vectorizer_request.py +117 -36
- vellum/types/initiated_execute_prompt_event.py +7 -3
- vellum/types/initiated_prompt_execution_meta.py +7 -3
- vellum/types/initiated_workflow_node_result_event.py +7 -3
- vellum/types/instructor_vectorizer_config.py +7 -3
- vellum/types/instructor_vectorizer_config_request.py +7 -3
- vellum/types/integer_parameter_config.py +39 -0
- vellum/types/integer_parameter_config_request.py +39 -0
- vellum/types/json_input_request.py +7 -3
- vellum/types/json_variable_value.py +7 -3
- vellum/types/json_vellum_value.py +7 -3
- vellum/types/json_vellum_value_request.py +7 -3
- vellum/types/map_node_result.py +7 -3
- vellum/types/map_node_result_data.py +7 -3
- vellum/types/merge_node_result.py +7 -3
- vellum/types/merge_node_result_data.py +7 -3
- vellum/types/metadata_filter_config_request.py +7 -3
- vellum/types/metadata_filter_rule_request.py +7 -3
- vellum/types/metric_node_result.py +7 -3
- vellum/types/{execute_workflow_stream_error_response.py → ml_model_build_config.py} +9 -8
- vellum/types/{execute_prompt_api_error_response.py → ml_model_build_config_request.py} +9 -8
- vellum/types/ml_model_developer.py +27 -0
- vellum/types/ml_model_developer_enum_value_label.py +31 -0
- vellum/types/ml_model_display_config_labelled.py +33 -0
- vellum/types/ml_model_display_config_request.py +33 -0
- vellum/types/ml_model_display_tag.py +7 -0
- vellum/types/ml_model_display_tag_enum_value_label.py +31 -0
- vellum/types/ml_model_exec_config.py +40 -0
- vellum/types/ml_model_exec_config_request.py +40 -0
- vellum/types/ml_model_family.py +29 -0
- vellum/types/ml_model_family_enum_value_label.py +31 -0
- vellum/types/ml_model_feature.py +18 -0
- vellum/types/ml_model_parameter_config.py +42 -0
- vellum/types/ml_model_parameter_config_request.py +42 -0
- vellum/types/ml_model_read.py +108 -0
- vellum/types/ml_model_request_authorization_config.py +30 -0
- vellum/types/ml_model_request_authorization_config_request.py +30 -0
- vellum/types/ml_model_request_authorization_config_type_enum.py +5 -0
- vellum/types/ml_model_request_config.py +32 -0
- vellum/types/ml_model_request_config_request.py +32 -0
- vellum/types/ml_model_response_config.py +31 -0
- vellum/types/ml_model_response_config_request.py +31 -0
- vellum/types/ml_model_tokenizer_config.py +59 -0
- vellum/types/ml_model_tokenizer_config_request.py +61 -0
- vellum/types/ml_model_usage.py +7 -3
- vellum/types/named_scenario_input_chat_history_variable_value_request.py +7 -3
- vellum/types/named_scenario_input_request.py +38 -8
- vellum/types/named_scenario_input_string_variable_value_request.py +7 -3
- vellum/types/named_test_case_array_variable_value.py +7 -3
- vellum/types/named_test_case_array_variable_value_request.py +7 -3
- vellum/types/named_test_case_chat_history_variable_value.py +7 -3
- vellum/types/named_test_case_chat_history_variable_value_request.py +7 -3
- vellum/types/named_test_case_error_variable_value.py +7 -3
- vellum/types/named_test_case_error_variable_value_request.py +7 -3
- vellum/types/named_test_case_function_call_variable_value.py +7 -3
- vellum/types/named_test_case_function_call_variable_value_request.py +7 -3
- vellum/types/named_test_case_json_variable_value.py +7 -3
- vellum/types/named_test_case_json_variable_value_request.py +7 -3
- vellum/types/named_test_case_number_variable_value.py +7 -3
- vellum/types/named_test_case_number_variable_value_request.py +7 -3
- vellum/types/named_test_case_search_results_variable_value.py +7 -3
- vellum/types/named_test_case_search_results_variable_value_request.py +7 -3
- vellum/types/named_test_case_string_variable_value.py +7 -3
- vellum/types/named_test_case_string_variable_value_request.py +7 -3
- vellum/types/named_test_case_variable_value.py +144 -32
- vellum/types/named_test_case_variable_value_request.py +144 -32
- vellum/types/node_input_compiled_array_value.py +7 -3
- vellum/types/node_input_compiled_chat_history_value.py +7 -3
- vellum/types/node_input_compiled_error_value.py +7 -3
- vellum/types/node_input_compiled_function_call.py +7 -3
- vellum/types/node_input_compiled_json_value.py +7 -3
- vellum/types/node_input_compiled_number_value.py +7 -3
- vellum/types/node_input_compiled_search_results_value.py +7 -3
- vellum/types/node_input_compiled_string_value.py +7 -3
- vellum/types/node_input_variable_compiled_value.py +152 -32
- vellum/types/node_output_compiled_array_value.py +7 -3
- vellum/types/node_output_compiled_chat_history_value.py +7 -3
- vellum/types/node_output_compiled_error_value.py +7 -3
- vellum/types/node_output_compiled_function_call_value.py +7 -3
- vellum/types/node_output_compiled_json_value.py +7 -3
- vellum/types/node_output_compiled_number_value.py +7 -3
- vellum/types/node_output_compiled_search_results_value.py +7 -3
- vellum/types/node_output_compiled_string_value.py +7 -3
- vellum/types/node_output_compiled_value.py +153 -32
- vellum/types/normalized_log_probs.py +7 -3
- vellum/types/normalized_token_log_probs.py +7 -3
- vellum/types/number_parameter_config.py +40 -0
- vellum/types/number_parameter_config_request.py +40 -0
- vellum/types/number_variable_value.py +7 -3
- vellum/types/number_vellum_value.py +7 -3
- vellum/types/number_vellum_value_request.py +7 -3
- vellum/types/object_parameter_config.py +49 -0
- vellum/types/object_parameter_config_request.py +49 -0
- vellum/types/one_of_parameter_config.py +44 -0
- vellum/types/one_of_parameter_config_request.py +44 -0
- vellum/types/open_ai_vectorizer_config.py +7 -3
- vellum/types/open_ai_vectorizer_config_request.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_large.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_large_request.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_small.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_small_request.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_ada_002.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_ada_002_request.py +7 -3
- vellum/types/paginated_document_index_read_list.py +7 -3
- vellum/types/paginated_ml_model_read_list.py +33 -0
- vellum/types/paginated_slim_deployment_read_list.py +7 -3
- vellum/types/paginated_slim_document_list.py +7 -3
- vellum/types/paginated_slim_workflow_deployment_list.py +7 -3
- vellum/types/paginated_test_suite_run_execution_list.py +7 -3
- vellum/types/paginated_test_suite_test_case_list.py +7 -3
- vellum/types/parameter_config.py +251 -0
- vellum/types/parameter_config_request.py +251 -0
- vellum/types/pdf_search_result_meta_source.py +7 -3
- vellum/types/pdf_search_result_meta_source_request.py +7 -3
- vellum/types/prompt_deployment_expand_meta_request_request.py +7 -3
- vellum/types/prompt_deployment_input_request.py +55 -12
- vellum/types/prompt_execution_meta.py +7 -3
- vellum/types/prompt_node_execution_meta.py +7 -3
- vellum/types/prompt_node_result.py +7 -3
- vellum/types/prompt_node_result_data.py +7 -3
- vellum/types/prompt_output.py +69 -16
- vellum/types/raw_prompt_execution_overrides_request.py +7 -3
- vellum/types/reducto_chunker_config.py +7 -3
- vellum/types/reducto_chunker_config_request.py +7 -3
- vellum/types/reducto_chunking.py +7 -3
- vellum/types/reducto_chunking_request.py +7 -3
- vellum/types/rejected_execute_prompt_event.py +7 -3
- vellum/types/rejected_execute_prompt_response.py +7 -3
- vellum/types/rejected_execute_workflow_workflow_result_event.py +7 -3
- vellum/types/rejected_prompt_execution_meta.py +7 -3
- vellum/types/rejected_workflow_node_result_event.py +7 -3
- vellum/types/replace_test_suite_test_case_request.py +7 -3
- vellum/types/sandbox_scenario.py +7 -3
- vellum/types/scenario_input.py +38 -8
- vellum/types/scenario_input_chat_history_variable_value.py +7 -3
- vellum/types/scenario_input_string_variable_value.py +7 -3
- vellum/types/search_filters_request.py +7 -3
- vellum/types/search_node_result.py +7 -3
- vellum/types/search_node_result_data.py +7 -3
- vellum/types/search_request_options_request.py +7 -3
- vellum/types/search_response.py +7 -3
- vellum/types/search_result.py +7 -3
- vellum/types/search_result_document.py +7 -3
- vellum/types/search_result_document_request.py +7 -3
- vellum/types/search_result_merging_request.py +7 -3
- vellum/types/search_result_meta.py +7 -3
- vellum/types/search_result_meta_request.py +7 -3
- vellum/types/search_result_meta_source.py +21 -5
- vellum/types/search_result_meta_source_request.py +21 -5
- vellum/types/search_result_request.py +7 -3
- vellum/types/search_weights_request.py +7 -3
- vellum/types/sentence_chunker_config.py +7 -3
- vellum/types/sentence_chunker_config_request.py +7 -3
- vellum/types/sentence_chunking.py +7 -3
- vellum/types/sentence_chunking_request.py +7 -3
- vellum/types/slim_deployment_read.py +11 -3
- vellum/types/slim_document.py +7 -3
- vellum/types/slim_workflow_deployment.py +12 -3
- vellum/types/streaming_execute_prompt_event.py +7 -3
- vellum/types/streaming_prompt_execution_meta.py +7 -3
- vellum/types/streaming_workflow_node_result_event.py +7 -3
- vellum/types/string_chat_message_content.py +7 -3
- vellum/types/string_chat_message_content_request.py +7 -3
- vellum/types/string_input_request.py +7 -3
- vellum/types/string_parameter_config.py +39 -0
- vellum/types/string_parameter_config_request.py +39 -0
- vellum/types/string_variable_value.py +7 -3
- vellum/types/string_vellum_value.py +7 -3
- vellum/types/string_vellum_value_request.py +7 -3
- vellum/types/submit_completion_actual_request.py +7 -3
- vellum/types/submit_workflow_execution_actual_request.py +67 -12
- vellum/types/subworkflow_node_result.py +7 -3
- vellum/types/subworkflow_node_result_data.py +7 -3
- vellum/types/templating_node_array_result.py +7 -3
- vellum/types/templating_node_chat_history_result.py +7 -3
- vellum/types/templating_node_error_result.py +7 -3
- vellum/types/templating_node_function_call_result.py +7 -3
- vellum/types/templating_node_json_result.py +7 -3
- vellum/types/templating_node_number_result.py +7 -3
- vellum/types/templating_node_result.py +7 -3
- vellum/types/templating_node_result_data.py +7 -3
- vellum/types/templating_node_result_output.py +144 -32
- vellum/types/templating_node_search_results_result.py +7 -3
- vellum/types/templating_node_string_result.py +7 -3
- vellum/types/terminal_node_array_result.py +7 -3
- vellum/types/terminal_node_chat_history_result.py +7 -3
- vellum/types/terminal_node_error_result.py +7 -3
- vellum/types/terminal_node_function_call_result.py +7 -3
- vellum/types/terminal_node_json_result.py +7 -3
- vellum/types/terminal_node_number_result.py +7 -3
- vellum/types/terminal_node_result.py +7 -3
- vellum/types/terminal_node_result_data.py +7 -3
- vellum/types/terminal_node_result_output.py +152 -32
- vellum/types/terminal_node_search_results_result.py +7 -3
- vellum/types/terminal_node_string_result.py +7 -3
- vellum/types/test_case_array_variable_value.py +7 -3
- vellum/types/test_case_chat_history_variable_value.py +7 -3
- vellum/types/test_case_error_variable_value.py +7 -3
- vellum/types/test_case_function_call_variable_value.py +7 -3
- vellum/types/test_case_json_variable_value.py +8 -4
- vellum/types/test_case_number_variable_value.py +7 -3
- vellum/types/test_case_search_results_variable_value.py +7 -3
- vellum/types/test_case_string_variable_value.py +7 -3
- vellum/types/test_case_variable_value.py +152 -32
- vellum/types/test_suite_run_deployment_release_tag_exec_config.py +7 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py +7 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +7 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py +7 -3
- vellum/types/test_suite_run_exec_config.py +57 -12
- vellum/types/test_suite_run_exec_config_request.py +61 -12
- vellum/types/test_suite_run_execution.py +7 -3
- vellum/types/test_suite_run_execution_array_output.py +7 -3
- vellum/types/test_suite_run_execution_chat_history_output.py +7 -3
- vellum/types/test_suite_run_execution_error_output.py +7 -3
- vellum/types/test_suite_run_execution_function_call_output.py +7 -3
- vellum/types/test_suite_run_execution_json_output.py +7 -3
- vellum/types/test_suite_run_execution_metric_definition.py +7 -3
- vellum/types/test_suite_run_execution_metric_result.py +7 -3
- vellum/types/test_suite_run_execution_number_output.py +7 -3
- vellum/types/test_suite_run_execution_output.py +152 -32
- vellum/types/test_suite_run_execution_search_results_output.py +7 -3
- vellum/types/test_suite_run_execution_string_output.py +7 -3
- vellum/types/test_suite_run_external_exec_config.py +7 -3
- vellum/types/test_suite_run_external_exec_config_data.py +7 -3
- vellum/types/test_suite_run_external_exec_config_data_request.py +7 -3
- vellum/types/test_suite_run_external_exec_config_request.py +7 -3
- vellum/types/test_suite_run_metric_error_output.py +7 -3
- vellum/types/test_suite_run_metric_number_output.py +7 -3
- vellum/types/test_suite_run_metric_output.py +55 -12
- vellum/types/test_suite_run_metric_string_output.py +7 -3
- vellum/types/test_suite_run_read.py +7 -3
- vellum/types/test_suite_run_test_suite.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py +7 -3
- vellum/types/test_suite_test_case.py +7 -3
- vellum/types/test_suite_test_case_bulk_operation_request.py +75 -16
- vellum/types/test_suite_test_case_bulk_result.py +74 -16
- vellum/types/test_suite_test_case_create_bulk_operation_request.py +7 -3
- vellum/types/test_suite_test_case_created_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_created_bulk_result_data.py +7 -3
- vellum/types/test_suite_test_case_delete_bulk_operation_data_request.py +7 -3
- vellum/types/test_suite_test_case_delete_bulk_operation_request.py +7 -3
- vellum/types/test_suite_test_case_deleted_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_deleted_bulk_result_data.py +7 -3
- vellum/types/test_suite_test_case_rejected_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_replace_bulk_operation_request.py +7 -3
- vellum/types/test_suite_test_case_replaced_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_replaced_bulk_result_data.py +7 -3
- vellum/types/test_suite_test_case_upsert_bulk_operation_request.py +7 -3
- vellum/types/{execute_workflow_error_response.py → tik_token_tokenizer_config.py} +11 -6
- vellum/types/{generate_error_response.py → tik_token_tokenizer_config_request.py} +11 -6
- vellum/types/token_overlapping_window_chunker_config.py +7 -3
- vellum/types/token_overlapping_window_chunker_config_request.py +7 -3
- vellum/types/token_overlapping_window_chunking.py +7 -3
- vellum/types/token_overlapping_window_chunking_request.py +7 -3
- vellum/types/upload_document_response.py +7 -3
- vellum/types/upsert_test_suite_test_case_request.py +7 -3
- vellum/types/vellum_error.py +7 -3
- vellum/types/vellum_error_request.py +7 -3
- vellum/types/vellum_image.py +7 -3
- vellum/types/vellum_image_request.py +7 -3
- vellum/types/vellum_variable.py +7 -3
- vellum/types/visibility_enum.py +5 -0
- vellum/types/workflow_deployment_read.py +12 -3
- vellum/types/workflow_event_error.py +7 -3
- vellum/types/workflow_execution_actual_chat_history_request.py +7 -3
- vellum/types/workflow_execution_actual_json_request.py +7 -3
- vellum/types/workflow_execution_actual_string_request.py +7 -3
- vellum/types/workflow_execution_node_result_event.py +7 -3
- vellum/types/workflow_execution_workflow_result_event.py +7 -3
- vellum/types/workflow_expand_meta_request.py +7 -3
- vellum/types/workflow_node_result_data.py +189 -45
- vellum/types/workflow_node_result_event.py +101 -20
- vellum/types/workflow_output.py +171 -36
- vellum/types/workflow_output_array.py +7 -3
- vellum/types/workflow_output_chat_history.py +7 -3
- vellum/types/workflow_output_error.py +7 -3
- vellum/types/workflow_output_function_call.py +7 -3
- vellum/types/workflow_output_image.py +7 -3
- vellum/types/workflow_output_json.py +7 -3
- vellum/types/workflow_output_number.py +7 -3
- vellum/types/workflow_output_search_results.py +7 -3
- vellum/types/workflow_output_string.py +7 -3
- vellum/types/workflow_release_tag_read.py +7 -3
- vellum/types/workflow_release_tag_workflow_deployment_history_item.py +7 -3
- vellum/types/workflow_request_chat_history_input_request.py +7 -3
- vellum/types/workflow_request_input_request.py +72 -16
- vellum/types/workflow_request_json_input_request.py +7 -3
- vellum/types/workflow_request_number_input_request.py +7 -3
- vellum/types/workflow_request_string_input_request.py +7 -3
- vellum/types/workflow_result_event.py +7 -3
- vellum/types/workflow_result_event_output_data.py +178 -33
- vellum/types/workflow_result_event_output_data_array.py +7 -3
- vellum/types/workflow_result_event_output_data_chat_history.py +7 -3
- vellum/types/workflow_result_event_output_data_error.py +7 -3
- vellum/types/workflow_result_event_output_data_function_call.py +7 -3
- vellum/types/workflow_result_event_output_data_json.py +7 -3
- vellum/types/workflow_result_event_output_data_number.py +7 -3
- vellum/types/workflow_result_event_output_data_search_results.py +7 -3
- vellum/types/workflow_result_event_output_data_string.py +7 -3
- vellum/types/workflow_stream_event.py +43 -8
- {vellum_ai-0.7.2.dist-info → vellum_ai-0.7.5.dist-info}/METADATA +13 -1
- vellum_ai-0.7.5.dist-info/RECORD +502 -0
- vellum/types/array_enum.py +0 -5
- vellum/types/chat_history_enum.py +0 -5
- vellum/types/create_enum.py +0 -5
- vellum/types/created_enum.py +0 -5
- vellum/types/delete_enum.py +0 -5
- vellum/types/deleted_enum.py +0 -5
- vellum/types/error_enum.py +0 -5
- vellum/types/function_call_enum.py +0 -5
- vellum/types/hkunlp_instructor_xl_enum.py +0 -5
- vellum/types/image_enum.py +0 -5
- vellum/types/initiated_enum.py +0 -5
- vellum/types/intfloat_multilingual_e_5_large_enum.py +0 -5
- vellum/types/json_enum.py +0 -5
- vellum/types/merge_enum.py +0 -5
- vellum/types/metric_enum.py +0 -5
- vellum/types/number_enum.py +0 -5
- vellum/types/pdf_enum.py +0 -5
- vellum/types/reducto_chunker_enum.py +0 -5
- vellum/types/rejected_enum.py +0 -5
- vellum/types/replace_enum.py +0 -5
- vellum/types/replaced_enum.py +0 -5
- vellum/types/search_error_response.py +0 -28
- vellum/types/search_results_enum.py +0 -5
- vellum/types/sentence_chunker_enum.py +0 -5
- vellum/types/sentence_transformers_multi_qa_mpnet_base_cos_v_1_enum.py +0 -5
- vellum/types/sentence_transformers_multi_qa_mpnet_base_dot_v_1_enum.py +0 -5
- vellum/types/streaming_enum.py +0 -5
- vellum/types/string_enum.py +0 -5
- vellum/types/submit_completion_actuals_error_response.py +0 -25
- vellum/types/subworkflow_enum.py +0 -5
- vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py +0 -5
- vellum/types/test_suite_run_external_exec_config_type_enum.py +0 -5
- vellum/types/test_suite_run_metric_error_output_type_enum.py +0 -5
- vellum/types/test_suite_run_metric_number_output_type_enum.py +0 -5
- vellum/types/test_suite_run_metric_string_output_type_enum.py +0 -5
- vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py +0 -5
- vellum/types/text_embedding_3_large_enum.py +0 -5
- vellum/types/text_embedding_3_small_enum.py +0 -5
- vellum/types/text_embedding_ada_002_enum.py +0 -5
- vellum/types/token_overlapping_window_chunker_enum.py +0 -5
- vellum/types/upload_document_error_response.py +0 -25
- vellum/types/upsert_enum.py +0 -5
- vellum_ai-0.7.2.dist-info/RECORD +0 -494
- {vellum_ai-0.7.2.dist-info → vellum_ai-0.7.5.dist-info}/LICENSE +0 -0
- {vellum_ai-0.7.2.dist-info → vellum_ai-0.7.5.dist-info}/WHEEL +0 -0
vellum/types/__init__.py
CHANGED
@@ -17,7 +17,8 @@ from .array_chat_message_content_item_request import (
|
|
17
17
|
ArrayChatMessageContentItemRequest_String,
|
18
18
|
)
|
19
19
|
from .array_chat_message_content_request import ArrayChatMessageContentRequest
|
20
|
-
from .
|
20
|
+
from .array_parameter_config import ArrayParameterConfig
|
21
|
+
from .array_parameter_config_request import ArrayParameterConfigRequest
|
21
22
|
from .array_variable_value_item import (
|
22
23
|
ArrayVariableValueItem,
|
23
24
|
ArrayVariableValueItem_Error,
|
@@ -59,7 +60,8 @@ from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1 import
|
|
59
60
|
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request import (
|
60
61
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request,
|
61
62
|
)
|
62
|
-
from .
|
63
|
+
from .boolean_parameter_config import BooleanParameterConfig
|
64
|
+
from .boolean_parameter_config_request import BooleanParameterConfigRequest
|
63
65
|
from .chat_history_input_request import ChatHistoryInputRequest
|
64
66
|
from .chat_message import ChatMessage
|
65
67
|
from .chat_message_content import (
|
@@ -99,13 +101,13 @@ from .code_execution_node_result_output import (
|
|
99
101
|
)
|
100
102
|
from .code_execution_node_search_results_result import CodeExecutionNodeSearchResultsResult
|
101
103
|
from .code_execution_node_string_result import CodeExecutionNodeStringResult
|
104
|
+
from .compile_prompt_deployment_expand_meta_request import CompilePromptDeploymentExpandMetaRequest
|
105
|
+
from .compile_prompt_meta import CompilePromptMeta
|
102
106
|
from .conditional_node_result import ConditionalNodeResult
|
103
107
|
from .conditional_node_result_data import ConditionalNodeResultData
|
104
|
-
from .
|
108
|
+
from .const_parameter_config import ConstParameterConfig
|
109
|
+
from .const_parameter_config_request import ConstParameterConfigRequest
|
105
110
|
from .create_test_suite_test_case_request import CreateTestSuiteTestCaseRequest
|
106
|
-
from .created_enum import CreatedEnum
|
107
|
-
from .delete_enum import DeleteEnum
|
108
|
-
from .deleted_enum import DeletedEnum
|
109
111
|
from .deployment_provider_payload_response import DeploymentProviderPayloadResponse
|
110
112
|
from .deployment_provider_payload_response_payload import DeploymentProviderPayloadResponsePayload
|
111
113
|
from .deployment_read import DeploymentRead
|
@@ -132,11 +134,9 @@ from .document_status import DocumentStatus
|
|
132
134
|
from .enriched_normalized_completion import EnrichedNormalizedCompletion
|
133
135
|
from .entity_status import EntityStatus
|
134
136
|
from .environment_enum import EnvironmentEnum
|
135
|
-
from .error_enum import ErrorEnum
|
136
137
|
from .error_variable_value import ErrorVariableValue
|
137
138
|
from .error_vellum_value import ErrorVellumValue
|
138
139
|
from .error_vellum_value_request import ErrorVellumValueRequest
|
139
|
-
from .execute_prompt_api_error_response import ExecutePromptApiErrorResponse
|
140
140
|
from .execute_prompt_event import (
|
141
141
|
ExecutePromptEvent,
|
142
142
|
ExecutePromptEvent_Fulfilled,
|
@@ -149,9 +149,7 @@ from .execute_prompt_response import (
|
|
149
149
|
ExecutePromptResponse_Fulfilled,
|
150
150
|
ExecutePromptResponse_Rejected,
|
151
151
|
)
|
152
|
-
from .execute_workflow_error_response import ExecuteWorkflowErrorResponse
|
153
152
|
from .execute_workflow_response import ExecuteWorkflowResponse
|
154
|
-
from .execute_workflow_stream_error_response import ExecuteWorkflowStreamErrorResponse
|
155
153
|
from .execute_workflow_workflow_result_event import (
|
156
154
|
ExecuteWorkflowWorkflowResultEvent,
|
157
155
|
ExecuteWorkflowWorkflowResultEvent_Fulfilled,
|
@@ -190,12 +188,10 @@ from .function_call_chat_message_content import FunctionCallChatMessageContent
|
|
190
188
|
from .function_call_chat_message_content_request import FunctionCallChatMessageContentRequest
|
191
189
|
from .function_call_chat_message_content_value import FunctionCallChatMessageContentValue
|
192
190
|
from .function_call_chat_message_content_value_request import FunctionCallChatMessageContentValueRequest
|
193
|
-
from .function_call_enum import FunctionCallEnum
|
194
191
|
from .function_call_request import FunctionCallRequest
|
195
192
|
from .function_call_variable_value import FunctionCallVariableValue
|
196
193
|
from .function_call_vellum_value import FunctionCallVellumValue
|
197
194
|
from .function_call_vellum_value_request import FunctionCallVellumValueRequest
|
198
|
-
from .generate_error_response import GenerateErrorResponse
|
199
195
|
from .generate_options_request import GenerateOptionsRequest
|
200
196
|
from .generate_request import GenerateRequest
|
201
197
|
from .generate_response import GenerateResponse
|
@@ -205,12 +201,13 @@ from .generate_result_error import GenerateResultError
|
|
205
201
|
from .generate_stream_response import GenerateStreamResponse
|
206
202
|
from .generate_stream_result import GenerateStreamResult
|
207
203
|
from .generate_stream_result_data import GenerateStreamResultData
|
208
|
-
from .hkunlp_instructor_xl_enum import HkunlpInstructorXlEnum
|
209
204
|
from .hkunlp_instructor_xl_vectorizer import HkunlpInstructorXlVectorizer
|
210
205
|
from .hkunlp_instructor_xl_vectorizer_request import HkunlpInstructorXlVectorizerRequest
|
206
|
+
from .hosted_by_enum import HostedByEnum
|
207
|
+
from .hugging_face_tokenizer_config import HuggingFaceTokenizerConfig
|
208
|
+
from .hugging_face_tokenizer_config_request import HuggingFaceTokenizerConfigRequest
|
211
209
|
from .image_chat_message_content import ImageChatMessageContent
|
212
210
|
from .image_chat_message_content_request import ImageChatMessageContentRequest
|
213
|
-
from .image_enum import ImageEnum
|
214
211
|
from .image_variable_value import ImageVariableValue
|
215
212
|
from .image_vellum_value import ImageVellumValue
|
216
213
|
from .image_vellum_value_request import ImageVellumValueRequest
|
@@ -235,32 +232,61 @@ from .indexing_config_vectorizer_request import (
|
|
235
232
|
IndexingConfigVectorizerRequest_TextEmbeddingAda002,
|
236
233
|
)
|
237
234
|
from .indexing_state_enum import IndexingStateEnum
|
238
|
-
from .initiated_enum import InitiatedEnum
|
239
235
|
from .initiated_execute_prompt_event import InitiatedExecutePromptEvent
|
240
236
|
from .initiated_prompt_execution_meta import InitiatedPromptExecutionMeta
|
241
237
|
from .initiated_workflow_node_result_event import InitiatedWorkflowNodeResultEvent
|
242
238
|
from .instructor_vectorizer_config import InstructorVectorizerConfig
|
243
239
|
from .instructor_vectorizer_config_request import InstructorVectorizerConfigRequest
|
244
|
-
from .
|
240
|
+
from .integer_parameter_config import IntegerParameterConfig
|
241
|
+
from .integer_parameter_config_request import IntegerParameterConfigRequest
|
245
242
|
from .iteration_state_enum import IterationStateEnum
|
246
|
-
from .json_enum import JsonEnum
|
247
243
|
from .json_input_request import JsonInputRequest
|
248
244
|
from .json_variable_value import JsonVariableValue
|
249
245
|
from .json_vellum_value import JsonVellumValue
|
250
246
|
from .json_vellum_value_request import JsonVellumValueRequest
|
251
247
|
from .logical_operator import LogicalOperator
|
252
248
|
from .logprobs_enum import LogprobsEnum
|
253
|
-
from .map_enum import MapEnum
|
254
249
|
from .map_node_result import MapNodeResult
|
255
250
|
from .map_node_result_data import MapNodeResultData
|
256
|
-
from .merge_enum import MergeEnum
|
257
251
|
from .merge_node_result import MergeNodeResult
|
258
252
|
from .merge_node_result_data import MergeNodeResultData
|
259
253
|
from .metadata_filter_config_request import MetadataFilterConfigRequest
|
260
254
|
from .metadata_filter_rule_combinator import MetadataFilterRuleCombinator
|
261
255
|
from .metadata_filter_rule_request import MetadataFilterRuleRequest
|
262
|
-
from .metric_enum import MetricEnum
|
263
256
|
from .metric_node_result import MetricNodeResult
|
257
|
+
from .ml_model_build_config import MlModelBuildConfig
|
258
|
+
from .ml_model_build_config_request import MlModelBuildConfigRequest
|
259
|
+
from .ml_model_developer import MlModelDeveloper
|
260
|
+
from .ml_model_developer_enum_value_label import MlModelDeveloperEnumValueLabel
|
261
|
+
from .ml_model_display_config_labelled import MlModelDisplayConfigLabelled
|
262
|
+
from .ml_model_display_config_request import MlModelDisplayConfigRequest
|
263
|
+
from .ml_model_display_tag import MlModelDisplayTag
|
264
|
+
from .ml_model_display_tag_enum_value_label import MlModelDisplayTagEnumValueLabel
|
265
|
+
from .ml_model_exec_config import MlModelExecConfig
|
266
|
+
from .ml_model_exec_config_request import MlModelExecConfigRequest
|
267
|
+
from .ml_model_family import MlModelFamily
|
268
|
+
from .ml_model_family_enum_value_label import MlModelFamilyEnumValueLabel
|
269
|
+
from .ml_model_feature import MlModelFeature
|
270
|
+
from .ml_model_parameter_config import MlModelParameterConfig
|
271
|
+
from .ml_model_parameter_config_request import MlModelParameterConfigRequest
|
272
|
+
from .ml_model_read import MlModelRead
|
273
|
+
from .ml_model_request_authorization_config import MlModelRequestAuthorizationConfig
|
274
|
+
from .ml_model_request_authorization_config_request import MlModelRequestAuthorizationConfigRequest
|
275
|
+
from .ml_model_request_authorization_config_type_enum import MlModelRequestAuthorizationConfigTypeEnum
|
276
|
+
from .ml_model_request_config import MlModelRequestConfig
|
277
|
+
from .ml_model_request_config_request import MlModelRequestConfigRequest
|
278
|
+
from .ml_model_response_config import MlModelResponseConfig
|
279
|
+
from .ml_model_response_config_request import MlModelResponseConfigRequest
|
280
|
+
from .ml_model_tokenizer_config import (
|
281
|
+
MlModelTokenizerConfig,
|
282
|
+
MlModelTokenizerConfig_HuggingFace,
|
283
|
+
MlModelTokenizerConfig_Tiktoken,
|
284
|
+
)
|
285
|
+
from .ml_model_tokenizer_config_request import (
|
286
|
+
MlModelTokenizerConfigRequest,
|
287
|
+
MlModelTokenizerConfigRequest_HuggingFace,
|
288
|
+
MlModelTokenizerConfigRequest_Tiktoken,
|
289
|
+
)
|
264
290
|
from .ml_model_usage import MlModelUsage
|
265
291
|
from .named_scenario_input_chat_history_variable_value_request import NamedScenarioInputChatHistoryVariableValueRequest
|
266
292
|
from .named_scenario_input_request import (
|
@@ -347,10 +373,15 @@ from .node_output_compiled_value import (
|
|
347
373
|
)
|
348
374
|
from .normalized_log_probs import NormalizedLogProbs
|
349
375
|
from .normalized_token_log_probs import NormalizedTokenLogProbs
|
350
|
-
from .
|
376
|
+
from .number_parameter_config import NumberParameterConfig
|
377
|
+
from .number_parameter_config_request import NumberParameterConfigRequest
|
351
378
|
from .number_variable_value import NumberVariableValue
|
352
379
|
from .number_vellum_value import NumberVellumValue
|
353
380
|
from .number_vellum_value_request import NumberVellumValueRequest
|
381
|
+
from .object_parameter_config import ObjectParameterConfig
|
382
|
+
from .object_parameter_config_request import ObjectParameterConfigRequest
|
383
|
+
from .one_of_parameter_config import OneOfParameterConfig
|
384
|
+
from .one_of_parameter_config_request import OneOfParameterConfigRequest
|
354
385
|
from .open_ai_vectorizer_config import OpenAiVectorizerConfig
|
355
386
|
from .open_ai_vectorizer_config_request import OpenAiVectorizerConfigRequest
|
356
387
|
from .open_ai_vectorizer_text_embedding_3_large import OpenAiVectorizerTextEmbedding3Large
|
@@ -360,12 +391,34 @@ from .open_ai_vectorizer_text_embedding_3_small_request import OpenAiVectorizerT
|
|
360
391
|
from .open_ai_vectorizer_text_embedding_ada_002 import OpenAiVectorizerTextEmbeddingAda002
|
361
392
|
from .open_ai_vectorizer_text_embedding_ada_002_request import OpenAiVectorizerTextEmbeddingAda002Request
|
362
393
|
from .paginated_document_index_read_list import PaginatedDocumentIndexReadList
|
394
|
+
from .paginated_ml_model_read_list import PaginatedMlModelReadList
|
363
395
|
from .paginated_slim_deployment_read_list import PaginatedSlimDeploymentReadList
|
364
396
|
from .paginated_slim_document_list import PaginatedSlimDocumentList
|
365
397
|
from .paginated_slim_workflow_deployment_list import PaginatedSlimWorkflowDeploymentList
|
366
398
|
from .paginated_test_suite_run_execution_list import PaginatedTestSuiteRunExecutionList
|
367
399
|
from .paginated_test_suite_test_case_list import PaginatedTestSuiteTestCaseList
|
368
|
-
from .
|
400
|
+
from .parameter_config import (
|
401
|
+
ParameterConfig,
|
402
|
+
ParameterConfig_Array,
|
403
|
+
ParameterConfig_Boolean,
|
404
|
+
ParameterConfig_Const,
|
405
|
+
ParameterConfig_Integer,
|
406
|
+
ParameterConfig_Number,
|
407
|
+
ParameterConfig_Object,
|
408
|
+
ParameterConfig_OneOf,
|
409
|
+
ParameterConfig_String,
|
410
|
+
)
|
411
|
+
from .parameter_config_request import (
|
412
|
+
ParameterConfigRequest,
|
413
|
+
ParameterConfigRequest_Array,
|
414
|
+
ParameterConfigRequest_Boolean,
|
415
|
+
ParameterConfigRequest_Const,
|
416
|
+
ParameterConfigRequest_Integer,
|
417
|
+
ParameterConfigRequest_Number,
|
418
|
+
ParameterConfigRequest_Object,
|
419
|
+
ParameterConfigRequest_OneOf,
|
420
|
+
ParameterConfigRequest_String,
|
421
|
+
)
|
369
422
|
from .pdf_search_result_meta_source import PdfSearchResultMetaSource
|
370
423
|
from .pdf_search_result_meta_source_request import PdfSearchResultMetaSourceRequest
|
371
424
|
from .processing_failure_reason_enum import ProcessingFailureReasonEnum
|
@@ -391,24 +444,19 @@ from .prompt_output import (
|
|
391
444
|
from .raw_prompt_execution_overrides_request import RawPromptExecutionOverridesRequest
|
392
445
|
from .reducto_chunker_config import ReductoChunkerConfig
|
393
446
|
from .reducto_chunker_config_request import ReductoChunkerConfigRequest
|
394
|
-
from .reducto_chunker_enum import ReductoChunkerEnum
|
395
447
|
from .reducto_chunking import ReductoChunking
|
396
448
|
from .reducto_chunking_request import ReductoChunkingRequest
|
397
|
-
from .rejected_enum import RejectedEnum
|
398
449
|
from .rejected_execute_prompt_event import RejectedExecutePromptEvent
|
399
450
|
from .rejected_execute_prompt_response import RejectedExecutePromptResponse
|
400
451
|
from .rejected_execute_workflow_workflow_result_event import RejectedExecuteWorkflowWorkflowResultEvent
|
401
452
|
from .rejected_prompt_execution_meta import RejectedPromptExecutionMeta
|
402
453
|
from .rejected_workflow_node_result_event import RejectedWorkflowNodeResultEvent
|
403
454
|
from .release_tag_source import ReleaseTagSource
|
404
|
-
from .replace_enum import ReplaceEnum
|
405
455
|
from .replace_test_suite_test_case_request import ReplaceTestSuiteTestCaseRequest
|
406
|
-
from .replaced_enum import ReplacedEnum
|
407
456
|
from .sandbox_scenario import SandboxScenario
|
408
457
|
from .scenario_input import ScenarioInput, ScenarioInput_ChatHistory, ScenarioInput_String
|
409
458
|
from .scenario_input_chat_history_variable_value import ScenarioInputChatHistoryVariableValue
|
410
459
|
from .scenario_input_string_variable_value import ScenarioInputStringVariableValue
|
411
|
-
from .search_error_response import SearchErrorResponse
|
412
460
|
from .search_filters_request import SearchFiltersRequest
|
413
461
|
from .search_node_result import SearchNodeResult
|
414
462
|
from .search_node_result_data import SearchNodeResultData
|
@@ -423,38 +471,32 @@ from .search_result_meta_request import SearchResultMetaRequest
|
|
423
471
|
from .search_result_meta_source import SearchResultMetaSource, SearchResultMetaSource_Pdf
|
424
472
|
from .search_result_meta_source_request import SearchResultMetaSourceRequest, SearchResultMetaSourceRequest_Pdf
|
425
473
|
from .search_result_request import SearchResultRequest
|
426
|
-
from .search_results_enum import SearchResultsEnum
|
427
474
|
from .search_weights_request import SearchWeightsRequest
|
428
475
|
from .sentence_chunker_config import SentenceChunkerConfig
|
429
476
|
from .sentence_chunker_config_request import SentenceChunkerConfigRequest
|
430
|
-
from .sentence_chunker_enum import SentenceChunkerEnum
|
431
477
|
from .sentence_chunking import SentenceChunking
|
432
478
|
from .sentence_chunking_request import SentenceChunkingRequest
|
433
|
-
from .sentence_transformers_multi_qa_mpnet_base_cos_v_1_enum import SentenceTransformersMultiQaMpnetBaseCosV1Enum
|
434
|
-
from .sentence_transformers_multi_qa_mpnet_base_dot_v_1_enum import SentenceTransformersMultiQaMpnetBaseDotV1Enum
|
435
479
|
from .slim_deployment_read import SlimDeploymentRead
|
436
480
|
from .slim_document import SlimDocument
|
437
481
|
from .slim_workflow_deployment import SlimWorkflowDeployment
|
438
|
-
from .streaming_enum import StreamingEnum
|
439
482
|
from .streaming_execute_prompt_event import StreamingExecutePromptEvent
|
440
483
|
from .streaming_prompt_execution_meta import StreamingPromptExecutionMeta
|
441
484
|
from .streaming_workflow_node_result_event import StreamingWorkflowNodeResultEvent
|
442
485
|
from .string_chat_message_content import StringChatMessageContent
|
443
486
|
from .string_chat_message_content_request import StringChatMessageContentRequest
|
444
|
-
from .string_enum import StringEnum
|
445
487
|
from .string_input_request import StringInputRequest
|
488
|
+
from .string_parameter_config import StringParameterConfig
|
489
|
+
from .string_parameter_config_request import StringParameterConfigRequest
|
446
490
|
from .string_variable_value import StringVariableValue
|
447
491
|
from .string_vellum_value import StringVellumValue
|
448
492
|
from .string_vellum_value_request import StringVellumValueRequest
|
449
493
|
from .submit_completion_actual_request import SubmitCompletionActualRequest
|
450
|
-
from .submit_completion_actuals_error_response import SubmitCompletionActualsErrorResponse
|
451
494
|
from .submit_workflow_execution_actual_request import (
|
452
495
|
SubmitWorkflowExecutionActualRequest,
|
453
496
|
SubmitWorkflowExecutionActualRequest_ChatHistory,
|
454
497
|
SubmitWorkflowExecutionActualRequest_Json,
|
455
498
|
SubmitWorkflowExecutionActualRequest_String,
|
456
499
|
)
|
457
|
-
from .subworkflow_enum import SubworkflowEnum
|
458
500
|
from .subworkflow_node_result import SubworkflowNodeResult
|
459
501
|
from .subworkflow_node_result_data import SubworkflowNodeResultData
|
460
502
|
from .templating_node_array_result import TemplatingNodeArrayResult
|
@@ -524,9 +566,6 @@ from .test_suite_run_deployment_release_tag_exec_config_data_request import (
|
|
524
566
|
TestSuiteRunDeploymentReleaseTagExecConfigDataRequest,
|
525
567
|
)
|
526
568
|
from .test_suite_run_deployment_release_tag_exec_config_request import TestSuiteRunDeploymentReleaseTagExecConfigRequest
|
527
|
-
from .test_suite_run_deployment_release_tag_exec_config_type_enum import (
|
528
|
-
TestSuiteRunDeploymentReleaseTagExecConfigTypeEnum,
|
529
|
-
)
|
530
569
|
from .test_suite_run_exec_config import (
|
531
570
|
TestSuiteRunExecConfig,
|
532
571
|
TestSuiteRunExecConfig_DeploymentReleaseTag,
|
@@ -565,11 +604,8 @@ from .test_suite_run_external_exec_config import TestSuiteRunExternalExecConfig
|
|
565
604
|
from .test_suite_run_external_exec_config_data import TestSuiteRunExternalExecConfigData
|
566
605
|
from .test_suite_run_external_exec_config_data_request import TestSuiteRunExternalExecConfigDataRequest
|
567
606
|
from .test_suite_run_external_exec_config_request import TestSuiteRunExternalExecConfigRequest
|
568
|
-
from .test_suite_run_external_exec_config_type_enum import TestSuiteRunExternalExecConfigTypeEnum
|
569
607
|
from .test_suite_run_metric_error_output import TestSuiteRunMetricErrorOutput
|
570
|
-
from .test_suite_run_metric_error_output_type_enum import TestSuiteRunMetricErrorOutputTypeEnum
|
571
608
|
from .test_suite_run_metric_number_output import TestSuiteRunMetricNumberOutput
|
572
|
-
from .test_suite_run_metric_number_output_type_enum import TestSuiteRunMetricNumberOutputTypeEnum
|
573
609
|
from .test_suite_run_metric_output import (
|
574
610
|
TestSuiteRunMetricOutput,
|
575
611
|
TestSuiteRunMetricOutput_Error,
|
@@ -577,7 +613,6 @@ from .test_suite_run_metric_output import (
|
|
577
613
|
TestSuiteRunMetricOutput_String,
|
578
614
|
)
|
579
615
|
from .test_suite_run_metric_string_output import TestSuiteRunMetricStringOutput
|
580
|
-
from .test_suite_run_metric_string_output_type_enum import TestSuiteRunMetricStringOutputTypeEnum
|
581
616
|
from .test_suite_run_read import TestSuiteRunRead
|
582
617
|
from .test_suite_run_state import TestSuiteRunState
|
583
618
|
from .test_suite_run_test_suite import TestSuiteRunTestSuite
|
@@ -587,7 +622,6 @@ from .test_suite_run_workflow_release_tag_exec_config_data_request import (
|
|
587
622
|
TestSuiteRunWorkflowReleaseTagExecConfigDataRequest,
|
588
623
|
)
|
589
624
|
from .test_suite_run_workflow_release_tag_exec_config_request import TestSuiteRunWorkflowReleaseTagExecConfigRequest
|
590
|
-
from .test_suite_run_workflow_release_tag_exec_config_type_enum import TestSuiteRunWorkflowReleaseTagExecConfigTypeEnum
|
591
625
|
from .test_suite_test_case import TestSuiteTestCase
|
592
626
|
from .test_suite_test_case_bulk_operation_request import (
|
593
627
|
TestSuiteTestCaseBulkOperationRequest,
|
@@ -615,17 +649,13 @@ from .test_suite_test_case_replace_bulk_operation_request import TestSuiteTestCa
|
|
615
649
|
from .test_suite_test_case_replaced_bulk_result import TestSuiteTestCaseReplacedBulkResult
|
616
650
|
from .test_suite_test_case_replaced_bulk_result_data import TestSuiteTestCaseReplacedBulkResultData
|
617
651
|
from .test_suite_test_case_upsert_bulk_operation_request import TestSuiteTestCaseUpsertBulkOperationRequest
|
618
|
-
from .
|
619
|
-
from .
|
620
|
-
from .text_embedding_ada_002_enum import TextEmbeddingAda002Enum
|
652
|
+
from .tik_token_tokenizer_config import TikTokenTokenizerConfig
|
653
|
+
from .tik_token_tokenizer_config_request import TikTokenTokenizerConfigRequest
|
621
654
|
from .token_overlapping_window_chunker_config import TokenOverlappingWindowChunkerConfig
|
622
655
|
from .token_overlapping_window_chunker_config_request import TokenOverlappingWindowChunkerConfigRequest
|
623
|
-
from .token_overlapping_window_chunker_enum import TokenOverlappingWindowChunkerEnum
|
624
656
|
from .token_overlapping_window_chunking import TokenOverlappingWindowChunking
|
625
657
|
from .token_overlapping_window_chunking_request import TokenOverlappingWindowChunkingRequest
|
626
|
-
from .upload_document_error_response import UploadDocumentErrorResponse
|
627
658
|
from .upload_document_response import UploadDocumentResponse
|
628
|
-
from .upsert_enum import UpsertEnum
|
629
659
|
from .upsert_test_suite_test_case_request import UpsertTestSuiteTestCaseRequest
|
630
660
|
from .vellum_error import VellumError
|
631
661
|
from .vellum_error_code_enum import VellumErrorCodeEnum
|
@@ -634,6 +664,7 @@ from .vellum_image import VellumImage
|
|
634
664
|
from .vellum_image_request import VellumImageRequest
|
635
665
|
from .vellum_variable import VellumVariable
|
636
666
|
from .vellum_variable_type import VellumVariableType
|
667
|
+
from .visibility_enum import VisibilityEnum
|
637
668
|
from .workflow_deployment_read import WorkflowDeploymentRead
|
638
669
|
from .workflow_event_error import WorkflowEventError
|
639
670
|
from .workflow_execution_actual_chat_history_request import WorkflowExecutionActualChatHistoryRequest
|
@@ -736,7 +767,8 @@ __all__ = [
|
|
736
767
|
"ArrayChatMessageContentItem_Image",
|
737
768
|
"ArrayChatMessageContentItem_String",
|
738
769
|
"ArrayChatMessageContentRequest",
|
739
|
-
"
|
770
|
+
"ArrayParameterConfig",
|
771
|
+
"ArrayParameterConfigRequest",
|
740
772
|
"ArrayVariableValueItem",
|
741
773
|
"ArrayVariableValueItem_Error",
|
742
774
|
"ArrayVariableValueItem_FunctionCall",
|
@@ -764,7 +796,8 @@ __all__ = [
|
|
764
796
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request",
|
765
797
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1",
|
766
798
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request",
|
767
|
-
"
|
799
|
+
"BooleanParameterConfig",
|
800
|
+
"BooleanParameterConfigRequest",
|
768
801
|
"ChatHistoryInputRequest",
|
769
802
|
"ChatMessage",
|
770
803
|
"ChatMessageContent",
|
@@ -798,13 +831,13 @@ __all__ = [
|
|
798
831
|
"CodeExecutionNodeResultOutput_String",
|
799
832
|
"CodeExecutionNodeSearchResultsResult",
|
800
833
|
"CodeExecutionNodeStringResult",
|
834
|
+
"CompilePromptDeploymentExpandMetaRequest",
|
835
|
+
"CompilePromptMeta",
|
801
836
|
"ConditionalNodeResult",
|
802
837
|
"ConditionalNodeResultData",
|
803
|
-
"
|
838
|
+
"ConstParameterConfig",
|
839
|
+
"ConstParameterConfigRequest",
|
804
840
|
"CreateTestSuiteTestCaseRequest",
|
805
|
-
"CreatedEnum",
|
806
|
-
"DeleteEnum",
|
807
|
-
"DeletedEnum",
|
808
841
|
"DeploymentProviderPayloadResponse",
|
809
842
|
"DeploymentProviderPayloadResponsePayload",
|
810
843
|
"DeploymentRead",
|
@@ -827,11 +860,9 @@ __all__ = [
|
|
827
860
|
"EnrichedNormalizedCompletion",
|
828
861
|
"EntityStatus",
|
829
862
|
"EnvironmentEnum",
|
830
|
-
"ErrorEnum",
|
831
863
|
"ErrorVariableValue",
|
832
864
|
"ErrorVellumValue",
|
833
865
|
"ErrorVellumValueRequest",
|
834
|
-
"ExecutePromptApiErrorResponse",
|
835
866
|
"ExecutePromptEvent",
|
836
867
|
"ExecutePromptEvent_Fulfilled",
|
837
868
|
"ExecutePromptEvent_Initiated",
|
@@ -840,9 +871,7 @@ __all__ = [
|
|
840
871
|
"ExecutePromptResponse",
|
841
872
|
"ExecutePromptResponse_Fulfilled",
|
842
873
|
"ExecutePromptResponse_Rejected",
|
843
|
-
"ExecuteWorkflowErrorResponse",
|
844
874
|
"ExecuteWorkflowResponse",
|
845
|
-
"ExecuteWorkflowStreamErrorResponse",
|
846
875
|
"ExecuteWorkflowWorkflowResultEvent",
|
847
876
|
"ExecuteWorkflowWorkflowResultEvent_Fulfilled",
|
848
877
|
"ExecuteWorkflowWorkflowResultEvent_Rejected",
|
@@ -877,12 +906,10 @@ __all__ = [
|
|
877
906
|
"FunctionCallChatMessageContentRequest",
|
878
907
|
"FunctionCallChatMessageContentValue",
|
879
908
|
"FunctionCallChatMessageContentValueRequest",
|
880
|
-
"FunctionCallEnum",
|
881
909
|
"FunctionCallRequest",
|
882
910
|
"FunctionCallVariableValue",
|
883
911
|
"FunctionCallVellumValue",
|
884
912
|
"FunctionCallVellumValueRequest",
|
885
|
-
"GenerateErrorResponse",
|
886
913
|
"GenerateOptionsRequest",
|
887
914
|
"GenerateRequest",
|
888
915
|
"GenerateResponse",
|
@@ -892,12 +919,13 @@ __all__ = [
|
|
892
919
|
"GenerateStreamResponse",
|
893
920
|
"GenerateStreamResult",
|
894
921
|
"GenerateStreamResultData",
|
895
|
-
"HkunlpInstructorXlEnum",
|
896
922
|
"HkunlpInstructorXlVectorizer",
|
897
923
|
"HkunlpInstructorXlVectorizerRequest",
|
924
|
+
"HostedByEnum",
|
925
|
+
"HuggingFaceTokenizerConfig",
|
926
|
+
"HuggingFaceTokenizerConfigRequest",
|
898
927
|
"ImageChatMessageContent",
|
899
928
|
"ImageChatMessageContentRequest",
|
900
|
-
"ImageEnum",
|
901
929
|
"ImageVariableValue",
|
902
930
|
"ImageVellumValue",
|
903
931
|
"ImageVellumValueRequest",
|
@@ -918,32 +946,57 @@ __all__ = [
|
|
918
946
|
"IndexingConfigVectorizer_TextEmbedding3Small",
|
919
947
|
"IndexingConfigVectorizer_TextEmbeddingAda002",
|
920
948
|
"IndexingStateEnum",
|
921
|
-
"InitiatedEnum",
|
922
949
|
"InitiatedExecutePromptEvent",
|
923
950
|
"InitiatedPromptExecutionMeta",
|
924
951
|
"InitiatedWorkflowNodeResultEvent",
|
925
952
|
"InstructorVectorizerConfig",
|
926
953
|
"InstructorVectorizerConfigRequest",
|
927
|
-
"
|
954
|
+
"IntegerParameterConfig",
|
955
|
+
"IntegerParameterConfigRequest",
|
928
956
|
"IterationStateEnum",
|
929
|
-
"JsonEnum",
|
930
957
|
"JsonInputRequest",
|
931
958
|
"JsonVariableValue",
|
932
959
|
"JsonVellumValue",
|
933
960
|
"JsonVellumValueRequest",
|
934
961
|
"LogicalOperator",
|
935
962
|
"LogprobsEnum",
|
936
|
-
"MapEnum",
|
937
963
|
"MapNodeResult",
|
938
964
|
"MapNodeResultData",
|
939
|
-
"MergeEnum",
|
940
965
|
"MergeNodeResult",
|
941
966
|
"MergeNodeResultData",
|
942
967
|
"MetadataFilterConfigRequest",
|
943
968
|
"MetadataFilterRuleCombinator",
|
944
969
|
"MetadataFilterRuleRequest",
|
945
|
-
"MetricEnum",
|
946
970
|
"MetricNodeResult",
|
971
|
+
"MlModelBuildConfig",
|
972
|
+
"MlModelBuildConfigRequest",
|
973
|
+
"MlModelDeveloper",
|
974
|
+
"MlModelDeveloperEnumValueLabel",
|
975
|
+
"MlModelDisplayConfigLabelled",
|
976
|
+
"MlModelDisplayConfigRequest",
|
977
|
+
"MlModelDisplayTag",
|
978
|
+
"MlModelDisplayTagEnumValueLabel",
|
979
|
+
"MlModelExecConfig",
|
980
|
+
"MlModelExecConfigRequest",
|
981
|
+
"MlModelFamily",
|
982
|
+
"MlModelFamilyEnumValueLabel",
|
983
|
+
"MlModelFeature",
|
984
|
+
"MlModelParameterConfig",
|
985
|
+
"MlModelParameterConfigRequest",
|
986
|
+
"MlModelRead",
|
987
|
+
"MlModelRequestAuthorizationConfig",
|
988
|
+
"MlModelRequestAuthorizationConfigRequest",
|
989
|
+
"MlModelRequestAuthorizationConfigTypeEnum",
|
990
|
+
"MlModelRequestConfig",
|
991
|
+
"MlModelRequestConfigRequest",
|
992
|
+
"MlModelResponseConfig",
|
993
|
+
"MlModelResponseConfigRequest",
|
994
|
+
"MlModelTokenizerConfig",
|
995
|
+
"MlModelTokenizerConfigRequest",
|
996
|
+
"MlModelTokenizerConfigRequest_HuggingFace",
|
997
|
+
"MlModelTokenizerConfigRequest_Tiktoken",
|
998
|
+
"MlModelTokenizerConfig_HuggingFace",
|
999
|
+
"MlModelTokenizerConfig_Tiktoken",
|
947
1000
|
"MlModelUsage",
|
948
1001
|
"NamedScenarioInputChatHistoryVariableValueRequest",
|
949
1002
|
"NamedScenarioInputRequest",
|
@@ -1020,10 +1073,15 @@ __all__ = [
|
|
1020
1073
|
"NodeOutputCompiledValue_String",
|
1021
1074
|
"NormalizedLogProbs",
|
1022
1075
|
"NormalizedTokenLogProbs",
|
1023
|
-
"
|
1076
|
+
"NumberParameterConfig",
|
1077
|
+
"NumberParameterConfigRequest",
|
1024
1078
|
"NumberVariableValue",
|
1025
1079
|
"NumberVellumValue",
|
1026
1080
|
"NumberVellumValueRequest",
|
1081
|
+
"ObjectParameterConfig",
|
1082
|
+
"ObjectParameterConfigRequest",
|
1083
|
+
"OneOfParameterConfig",
|
1084
|
+
"OneOfParameterConfigRequest",
|
1027
1085
|
"OpenAiVectorizerConfig",
|
1028
1086
|
"OpenAiVectorizerConfigRequest",
|
1029
1087
|
"OpenAiVectorizerTextEmbedding3Large",
|
@@ -1033,12 +1091,30 @@ __all__ = [
|
|
1033
1091
|
"OpenAiVectorizerTextEmbeddingAda002",
|
1034
1092
|
"OpenAiVectorizerTextEmbeddingAda002Request",
|
1035
1093
|
"PaginatedDocumentIndexReadList",
|
1094
|
+
"PaginatedMlModelReadList",
|
1036
1095
|
"PaginatedSlimDeploymentReadList",
|
1037
1096
|
"PaginatedSlimDocumentList",
|
1038
1097
|
"PaginatedSlimWorkflowDeploymentList",
|
1039
1098
|
"PaginatedTestSuiteRunExecutionList",
|
1040
1099
|
"PaginatedTestSuiteTestCaseList",
|
1041
|
-
"
|
1100
|
+
"ParameterConfig",
|
1101
|
+
"ParameterConfigRequest",
|
1102
|
+
"ParameterConfigRequest_Array",
|
1103
|
+
"ParameterConfigRequest_Boolean",
|
1104
|
+
"ParameterConfigRequest_Const",
|
1105
|
+
"ParameterConfigRequest_Integer",
|
1106
|
+
"ParameterConfigRequest_Number",
|
1107
|
+
"ParameterConfigRequest_Object",
|
1108
|
+
"ParameterConfigRequest_OneOf",
|
1109
|
+
"ParameterConfigRequest_String",
|
1110
|
+
"ParameterConfig_Array",
|
1111
|
+
"ParameterConfig_Boolean",
|
1112
|
+
"ParameterConfig_Const",
|
1113
|
+
"ParameterConfig_Integer",
|
1114
|
+
"ParameterConfig_Number",
|
1115
|
+
"ParameterConfig_Object",
|
1116
|
+
"ParameterConfig_OneOf",
|
1117
|
+
"ParameterConfig_String",
|
1042
1118
|
"PdfSearchResultMetaSource",
|
1043
1119
|
"PdfSearchResultMetaSourceRequest",
|
1044
1120
|
"ProcessingFailureReasonEnum",
|
@@ -1060,26 +1136,21 @@ __all__ = [
|
|
1060
1136
|
"RawPromptExecutionOverridesRequest",
|
1061
1137
|
"ReductoChunkerConfig",
|
1062
1138
|
"ReductoChunkerConfigRequest",
|
1063
|
-
"ReductoChunkerEnum",
|
1064
1139
|
"ReductoChunking",
|
1065
1140
|
"ReductoChunkingRequest",
|
1066
|
-
"RejectedEnum",
|
1067
1141
|
"RejectedExecutePromptEvent",
|
1068
1142
|
"RejectedExecutePromptResponse",
|
1069
1143
|
"RejectedExecuteWorkflowWorkflowResultEvent",
|
1070
1144
|
"RejectedPromptExecutionMeta",
|
1071
1145
|
"RejectedWorkflowNodeResultEvent",
|
1072
1146
|
"ReleaseTagSource",
|
1073
|
-
"ReplaceEnum",
|
1074
1147
|
"ReplaceTestSuiteTestCaseRequest",
|
1075
|
-
"ReplacedEnum",
|
1076
1148
|
"SandboxScenario",
|
1077
1149
|
"ScenarioInput",
|
1078
1150
|
"ScenarioInputChatHistoryVariableValue",
|
1079
1151
|
"ScenarioInputStringVariableValue",
|
1080
1152
|
"ScenarioInput_ChatHistory",
|
1081
1153
|
"ScenarioInput_String",
|
1082
|
-
"SearchErrorResponse",
|
1083
1154
|
"SearchFiltersRequest",
|
1084
1155
|
"SearchNodeResult",
|
1085
1156
|
"SearchNodeResultData",
|
@@ -1096,36 +1167,30 @@ __all__ = [
|
|
1096
1167
|
"SearchResultMetaSourceRequest_Pdf",
|
1097
1168
|
"SearchResultMetaSource_Pdf",
|
1098
1169
|
"SearchResultRequest",
|
1099
|
-
"SearchResultsEnum",
|
1100
1170
|
"SearchWeightsRequest",
|
1101
1171
|
"SentenceChunkerConfig",
|
1102
1172
|
"SentenceChunkerConfigRequest",
|
1103
|
-
"SentenceChunkerEnum",
|
1104
1173
|
"SentenceChunking",
|
1105
1174
|
"SentenceChunkingRequest",
|
1106
|
-
"SentenceTransformersMultiQaMpnetBaseCosV1Enum",
|
1107
|
-
"SentenceTransformersMultiQaMpnetBaseDotV1Enum",
|
1108
1175
|
"SlimDeploymentRead",
|
1109
1176
|
"SlimDocument",
|
1110
1177
|
"SlimWorkflowDeployment",
|
1111
|
-
"StreamingEnum",
|
1112
1178
|
"StreamingExecutePromptEvent",
|
1113
1179
|
"StreamingPromptExecutionMeta",
|
1114
1180
|
"StreamingWorkflowNodeResultEvent",
|
1115
1181
|
"StringChatMessageContent",
|
1116
1182
|
"StringChatMessageContentRequest",
|
1117
|
-
"StringEnum",
|
1118
1183
|
"StringInputRequest",
|
1184
|
+
"StringParameterConfig",
|
1185
|
+
"StringParameterConfigRequest",
|
1119
1186
|
"StringVariableValue",
|
1120
1187
|
"StringVellumValue",
|
1121
1188
|
"StringVellumValueRequest",
|
1122
1189
|
"SubmitCompletionActualRequest",
|
1123
|
-
"SubmitCompletionActualsErrorResponse",
|
1124
1190
|
"SubmitWorkflowExecutionActualRequest",
|
1125
1191
|
"SubmitWorkflowExecutionActualRequest_ChatHistory",
|
1126
1192
|
"SubmitWorkflowExecutionActualRequest_Json",
|
1127
1193
|
"SubmitWorkflowExecutionActualRequest_String",
|
1128
|
-
"SubworkflowEnum",
|
1129
1194
|
"SubworkflowNodeResult",
|
1130
1195
|
"SubworkflowNodeResultData",
|
1131
1196
|
"TemplatingNodeArrayResult",
|
@@ -1187,7 +1252,6 @@ __all__ = [
|
|
1187
1252
|
"TestSuiteRunDeploymentReleaseTagExecConfigData",
|
1188
1253
|
"TestSuiteRunDeploymentReleaseTagExecConfigDataRequest",
|
1189
1254
|
"TestSuiteRunDeploymentReleaseTagExecConfigRequest",
|
1190
|
-
"TestSuiteRunDeploymentReleaseTagExecConfigTypeEnum",
|
1191
1255
|
"TestSuiteRunExecConfig",
|
1192
1256
|
"TestSuiteRunExecConfigRequest",
|
1193
1257
|
"TestSuiteRunExecConfigRequest_DeploymentReleaseTag",
|
@@ -1220,17 +1284,13 @@ __all__ = [
|
|
1220
1284
|
"TestSuiteRunExternalExecConfigData",
|
1221
1285
|
"TestSuiteRunExternalExecConfigDataRequest",
|
1222
1286
|
"TestSuiteRunExternalExecConfigRequest",
|
1223
|
-
"TestSuiteRunExternalExecConfigTypeEnum",
|
1224
1287
|
"TestSuiteRunMetricErrorOutput",
|
1225
|
-
"TestSuiteRunMetricErrorOutputTypeEnum",
|
1226
1288
|
"TestSuiteRunMetricNumberOutput",
|
1227
|
-
"TestSuiteRunMetricNumberOutputTypeEnum",
|
1228
1289
|
"TestSuiteRunMetricOutput",
|
1229
1290
|
"TestSuiteRunMetricOutput_Error",
|
1230
1291
|
"TestSuiteRunMetricOutput_Number",
|
1231
1292
|
"TestSuiteRunMetricOutput_String",
|
1232
1293
|
"TestSuiteRunMetricStringOutput",
|
1233
|
-
"TestSuiteRunMetricStringOutputTypeEnum",
|
1234
1294
|
"TestSuiteRunRead",
|
1235
1295
|
"TestSuiteRunState",
|
1236
1296
|
"TestSuiteRunTestSuite",
|
@@ -1238,7 +1298,6 @@ __all__ = [
|
|
1238
1298
|
"TestSuiteRunWorkflowReleaseTagExecConfigData",
|
1239
1299
|
"TestSuiteRunWorkflowReleaseTagExecConfigDataRequest",
|
1240
1300
|
"TestSuiteRunWorkflowReleaseTagExecConfigRequest",
|
1241
|
-
"TestSuiteRunWorkflowReleaseTagExecConfigTypeEnum",
|
1242
1301
|
"TestSuiteTestCase",
|
1243
1302
|
"TestSuiteTestCaseBulkOperationRequest",
|
1244
1303
|
"TestSuiteTestCaseBulkOperationRequest_Create",
|
@@ -1262,17 +1321,13 @@ __all__ = [
|
|
1262
1321
|
"TestSuiteTestCaseReplacedBulkResult",
|
1263
1322
|
"TestSuiteTestCaseReplacedBulkResultData",
|
1264
1323
|
"TestSuiteTestCaseUpsertBulkOperationRequest",
|
1265
|
-
"
|
1266
|
-
"
|
1267
|
-
"TextEmbeddingAda002Enum",
|
1324
|
+
"TikTokenTokenizerConfig",
|
1325
|
+
"TikTokenTokenizerConfigRequest",
|
1268
1326
|
"TokenOverlappingWindowChunkerConfig",
|
1269
1327
|
"TokenOverlappingWindowChunkerConfigRequest",
|
1270
|
-
"TokenOverlappingWindowChunkerEnum",
|
1271
1328
|
"TokenOverlappingWindowChunking",
|
1272
1329
|
"TokenOverlappingWindowChunkingRequest",
|
1273
|
-
"UploadDocumentErrorResponse",
|
1274
1330
|
"UploadDocumentResponse",
|
1275
|
-
"UpsertEnum",
|
1276
1331
|
"UpsertTestSuiteTestCaseRequest",
|
1277
1332
|
"VellumError",
|
1278
1333
|
"VellumErrorCodeEnum",
|
@@ -1281,6 +1336,7 @@ __all__ = [
|
|
1281
1336
|
"VellumImageRequest",
|
1282
1337
|
"VellumVariable",
|
1283
1338
|
"VellumVariableType",
|
1339
|
+
"VisibilityEnum",
|
1284
1340
|
"WorkflowDeploymentRead",
|
1285
1341
|
"WorkflowEventError",
|
1286
1342
|
"WorkflowExecutionActualChatHistoryRequest",
|