vellum-ai 0.9.16__py3-none-any.whl → 0.9.16rc4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vellum/client/README.md +242 -0
- vellum/client/core/__init__.py +47 -0
- vellum/client/core/api_error.py +15 -0
- vellum/client/core/client_wrapper.py +59 -0
- vellum/client/core/datetime_utils.py +28 -0
- vellum/client/core/file.py +62 -0
- vellum/client/core/http_client.py +487 -0
- vellum/client/core/jsonable_encoder.py +101 -0
- vellum/client/core/pydantic_utilities.py +296 -0
- vellum/client/core/query_encoder.py +58 -0
- vellum/client/core/remove_none_from_dict.py +11 -0
- vellum/client/core/request_options.py +32 -0
- vellum/client/core/serialization.py +272 -0
- vellum/client/environment.py +17 -0
- vellum/client/errors/__init__.py +8 -0
- vellum/client/errors/bad_request_error.py +9 -0
- vellum/client/errors/forbidden_error.py +9 -0
- vellum/client/errors/internal_server_error.py +9 -0
- vellum/client/errors/not_found_error.py +9 -0
- vellum/client/resources/__init__.py +47 -0
- vellum/client/resources/ad_hoc/__init__.py +2 -0
- vellum/client/resources/ad_hoc/client.py +459 -0
- vellum/client/resources/container_images/__init__.py +2 -0
- vellum/client/resources/container_images/client.py +502 -0
- vellum/client/resources/deployments/__init__.py +5 -0
- vellum/client/resources/deployments/client.py +975 -0
- vellum/client/resources/deployments/types/__init__.py +6 -0
- vellum/client/resources/deployments/types/deployments_list_request_status.py +5 -0
- vellum/client/resources/deployments/types/list_deployment_release_tags_request_source.py +5 -0
- vellum/client/resources/document_indexes/__init__.py +5 -0
- vellum/client/resources/document_indexes/client.py +1154 -0
- vellum/client/resources/document_indexes/types/__init__.py +5 -0
- vellum/client/resources/document_indexes/types/document_indexes_list_request_status.py +5 -0
- vellum/client/resources/documents/__init__.py +2 -0
- vellum/client/resources/documents/client.py +781 -0
- vellum/client/resources/folder_entities/__init__.py +5 -0
- vellum/client/resources/folder_entities/client.py +333 -0
- vellum/client/resources/folder_entities/types/__init__.py +5 -0
- vellum/client/resources/folder_entities/types/folder_entities_list_request_entity_status.py +5 -0
- vellum/client/resources/metric_definitions/__init__.py +2 -0
- vellum/client/resources/metric_definitions/client.py +178 -0
- vellum/client/resources/sandboxes/__init__.py +2 -0
- vellum/client/resources/sandboxes/client.py +481 -0
- vellum/client/resources/test_suite_runs/__init__.py +2 -0
- vellum/client/resources/test_suite_runs/client.py +445 -0
- vellum/client/resources/test_suites/__init__.py +2 -0
- vellum/client/resources/test_suites/client.py +688 -0
- vellum/client/resources/workflow_deployments/__init__.py +5 -0
- vellum/client/resources/workflow_deployments/client.py +693 -0
- vellum/client/resources/workflow_deployments/types/__init__.py +6 -0
- vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py +5 -0
- vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py +5 -0
- vellum/client/resources/workflow_sandboxes/__init__.py +2 -0
- vellum/client/resources/workflow_sandboxes/client.py +190 -0
- vellum/client/resources/workflows/__init__.py +5 -0
- vellum/client/resources/workflows/client.py +333 -0
- vellum/client/resources/workflows/types/__init__.py +5 -0
- vellum/client/resources/workflows/types/workflows_pull_request_format.py +5 -0
- vellum/client/resources/workspace_secrets/__init__.py +2 -0
- vellum/client/resources/workspace_secrets/client.py +266 -0
- vellum/client/types/__init__.py +979 -0
- vellum/client/types/ad_hoc_execute_prompt_event.py +14 -0
- vellum/client/types/ad_hoc_expand_meta.py +37 -0
- vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py +27 -0
- vellum/client/types/ad_hoc_initiated_prompt_execution_meta.py +24 -0
- vellum/client/types/ad_hoc_rejected_prompt_execution_meta.py +25 -0
- vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py +23 -0
- vellum/client/types/add_openai_api_key_enum.py +3 -0
- vellum/client/types/api_node_result.py +25 -0
- vellum/client/types/api_node_result_data.py +28 -0
- vellum/client/types/array_chat_message_content.py +25 -0
- vellum/client/types/array_chat_message_content_item.py +11 -0
- vellum/client/types/array_chat_message_content_item_request.py +14 -0
- vellum/client/types/array_chat_message_content_request.py +25 -0
- vellum/client/types/array_input.py +36 -0
- vellum/client/types/array_variable_value.py +27 -0
- vellum/client/types/array_variable_value_item.py +29 -0
- vellum/client/types/array_vellum_value.py +31 -0
- vellum/client/types/array_vellum_value_request.py +31 -0
- vellum/client/types/audio_chat_message_content.py +25 -0
- vellum/client/types/audio_chat_message_content_request.py +25 -0
- vellum/client/types/audio_variable_value.py +25 -0
- vellum/client/types/audio_vellum_value.py +25 -0
- vellum/client/types/audio_vellum_value_request.py +25 -0
- vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py +24 -0
- vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py +24 -0
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py +26 -0
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py +26 -0
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py +26 -0
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py +26 -0
- vellum/client/types/chat_history_input.py +30 -0
- vellum/client/types/chat_history_input_request.py +30 -0
- vellum/client/types/chat_history_variable_value.py +21 -0
- vellum/client/types/chat_history_vellum_value.py +25 -0
- vellum/client/types/chat_history_vellum_value_request.py +25 -0
- vellum/client/types/chat_message.py +27 -0
- vellum/client/types/chat_message_content.py +16 -0
- vellum/client/types/chat_message_content_request.py +16 -0
- vellum/client/types/chat_message_prompt_block.py +39 -0
- vellum/client/types/chat_message_request.py +27 -0
- vellum/client/types/chat_message_role.py +5 -0
- vellum/client/types/code_execution_node_array_result.py +28 -0
- vellum/client/types/code_execution_node_chat_history_result.py +22 -0
- vellum/client/types/code_execution_node_error_result.py +22 -0
- vellum/client/types/code_execution_node_function_call_result.py +22 -0
- vellum/client/types/code_execution_node_json_result.py +21 -0
- vellum/client/types/code_execution_node_number_result.py +21 -0
- vellum/client/types/code_execution_node_result.py +31 -0
- vellum/client/types/code_execution_node_result_data.py +27 -0
- vellum/client/types/code_execution_node_result_output.py +22 -0
- vellum/client/types/code_execution_node_search_results_result.py +22 -0
- vellum/client/types/code_execution_node_string_result.py +21 -0
- vellum/client/types/code_execution_package.py +20 -0
- vellum/client/types/code_execution_runtime.py +5 -0
- vellum/client/types/code_executor_input.py +24 -0
- vellum/client/types/code_executor_response.py +27 -0
- vellum/client/types/code_executor_secret_input.py +29 -0
- vellum/client/types/compile_prompt_deployment_expand_meta_request.py +32 -0
- vellum/client/types/compile_prompt_meta.py +25 -0
- vellum/client/types/components_schemas_pdf_search_result_meta_source.py +5 -0
- vellum/client/types/components_schemas_pdf_search_result_meta_source_request.py +5 -0
- vellum/client/types/condition_combinator.py +5 -0
- vellum/client/types/conditional_node_result.py +25 -0
- vellum/client/types/conditional_node_result_data.py +19 -0
- vellum/client/types/container_image_read.py +28 -0
- vellum/client/types/create_test_suite_test_case_request.py +48 -0
- vellum/client/types/deployment_provider_payload_response.py +22 -0
- vellum/client/types/deployment_provider_payload_response_payload.py +5 -0
- vellum/client/types/deployment_read.py +73 -0
- vellum/client/types/deployment_release_tag_deployment_history_item.py +21 -0
- vellum/client/types/deployment_release_tag_read.py +37 -0
- vellum/client/types/docker_service_token.py +21 -0
- vellum/client/types/document_document_to_document_index.py +39 -0
- vellum/client/types/document_index_chunking.py +8 -0
- vellum/client/types/document_index_chunking_request.py +10 -0
- vellum/client/types/document_index_indexing_config.py +22 -0
- vellum/client/types/document_index_indexing_config_request.py +22 -0
- vellum/client/types/document_index_read.py +52 -0
- vellum/client/types/document_processing_state.py +7 -0
- vellum/client/types/document_read.py +49 -0
- vellum/client/types/document_status.py +5 -0
- vellum/client/types/enriched_normalized_completion.py +59 -0
- vellum/client/types/entity_status.py +5 -0
- vellum/client/types/entity_visibility.py +5 -0
- vellum/client/types/environment_enum.py +5 -0
- vellum/client/types/ephemeral_prompt_cache_config.py +20 -0
- vellum/client/types/ephemeral_prompt_cache_config_type_enum.py +5 -0
- vellum/client/types/error_input.py +30 -0
- vellum/client/types/error_variable_value.py +21 -0
- vellum/client/types/error_vellum_value.py +25 -0
- vellum/client/types/error_vellum_value_request.py +25 -0
- vellum/client/types/execute_prompt_event.py +11 -0
- vellum/client/types/execute_prompt_response.py +7 -0
- vellum/client/types/execute_workflow_response.py +29 -0
- vellum/client/types/execute_workflow_workflow_result_event.py +9 -0
- vellum/client/types/execution_array_vellum_value.py +37 -0
- vellum/client/types/execution_chat_history_vellum_value.py +31 -0
- vellum/client/types/execution_error_vellum_value.py +31 -0
- vellum/client/types/execution_function_call_vellum_value.py +31 -0
- vellum/client/types/execution_json_vellum_value.py +30 -0
- vellum/client/types/execution_number_vellum_value.py +30 -0
- vellum/client/types/execution_search_results_vellum_value.py +31 -0
- vellum/client/types/execution_string_vellum_value.py +30 -0
- vellum/client/types/execution_vellum_value.py +22 -0
- vellum/client/types/external_test_case_execution.py +31 -0
- vellum/client/types/external_test_case_execution_request.py +31 -0
- vellum/client/types/finish_reason_enum.py +5 -0
- vellum/client/types/folder_entity.py +16 -0
- vellum/client/types/folder_entity_document_index.py +26 -0
- vellum/client/types/folder_entity_document_index_data.py +25 -0
- vellum/client/types/folder_entity_folder.py +26 -0
- vellum/client/types/folder_entity_folder_data.py +24 -0
- vellum/client/types/folder_entity_prompt_sandbox.py +26 -0
- vellum/client/types/folder_entity_prompt_sandbox_data.py +26 -0
- vellum/client/types/folder_entity_test_suite.py +26 -0
- vellum/client/types/folder_entity_test_suite_data.py +25 -0
- vellum/client/types/folder_entity_workflow_sandbox.py +26 -0
- vellum/client/types/folder_entity_workflow_sandbox_data.py +26 -0
- vellum/client/types/fulfilled_ad_hoc_execute_prompt_event.py +28 -0
- vellum/client/types/fulfilled_enum.py +5 -0
- vellum/client/types/fulfilled_execute_prompt_event.py +28 -0
- vellum/client/types/fulfilled_execute_prompt_response.py +37 -0
- vellum/client/types/fulfilled_execute_workflow_workflow_result_event.py +36 -0
- vellum/client/types/fulfilled_prompt_execution_meta.py +27 -0
- vellum/client/types/fulfilled_workflow_node_result_event.py +40 -0
- vellum/client/types/function_call.py +27 -0
- vellum/client/types/function_call_chat_message_content.py +25 -0
- vellum/client/types/function_call_chat_message_content_request.py +25 -0
- vellum/client/types/function_call_chat_message_content_value.py +25 -0
- vellum/client/types/function_call_chat_message_content_value_request.py +25 -0
- vellum/client/types/function_call_input.py +30 -0
- vellum/client/types/function_call_request.py +27 -0
- vellum/client/types/function_call_variable_value.py +21 -0
- vellum/client/types/function_call_vellum_value.py +25 -0
- vellum/client/types/function_call_vellum_value_request.py +25 -0
- vellum/client/types/function_definition.py +31 -0
- vellum/client/types/generate_options_request.py +26 -0
- vellum/client/types/generate_request.py +33 -0
- vellum/client/types/generate_response.py +38 -0
- vellum/client/types/generate_result.py +29 -0
- vellum/client/types/generate_result_data.py +23 -0
- vellum/client/types/generate_result_error.py +22 -0
- vellum/client/types/generate_stream_response.py +20 -0
- vellum/client/types/generate_stream_result.py +23 -0
- vellum/client/types/generate_stream_result_data.py +21 -0
- vellum/client/types/google_vertex_ai_vectorizer_config.py +20 -0
- vellum/client/types/google_vertex_ai_vectorizer_config_request.py +20 -0
- vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004.py +21 -0
- vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004_request.py +21 -0
- vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py +21 -0
- vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py +21 -0
- vellum/client/types/hkunlp_instructor_xl_vectorizer.py +25 -0
- vellum/client/types/hkunlp_instructor_xl_vectorizer_request.py +25 -0
- vellum/client/types/image_chat_message_content.py +25 -0
- vellum/client/types/image_chat_message_content_request.py +25 -0
- vellum/client/types/image_variable_value.py +25 -0
- vellum/client/types/image_vellum_value.py +25 -0
- vellum/client/types/image_vellum_value_request.py +25 -0
- vellum/client/types/indexing_config_vectorizer.py +30 -0
- vellum/client/types/indexing_config_vectorizer_request.py +30 -0
- vellum/client/types/indexing_state_enum.py +7 -0
- vellum/client/types/initiated_ad_hoc_execute_prompt_event.py +26 -0
- vellum/client/types/initiated_execute_prompt_event.py +26 -0
- vellum/client/types/initiated_prompt_execution_meta.py +26 -0
- vellum/client/types/initiated_workflow_node_result_event.py +39 -0
- vellum/client/types/instructor_vectorizer_config.py +25 -0
- vellum/client/types/instructor_vectorizer_config_request.py +25 -0
- vellum/client/types/iteration_state_enum.py +5 -0
- vellum/client/types/jinja_prompt_block.py +28 -0
- vellum/client/types/json_input.py +29 -0
- vellum/client/types/json_input_request.py +29 -0
- vellum/client/types/json_variable_value.py +20 -0
- vellum/client/types/json_vellum_value.py +24 -0
- vellum/client/types/json_vellum_value_request.py +24 -0
- vellum/client/types/logical_operator.py +29 -0
- vellum/client/types/logprobs_enum.py +5 -0
- vellum/client/types/map_node_result.py +25 -0
- vellum/client/types/map_node_result_data.py +21 -0
- vellum/client/types/merge_node_result.py +25 -0
- vellum/client/types/merge_node_result_data.py +19 -0
- vellum/client/types/metadata_filter_config_request.py +36 -0
- vellum/client/types/metadata_filter_rule_combinator.py +5 -0
- vellum/client/types/metadata_filter_rule_request.py +31 -0
- vellum/client/types/metadata_filters_request.py +7 -0
- vellum/client/types/metric_definition_execution.py +20 -0
- vellum/client/types/metric_definition_input.py +9 -0
- vellum/client/types/metric_node_result.py +23 -0
- vellum/client/types/ml_model_usage.py +25 -0
- vellum/client/types/named_scenario_input_chat_history_variable_value_request.py +26 -0
- vellum/client/types/named_scenario_input_json_variable_value_request.py +25 -0
- vellum/client/types/named_scenario_input_request.py +12 -0
- vellum/client/types/named_scenario_input_string_variable_value_request.py +25 -0
- vellum/client/types/named_test_case_array_variable_value.py +32 -0
- vellum/client/types/named_test_case_array_variable_value_request.py +34 -0
- vellum/client/types/named_test_case_chat_history_variable_value.py +26 -0
- vellum/client/types/named_test_case_chat_history_variable_value_request.py +26 -0
- vellum/client/types/named_test_case_error_variable_value.py +26 -0
- vellum/client/types/named_test_case_error_variable_value_request.py +26 -0
- vellum/client/types/named_test_case_function_call_variable_value.py +26 -0
- vellum/client/types/named_test_case_function_call_variable_value_request.py +26 -0
- vellum/client/types/named_test_case_json_variable_value.py +25 -0
- vellum/client/types/named_test_case_json_variable_value_request.py +25 -0
- vellum/client/types/named_test_case_number_variable_value.py +25 -0
- vellum/client/types/named_test_case_number_variable_value_request.py +25 -0
- vellum/client/types/named_test_case_search_results_variable_value.py +26 -0
- vellum/client/types/named_test_case_search_results_variable_value_request.py +26 -0
- vellum/client/types/named_test_case_string_variable_value.py +25 -0
- vellum/client/types/named_test_case_string_variable_value_request.py +25 -0
- vellum/client/types/named_test_case_variable_value.py +22 -0
- vellum/client/types/named_test_case_variable_value_request.py +22 -0
- vellum/client/types/node_input_compiled_array_value.py +29 -0
- vellum/client/types/node_input_compiled_chat_history_value.py +23 -0
- vellum/client/types/node_input_compiled_error_value.py +23 -0
- vellum/client/types/node_input_compiled_function_call_value.py +23 -0
- vellum/client/types/node_input_compiled_json_value.py +22 -0
- vellum/client/types/node_input_compiled_number_value.py +22 -0
- vellum/client/types/node_input_compiled_search_results_value.py +23 -0
- vellum/client/types/node_input_compiled_string_value.py +22 -0
- vellum/client/types/node_input_variable_compiled_value.py +22 -0
- vellum/client/types/node_output_compiled_array_value.py +34 -0
- vellum/client/types/node_output_compiled_chat_history_value.py +28 -0
- vellum/client/types/node_output_compiled_error_value.py +28 -0
- vellum/client/types/node_output_compiled_function_call_value.py +28 -0
- vellum/client/types/node_output_compiled_json_value.py +27 -0
- vellum/client/types/node_output_compiled_number_value.py +27 -0
- vellum/client/types/node_output_compiled_search_results_value.py +28 -0
- vellum/client/types/node_output_compiled_string_value.py +27 -0
- vellum/client/types/node_output_compiled_value.py +22 -0
- vellum/client/types/normalized_log_probs.py +21 -0
- vellum/client/types/normalized_token_log_probs.py +22 -0
- vellum/client/types/number_input.py +29 -0
- vellum/client/types/number_variable_value.py +20 -0
- vellum/client/types/number_vellum_value.py +24 -0
- vellum/client/types/number_vellum_value_request.py +24 -0
- vellum/client/types/open_ai_vectorizer_config.py +24 -0
- vellum/client/types/open_ai_vectorizer_config_request.py +24 -0
- vellum/client/types/open_ai_vectorizer_text_embedding_3_large.py +25 -0
- vellum/client/types/open_ai_vectorizer_text_embedding_3_large_request.py +25 -0
- vellum/client/types/open_ai_vectorizer_text_embedding_3_small.py +25 -0
- vellum/client/types/open_ai_vectorizer_text_embedding_3_small_request.py +25 -0
- vellum/client/types/open_ai_vectorizer_text_embedding_ada_002.py +25 -0
- vellum/client/types/open_ai_vectorizer_text_embedding_ada_002_request.py +25 -0
- vellum/client/types/paginated_container_image_read_list.py +23 -0
- vellum/client/types/paginated_deployment_release_tag_read_list.py +23 -0
- vellum/client/types/paginated_document_index_read_list.py +23 -0
- vellum/client/types/paginated_folder_entity_list.py +23 -0
- vellum/client/types/paginated_slim_deployment_read_list.py +29 -0
- vellum/client/types/paginated_slim_document_list.py +23 -0
- vellum/client/types/paginated_slim_workflow_deployment_list.py +29 -0
- vellum/client/types/paginated_test_suite_run_execution_list.py +29 -0
- vellum/client/types/paginated_test_suite_test_case_list.py +29 -0
- vellum/client/types/paginated_workflow_release_tag_read_list.py +23 -0
- vellum/client/types/pdf_search_result_meta_source.py +32 -0
- vellum/client/types/pdf_search_result_meta_source_request.py +32 -0
- vellum/client/types/plain_text_prompt_block.py +28 -0
- vellum/client/types/price.py +21 -0
- vellum/client/types/processing_failure_reason_enum.py +5 -0
- vellum/client/types/prompt_block.py +12 -0
- vellum/client/types/prompt_block_state.py +5 -0
- vellum/client/types/prompt_deployment_expand_meta_request.py +52 -0
- vellum/client/types/prompt_deployment_input_request.py +8 -0
- vellum/client/types/prompt_execution_meta.py +32 -0
- vellum/client/types/prompt_node_execution_meta.py +24 -0
- vellum/client/types/prompt_node_result.py +25 -0
- vellum/client/types/prompt_node_result_data.py +25 -0
- vellum/client/types/prompt_output.py +9 -0
- vellum/client/types/prompt_parameters.py +27 -0
- vellum/client/types/prompt_request_chat_history_input.py +26 -0
- vellum/client/types/prompt_request_input.py +8 -0
- vellum/client/types/prompt_request_json_input.py +25 -0
- vellum/client/types/prompt_request_string_input.py +25 -0
- vellum/client/types/prompt_settings.py +19 -0
- vellum/client/types/raw_prompt_execution_overrides_request.py +28 -0
- vellum/client/types/reducto_chunker_config.py +23 -0
- vellum/client/types/reducto_chunker_config_request.py +23 -0
- vellum/client/types/reducto_chunking.py +25 -0
- vellum/client/types/reducto_chunking_request.py +25 -0
- vellum/client/types/rejected_ad_hoc_execute_prompt_event.py +28 -0
- vellum/client/types/rejected_execute_prompt_event.py +28 -0
- vellum/client/types/rejected_execute_prompt_response.py +37 -0
- vellum/client/types/rejected_execute_workflow_workflow_result_event.py +28 -0
- vellum/client/types/rejected_prompt_execution_meta.py +25 -0
- vellum/client/types/rejected_workflow_node_result_event.py +39 -0
- vellum/client/types/release_tag_source.py +5 -0
- vellum/client/types/replace_test_suite_test_case_request.py +53 -0
- vellum/client/types/rich_text_child_block.py +7 -0
- vellum/client/types/rich_text_prompt_block.py +29 -0
- vellum/client/types/sandbox_scenario.py +33 -0
- vellum/client/types/scenario_input.py +10 -0
- vellum/client/types/scenario_input_chat_history_variable_value.py +26 -0
- vellum/client/types/scenario_input_json_variable_value.py +25 -0
- vellum/client/types/scenario_input_string_variable_value.py +25 -0
- vellum/client/types/search_filters_request.py +38 -0
- vellum/client/types/search_node_result.py +25 -0
- vellum/client/types/search_node_result_data.py +27 -0
- vellum/client/types/search_request_options_request.py +50 -0
- vellum/client/types/search_response.py +23 -0
- vellum/client/types/search_result.py +40 -0
- vellum/client/types/search_result_document.py +37 -0
- vellum/client/types/search_result_document_request.py +37 -0
- vellum/client/types/search_result_merging_request.py +22 -0
- vellum/client/types/search_result_meta.py +20 -0
- vellum/client/types/search_result_meta_request.py +20 -0
- vellum/client/types/search_result_request.py +40 -0
- vellum/client/types/search_results_input.py +30 -0
- vellum/client/types/search_results_variable_value.py +21 -0
- vellum/client/types/search_results_vellum_value.py +25 -0
- vellum/client/types/search_results_vellum_value_request.py +25 -0
- vellum/client/types/search_weights_request.py +27 -0
- vellum/client/types/secret_type_enum.py +5 -0
- vellum/client/types/sentence_chunker_config.py +24 -0
- vellum/client/types/sentence_chunker_config_request.py +24 -0
- vellum/client/types/sentence_chunking.py +25 -0
- vellum/client/types/sentence_chunking_request.py +25 -0
- vellum/client/types/slim_deployment_read.py +63 -0
- vellum/client/types/slim_document.py +70 -0
- vellum/client/types/slim_workflow_deployment.py +72 -0
- vellum/client/types/streaming_ad_hoc_execute_prompt_event.py +33 -0
- vellum/client/types/streaming_execute_prompt_event.py +33 -0
- vellum/client/types/streaming_prompt_execution_meta.py +23 -0
- vellum/client/types/streaming_workflow_node_result_event.py +40 -0
- vellum/client/types/string_chat_message_content.py +24 -0
- vellum/client/types/string_chat_message_content_request.py +24 -0
- vellum/client/types/string_input.py +29 -0
- vellum/client/types/string_input_request.py +29 -0
- vellum/client/types/string_variable_value.py +20 -0
- vellum/client/types/string_vellum_value.py +24 -0
- vellum/client/types/string_vellum_value_request.py +24 -0
- vellum/client/types/submit_completion_actual_request.py +48 -0
- vellum/client/types/submit_workflow_execution_actual_request.py +10 -0
- vellum/client/types/subworkflow_node_result.py +25 -0
- vellum/client/types/subworkflow_node_result_data.py +19 -0
- vellum/client/types/templating_node_array_result.py +28 -0
- vellum/client/types/templating_node_chat_history_result.py +22 -0
- vellum/client/types/templating_node_error_result.py +22 -0
- vellum/client/types/templating_node_function_call_result.py +22 -0
- vellum/client/types/templating_node_json_result.py +21 -0
- vellum/client/types/templating_node_number_result.py +21 -0
- vellum/client/types/templating_node_result.py +31 -0
- vellum/client/types/templating_node_result_data.py +26 -0
- vellum/client/types/templating_node_result_output.py +22 -0
- vellum/client/types/templating_node_search_results_result.py +22 -0
- vellum/client/types/templating_node_string_result.py +21 -0
- vellum/client/types/terminal_node_array_result.py +33 -0
- vellum/client/types/terminal_node_chat_history_result.py +27 -0
- vellum/client/types/terminal_node_error_result.py +27 -0
- vellum/client/types/terminal_node_function_call_result.py +27 -0
- vellum/client/types/terminal_node_json_result.py +26 -0
- vellum/client/types/terminal_node_number_result.py +26 -0
- vellum/client/types/terminal_node_result.py +31 -0
- vellum/client/types/terminal_node_result_data.py +26 -0
- vellum/client/types/terminal_node_result_output.py +22 -0
- vellum/client/types/terminal_node_search_results_result.py +27 -0
- vellum/client/types/terminal_node_string_result.py +26 -0
- vellum/client/types/test_case_array_variable_value.py +33 -0
- vellum/client/types/test_case_chat_history_variable_value.py +27 -0
- vellum/client/types/test_case_error_variable_value.py +27 -0
- vellum/client/types/test_case_function_call_variable_value.py +27 -0
- vellum/client/types/test_case_json_variable_value.py +26 -0
- vellum/client/types/test_case_number_variable_value.py +26 -0
- vellum/client/types/test_case_search_results_variable_value.py +27 -0
- vellum/client/types/test_case_string_variable_value.py +26 -0
- vellum/client/types/test_case_variable_value.py +22 -0
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config.py +29 -0
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py +27 -0
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +27 -0
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_request.py +31 -0
- vellum/client/types/test_suite_run_exec_config.py +10 -0
- vellum/client/types/test_suite_run_exec_config_request.py +12 -0
- vellum/client/types/test_suite_run_execution.py +30 -0
- vellum/client/types/test_suite_run_execution_array_output.py +33 -0
- vellum/client/types/test_suite_run_execution_chat_history_output.py +27 -0
- vellum/client/types/test_suite_run_execution_error_output.py +27 -0
- vellum/client/types/test_suite_run_execution_function_call_output.py +27 -0
- vellum/client/types/test_suite_run_execution_json_output.py +26 -0
- vellum/client/types/test_suite_run_execution_metric_definition.py +21 -0
- vellum/client/types/test_suite_run_execution_metric_result.py +24 -0
- vellum/client/types/test_suite_run_execution_number_output.py +26 -0
- vellum/client/types/test_suite_run_execution_output.py +22 -0
- vellum/client/types/test_suite_run_execution_search_results_output.py +27 -0
- vellum/client/types/test_suite_run_execution_string_output.py +26 -0
- vellum/client/types/test_suite_run_external_exec_config.py +36 -0
- vellum/client/types/test_suite_run_external_exec_config_data.py +29 -0
- vellum/client/types/test_suite_run_external_exec_config_data_request.py +31 -0
- vellum/client/types/test_suite_run_external_exec_config_request.py +38 -0
- vellum/client/types/test_suite_run_metric_error_output.py +26 -0
- vellum/client/types/test_suite_run_metric_json_output.py +25 -0
- vellum/client/types/test_suite_run_metric_number_output.py +25 -0
- vellum/client/types/test_suite_run_metric_output.py +14 -0
- vellum/client/types/test_suite_run_metric_string_output.py +25 -0
- vellum/client/types/test_suite_run_read.py +46 -0
- vellum/client/types/test_suite_run_state.py +5 -0
- vellum/client/types/test_suite_run_test_suite.py +21 -0
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config.py +29 -0
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data.py +27 -0
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +27 -0
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_request.py +31 -0
- vellum/client/types/test_suite_test_case.py +30 -0
- vellum/client/types/test_suite_test_case_bulk_operation_request.py +14 -0
- vellum/client/types/test_suite_test_case_bulk_result.py +14 -0
- vellum/client/types/test_suite_test_case_create_bulk_operation_request.py +38 -0
- vellum/client/types/test_suite_test_case_created_bulk_result.py +26 -0
- vellum/client/types/test_suite_test_case_created_bulk_result_data.py +23 -0
- vellum/client/types/test_suite_test_case_delete_bulk_operation_data_request.py +19 -0
- vellum/client/types/test_suite_test_case_delete_bulk_operation_request.py +33 -0
- vellum/client/types/test_suite_test_case_deleted_bulk_result.py +30 -0
- vellum/client/types/test_suite_test_case_deleted_bulk_result_data.py +23 -0
- vellum/client/types/test_suite_test_case_rejected_bulk_result.py +32 -0
- vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py +38 -0
- vellum/client/types/test_suite_test_case_replaced_bulk_result.py +30 -0
- vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py +23 -0
- vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py +38 -0
- vellum/client/types/token_overlapping_window_chunker_config.py +24 -0
- vellum/client/types/token_overlapping_window_chunker_config_request.py +24 -0
- vellum/client/types/token_overlapping_window_chunking.py +25 -0
- vellum/client/types/token_overlapping_window_chunking_request.py +25 -0
- vellum/client/types/unit_enum.py +5 -0
- vellum/client/types/upload_document_response.py +22 -0
- vellum/client/types/upsert_test_suite_test_case_request.py +49 -0
- vellum/client/types/variable_prompt_block.py +28 -0
- vellum/client/types/vellum_audio.py +24 -0
- vellum/client/types/vellum_audio_request.py +24 -0
- vellum/client/types/vellum_error.py +21 -0
- vellum/client/types/vellum_error_code_enum.py +15 -0
- vellum/client/types/vellum_error_request.py +21 -0
- vellum/client/types/vellum_image.py +20 -0
- vellum/client/types/vellum_image_request.py +20 -0
- vellum/client/types/vellum_value.py +29 -0
- vellum/client/types/vellum_value_logical_condition_group_request.py +38 -0
- vellum/client/types/vellum_value_logical_condition_request.py +34 -0
- vellum/client/types/vellum_value_logical_expression_request.py +12 -0
- vellum/client/types/vellum_value_request.py +29 -0
- vellum/client/types/vellum_variable.py +33 -0
- vellum/client/types/vellum_variable_extensions.py +23 -0
- vellum/client/types/vellum_variable_type.py +20 -0
- vellum/client/types/workflow_deployment_read.py +77 -0
- vellum/client/types/workflow_event_error.py +21 -0
- vellum/client/types/workflow_execution_actual_chat_history_request.py +49 -0
- vellum/client/types/workflow_execution_actual_json_request.py +48 -0
- vellum/client/types/workflow_execution_actual_string_request.py +48 -0
- vellum/client/types/workflow_execution_event_error_code.py +17 -0
- vellum/client/types/workflow_execution_event_type.py +5 -0
- vellum/client/types/workflow_execution_node_result_event.py +34 -0
- vellum/client/types/workflow_execution_workflow_result_event.py +36 -0
- vellum/client/types/workflow_expand_meta_request.py +22 -0
- vellum/client/types/workflow_node_result_data.py +28 -0
- vellum/client/types/workflow_node_result_event.py +14 -0
- vellum/client/types/workflow_node_result_event_state.py +7 -0
- vellum/client/types/workflow_output.py +24 -0
- vellum/client/types/workflow_output_array.py +37 -0
- vellum/client/types/workflow_output_chat_history.py +31 -0
- vellum/client/types/workflow_output_error.py +31 -0
- vellum/client/types/workflow_output_function_call.py +31 -0
- vellum/client/types/workflow_output_image.py +31 -0
- vellum/client/types/workflow_output_json.py +30 -0
- vellum/client/types/workflow_output_number.py +30 -0
- vellum/client/types/workflow_output_search_results.py +31 -0
- vellum/client/types/workflow_output_string.py +30 -0
- vellum/client/types/workflow_push_deployment_config_request.py +22 -0
- vellum/client/types/workflow_push_exec_config.py +3 -0
- vellum/client/types/workflow_push_response.py +20 -0
- vellum/client/types/workflow_release_tag_read.py +37 -0
- vellum/client/types/workflow_release_tag_workflow_deployment_history_item.py +28 -0
- vellum/client/types/workflow_request_chat_history_input_request.py +30 -0
- vellum/client/types/workflow_request_input_request.py +14 -0
- vellum/client/types/workflow_request_json_input_request.py +29 -0
- vellum/client/types/workflow_request_number_input_request.py +29 -0
- vellum/client/types/workflow_request_string_input_request.py +29 -0
- vellum/client/types/workflow_result_event.py +39 -0
- vellum/client/types/workflow_result_event_output_data.py +22 -0
- vellum/client/types/workflow_result_event_output_data_array.py +41 -0
- vellum/client/types/workflow_result_event_output_data_chat_history.py +35 -0
- vellum/client/types/workflow_result_event_output_data_error.py +35 -0
- vellum/client/types/workflow_result_event_output_data_function_call.py +35 -0
- vellum/client/types/workflow_result_event_output_data_json.py +34 -0
- vellum/client/types/workflow_result_event_output_data_number.py +34 -0
- vellum/client/types/workflow_result_event_output_data_search_results.py +35 -0
- vellum/client/types/workflow_result_event_output_data_string.py +37 -0
- vellum/client/types/workflow_stream_event.py +7 -0
- vellum/client/types/workspace_secret_read.py +25 -0
- vellum/core/__init__.py +2 -46
- vellum/core/api_error.py +2 -14
- vellum/core/client_wrapper.py +2 -58
- vellum/core/datetime_utils.py +2 -27
- vellum/core/file.py +2 -61
- vellum/core/http_client.py +2 -486
- vellum/core/jsonable_encoder.py +2 -100
- vellum/core/pydantic_utilities.py +2 -295
- vellum/core/query_encoder.py +2 -57
- vellum/core/remove_none_from_dict.py +2 -10
- vellum/core/request_options.py +2 -31
- vellum/core/serialization.py +2 -271
- vellum/environment.py +2 -16
- vellum/errors/__init__.py +2 -7
- vellum/errors/bad_request_error.py +2 -8
- vellum/errors/forbidden_error.py +2 -8
- vellum/errors/internal_server_error.py +2 -8
- vellum/errors/not_found_error.py +2 -8
- vellum/{lib/test_suites → evaluations}/resources.py +20 -51
- vellum/plugins/__init__.py +0 -0
- vellum/plugins/pydantic.py +74 -0
- vellum/plugins/utils.py +19 -0
- vellum/plugins/vellum_mypy.py +647 -0
- vellum/resources/__init__.py +2 -46
- vellum/resources/ad_hoc/__init__.py +2 -1
- vellum/resources/ad_hoc/client.py +2 -458
- vellum/resources/container_images/__init__.py +2 -1
- vellum/resources/container_images/client.py +2 -501
- vellum/resources/deployments/__init__.py +2 -4
- vellum/resources/deployments/client.py +2 -974
- vellum/resources/deployments/types/__init__.py +2 -5
- vellum/resources/deployments/types/deployments_list_request_status.py +2 -4
- vellum/resources/deployments/types/list_deployment_release_tags_request_source.py +2 -4
- vellum/resources/document_indexes/__init__.py +2 -4
- vellum/resources/document_indexes/client.py +2 -1153
- vellum/resources/document_indexes/types/__init__.py +2 -4
- vellum/resources/document_indexes/types/document_indexes_list_request_status.py +2 -4
- vellum/resources/documents/__init__.py +2 -1
- vellum/resources/documents/client.py +2 -780
- vellum/resources/folder_entities/__init__.py +2 -4
- vellum/resources/folder_entities/client.py +2 -332
- vellum/resources/folder_entities/types/__init__.py +2 -4
- vellum/resources/folder_entities/types/folder_entities_list_request_entity_status.py +2 -4
- vellum/resources/metric_definitions/__init__.py +2 -1
- vellum/resources/metric_definitions/client.py +2 -177
- vellum/resources/sandboxes/__init__.py +2 -1
- vellum/resources/sandboxes/client.py +2 -480
- vellum/resources/test_suite_runs/__init__.py +2 -1
- vellum/resources/test_suite_runs/client.py +2 -444
- vellum/resources/test_suites/__init__.py +2 -1
- vellum/resources/test_suites/client.py +2 -687
- vellum/resources/workflow_deployments/__init__.py +2 -4
- vellum/resources/workflow_deployments/client.py +2 -692
- vellum/resources/workflow_deployments/types/__init__.py +2 -5
- vellum/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py +2 -4
- vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py +2 -4
- vellum/resources/workflow_sandboxes/__init__.py +2 -1
- vellum/resources/workflow_sandboxes/client.py +2 -189
- vellum/resources/workflows/__init__.py +2 -4
- vellum/resources/workflows/client.py +2 -332
- vellum/resources/workflows/types/__init__.py +2 -4
- vellum/resources/workflows/types/workflows_pull_request_format.py +2 -4
- vellum/resources/workspace_secrets/__init__.py +2 -1
- vellum/resources/workspace_secrets/client.py +2 -265
- vellum/types/__init__.py +2 -978
- vellum/types/ad_hoc_execute_prompt_event.py +2 -13
- vellum/types/ad_hoc_expand_meta.py +2 -36
- vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py +2 -26
- vellum/types/ad_hoc_initiated_prompt_execution_meta.py +2 -23
- vellum/types/ad_hoc_rejected_prompt_execution_meta.py +2 -24
- vellum/types/ad_hoc_streaming_prompt_execution_meta.py +2 -22
- vellum/types/add_openai_api_key_enum.py +2 -2
- vellum/types/api_node_result.py +2 -24
- vellum/types/api_node_result_data.py +2 -27
- vellum/types/array_chat_message_content.py +2 -24
- vellum/types/array_chat_message_content_item.py +2 -10
- vellum/types/array_chat_message_content_item_request.py +2 -13
- vellum/types/array_chat_message_content_request.py +2 -24
- vellum/types/array_input.py +2 -35
- vellum/types/array_variable_value.py +2 -26
- vellum/types/array_variable_value_item.py +2 -28
- vellum/types/array_vellum_value.py +2 -30
- vellum/types/array_vellum_value_request.py +2 -30
- vellum/types/audio_chat_message_content.py +2 -24
- vellum/types/audio_chat_message_content_request.py +2 -24
- vellum/types/audio_variable_value.py +2 -24
- vellum/types/audio_vellum_value.py +2 -24
- vellum/types/audio_vellum_value_request.py +2 -24
- vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py +2 -23
- vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py +2 -23
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py +2 -25
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py +2 -25
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py +2 -25
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py +2 -25
- vellum/types/chat_history_input.py +2 -29
- vellum/types/chat_history_input_request.py +2 -29
- vellum/types/chat_history_variable_value.py +2 -20
- vellum/types/chat_history_vellum_value.py +2 -24
- vellum/types/chat_history_vellum_value_request.py +2 -24
- vellum/types/chat_message.py +2 -26
- vellum/types/chat_message_content.py +2 -15
- vellum/types/chat_message_content_request.py +2 -15
- vellum/types/chat_message_prompt_block.py +2 -38
- vellum/types/chat_message_request.py +2 -26
- vellum/types/chat_message_role.py +2 -4
- vellum/types/code_execution_node_array_result.py +2 -27
- vellum/types/code_execution_node_chat_history_result.py +2 -21
- vellum/types/code_execution_node_error_result.py +2 -21
- vellum/types/code_execution_node_function_call_result.py +2 -21
- vellum/types/code_execution_node_json_result.py +2 -20
- vellum/types/code_execution_node_number_result.py +2 -20
- vellum/types/code_execution_node_result.py +2 -30
- vellum/types/code_execution_node_result_data.py +2 -26
- vellum/types/code_execution_node_result_output.py +2 -21
- vellum/types/code_execution_node_search_results_result.py +2 -21
- vellum/types/code_execution_node_string_result.py +2 -20
- vellum/types/code_execution_package.py +2 -19
- vellum/types/code_execution_runtime.py +2 -4
- vellum/types/code_executor_input.py +2 -23
- vellum/types/code_executor_response.py +2 -26
- vellum/types/code_executor_secret_input.py +2 -28
- vellum/types/compile_prompt_deployment_expand_meta_request.py +2 -31
- vellum/types/compile_prompt_meta.py +2 -24
- vellum/types/components_schemas_pdf_search_result_meta_source.py +2 -4
- vellum/types/components_schemas_pdf_search_result_meta_source_request.py +2 -4
- vellum/types/condition_combinator.py +2 -4
- vellum/types/conditional_node_result.py +2 -24
- vellum/types/conditional_node_result_data.py +2 -18
- vellum/types/container_image_read.py +2 -27
- vellum/types/create_test_suite_test_case_request.py +2 -47
- vellum/types/deployment_provider_payload_response.py +2 -21
- vellum/types/deployment_provider_payload_response_payload.py +2 -4
- vellum/types/deployment_read.py +2 -72
- vellum/types/deployment_release_tag_deployment_history_item.py +2 -20
- vellum/types/deployment_release_tag_read.py +2 -36
- vellum/types/docker_service_token.py +2 -20
- vellum/types/document_document_to_document_index.py +2 -38
- vellum/types/document_index_chunking.py +2 -7
- vellum/types/document_index_chunking_request.py +2 -9
- vellum/types/document_index_indexing_config.py +2 -21
- vellum/types/document_index_indexing_config_request.py +2 -21
- vellum/types/document_index_read.py +2 -51
- vellum/types/document_processing_state.py +2 -6
- vellum/types/document_read.py +2 -48
- vellum/types/document_status.py +2 -4
- vellum/types/enriched_normalized_completion.py +2 -58
- vellum/types/entity_status.py +2 -4
- vellum/types/entity_visibility.py +2 -4
- vellum/types/environment_enum.py +2 -4
- vellum/types/ephemeral_prompt_cache_config.py +2 -19
- vellum/types/ephemeral_prompt_cache_config_type_enum.py +2 -4
- vellum/types/error_input.py +2 -29
- vellum/types/error_variable_value.py +2 -20
- vellum/types/error_vellum_value.py +2 -24
- vellum/types/error_vellum_value_request.py +2 -24
- vellum/types/execute_prompt_event.py +2 -10
- vellum/types/execute_prompt_response.py +2 -6
- vellum/types/execute_workflow_response.py +2 -28
- vellum/types/execute_workflow_workflow_result_event.py +2 -8
- vellum/types/execution_array_vellum_value.py +2 -36
- vellum/types/execution_chat_history_vellum_value.py +2 -30
- vellum/types/execution_error_vellum_value.py +2 -30
- vellum/types/execution_function_call_vellum_value.py +2 -30
- vellum/types/execution_json_vellum_value.py +2 -29
- vellum/types/execution_number_vellum_value.py +2 -29
- vellum/types/execution_search_results_vellum_value.py +2 -30
- vellum/types/execution_string_vellum_value.py +2 -29
- vellum/types/execution_vellum_value.py +2 -21
- vellum/types/external_test_case_execution.py +2 -30
- vellum/types/external_test_case_execution_request.py +2 -30
- vellum/types/finish_reason_enum.py +2 -4
- vellum/types/folder_entity.py +2 -15
- vellum/types/folder_entity_document_index.py +2 -25
- vellum/types/folder_entity_document_index_data.py +2 -24
- vellum/types/folder_entity_folder.py +2 -25
- vellum/types/folder_entity_folder_data.py +2 -23
- vellum/types/folder_entity_prompt_sandbox.py +2 -25
- vellum/types/folder_entity_prompt_sandbox_data.py +2 -25
- vellum/types/folder_entity_test_suite.py +2 -25
- vellum/types/folder_entity_test_suite_data.py +2 -24
- vellum/types/folder_entity_workflow_sandbox.py +2 -25
- vellum/types/folder_entity_workflow_sandbox_data.py +2 -25
- vellum/types/fulfilled_ad_hoc_execute_prompt_event.py +2 -27
- vellum/types/fulfilled_enum.py +2 -4
- vellum/types/fulfilled_execute_prompt_event.py +2 -27
- vellum/types/fulfilled_execute_prompt_response.py +2 -36
- vellum/types/fulfilled_execute_workflow_workflow_result_event.py +2 -35
- vellum/types/fulfilled_prompt_execution_meta.py +2 -26
- vellum/types/fulfilled_workflow_node_result_event.py +2 -39
- vellum/types/function_call.py +2 -26
- vellum/types/function_call_chat_message_content.py +2 -24
- vellum/types/function_call_chat_message_content_request.py +2 -24
- vellum/types/function_call_chat_message_content_value.py +2 -24
- vellum/types/function_call_chat_message_content_value_request.py +2 -24
- vellum/types/function_call_input.py +2 -29
- vellum/types/function_call_request.py +2 -26
- vellum/types/function_call_variable_value.py +2 -20
- vellum/types/function_call_vellum_value.py +2 -24
- vellum/types/function_call_vellum_value_request.py +2 -24
- vellum/types/function_definition.py +2 -30
- vellum/types/generate_options_request.py +2 -25
- vellum/types/generate_request.py +2 -32
- vellum/types/generate_response.py +2 -24
- vellum/types/generate_result.py +2 -28
- vellum/types/generate_result_data.py +2 -22
- vellum/types/generate_result_error.py +2 -21
- vellum/types/generate_stream_response.py +2 -19
- vellum/types/generate_stream_result.py +2 -22
- vellum/types/generate_stream_result_data.py +2 -20
- vellum/types/google_vertex_ai_vectorizer_config.py +2 -19
- vellum/types/google_vertex_ai_vectorizer_config_request.py +2 -19
- vellum/types/google_vertex_ai_vectorizer_text_embedding_004.py +2 -20
- vellum/types/google_vertex_ai_vectorizer_text_embedding_004_request.py +2 -20
- vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py +2 -20
- vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py +2 -20
- vellum/types/hkunlp_instructor_xl_vectorizer.py +2 -24
- vellum/types/hkunlp_instructor_xl_vectorizer_request.py +2 -24
- vellum/types/image_chat_message_content.py +2 -24
- vellum/types/image_chat_message_content_request.py +2 -24
- vellum/types/image_variable_value.py +2 -24
- vellum/types/image_vellum_value.py +2 -24
- vellum/types/image_vellum_value_request.py +2 -24
- vellum/types/indexing_config_vectorizer.py +2 -29
- vellum/types/indexing_config_vectorizer_request.py +2 -29
- vellum/types/indexing_state_enum.py +2 -6
- vellum/types/initiated_ad_hoc_execute_prompt_event.py +2 -25
- vellum/types/initiated_execute_prompt_event.py +2 -25
- vellum/types/initiated_prompt_execution_meta.py +2 -25
- vellum/types/initiated_workflow_node_result_event.py +2 -38
- vellum/types/instructor_vectorizer_config.py +2 -24
- vellum/types/instructor_vectorizer_config_request.py +2 -24
- vellum/types/iteration_state_enum.py +2 -4
- vellum/types/jinja_prompt_block.py +2 -27
- vellum/types/json_input.py +2 -28
- vellum/types/json_input_request.py +2 -28
- vellum/types/json_variable_value.py +2 -19
- vellum/types/json_vellum_value.py +2 -23
- vellum/types/json_vellum_value_request.py +2 -23
- vellum/types/logical_operator.py +2 -28
- vellum/types/logprobs_enum.py +2 -4
- vellum/types/map_node_result.py +2 -24
- vellum/types/map_node_result_data.py +2 -20
- vellum/types/merge_node_result.py +2 -24
- vellum/types/merge_node_result_data.py +2 -18
- vellum/types/metadata_filter_config_request.py +2 -35
- vellum/types/metadata_filter_rule_combinator.py +2 -4
- vellum/types/metadata_filter_rule_request.py +2 -30
- vellum/types/metadata_filters_request.py +2 -6
- vellum/types/metric_definition_execution.py +2 -19
- vellum/types/metric_definition_input.py +2 -8
- vellum/types/metric_node_result.py +2 -22
- vellum/types/ml_model_usage.py +2 -24
- vellum/types/named_scenario_input_chat_history_variable_value_request.py +2 -25
- vellum/types/named_scenario_input_json_variable_value_request.py +2 -24
- vellum/types/named_scenario_input_request.py +2 -11
- vellum/types/named_scenario_input_string_variable_value_request.py +2 -24
- vellum/types/named_test_case_array_variable_value.py +2 -31
- vellum/types/named_test_case_array_variable_value_request.py +2 -33
- vellum/types/named_test_case_chat_history_variable_value.py +2 -25
- vellum/types/named_test_case_chat_history_variable_value_request.py +2 -25
- vellum/types/named_test_case_error_variable_value.py +2 -25
- vellum/types/named_test_case_error_variable_value_request.py +2 -25
- vellum/types/named_test_case_function_call_variable_value.py +2 -25
- vellum/types/named_test_case_function_call_variable_value_request.py +2 -25
- vellum/types/named_test_case_json_variable_value.py +2 -24
- vellum/types/named_test_case_json_variable_value_request.py +2 -24
- vellum/types/named_test_case_number_variable_value.py +2 -24
- vellum/types/named_test_case_number_variable_value_request.py +2 -24
- vellum/types/named_test_case_search_results_variable_value.py +2 -25
- vellum/types/named_test_case_search_results_variable_value_request.py +2 -25
- vellum/types/named_test_case_string_variable_value.py +2 -24
- vellum/types/named_test_case_string_variable_value_request.py +2 -24
- vellum/types/named_test_case_variable_value.py +2 -21
- vellum/types/named_test_case_variable_value_request.py +2 -21
- vellum/types/node_input_compiled_array_value.py +2 -28
- vellum/types/node_input_compiled_chat_history_value.py +2 -22
- vellum/types/node_input_compiled_error_value.py +2 -22
- vellum/types/node_input_compiled_function_call_value.py +2 -22
- vellum/types/node_input_compiled_json_value.py +2 -21
- vellum/types/node_input_compiled_number_value.py +2 -21
- vellum/types/node_input_compiled_search_results_value.py +2 -22
- vellum/types/node_input_compiled_string_value.py +2 -21
- vellum/types/node_input_variable_compiled_value.py +2 -21
- vellum/types/node_output_compiled_array_value.py +2 -33
- vellum/types/node_output_compiled_chat_history_value.py +2 -27
- vellum/types/node_output_compiled_error_value.py +2 -27
- vellum/types/node_output_compiled_function_call_value.py +2 -27
- vellum/types/node_output_compiled_json_value.py +2 -26
- vellum/types/node_output_compiled_number_value.py +2 -26
- vellum/types/node_output_compiled_search_results_value.py +2 -27
- vellum/types/node_output_compiled_string_value.py +2 -26
- vellum/types/node_output_compiled_value.py +2 -21
- vellum/types/normalized_log_probs.py +2 -20
- vellum/types/normalized_token_log_probs.py +2 -21
- vellum/types/number_input.py +2 -28
- vellum/types/number_variable_value.py +2 -19
- vellum/types/number_vellum_value.py +2 -23
- vellum/types/number_vellum_value_request.py +2 -23
- vellum/types/open_ai_vectorizer_config.py +2 -23
- vellum/types/open_ai_vectorizer_config_request.py +2 -23
- vellum/types/open_ai_vectorizer_text_embedding_3_large.py +2 -24
- vellum/types/open_ai_vectorizer_text_embedding_3_large_request.py +2 -24
- vellum/types/open_ai_vectorizer_text_embedding_3_small.py +2 -24
- vellum/types/open_ai_vectorizer_text_embedding_3_small_request.py +2 -24
- vellum/types/open_ai_vectorizer_text_embedding_ada_002.py +2 -24
- vellum/types/open_ai_vectorizer_text_embedding_ada_002_request.py +2 -24
- vellum/types/paginated_container_image_read_list.py +2 -22
- vellum/types/paginated_deployment_release_tag_read_list.py +2 -22
- vellum/types/paginated_document_index_read_list.py +2 -22
- vellum/types/paginated_folder_entity_list.py +2 -22
- vellum/types/paginated_slim_deployment_read_list.py +2 -28
- vellum/types/paginated_slim_document_list.py +2 -22
- vellum/types/paginated_slim_workflow_deployment_list.py +2 -28
- vellum/types/paginated_test_suite_run_execution_list.py +2 -28
- vellum/types/paginated_test_suite_test_case_list.py +2 -28
- vellum/types/paginated_workflow_release_tag_read_list.py +2 -22
- vellum/types/pdf_search_result_meta_source.py +2 -31
- vellum/types/pdf_search_result_meta_source_request.py +2 -31
- vellum/types/plain_text_prompt_block.py +2 -27
- vellum/types/price.py +2 -20
- vellum/types/processing_failure_reason_enum.py +2 -4
- vellum/types/prompt_block.py +2 -11
- vellum/types/prompt_block_state.py +2 -4
- vellum/types/prompt_deployment_expand_meta_request.py +2 -51
- vellum/types/prompt_deployment_input_request.py +2 -7
- vellum/types/prompt_execution_meta.py +2 -31
- vellum/types/prompt_node_execution_meta.py +2 -23
- vellum/types/prompt_node_result.py +2 -24
- vellum/types/prompt_node_result_data.py +2 -24
- vellum/types/prompt_output.py +2 -8
- vellum/types/prompt_parameters.py +2 -26
- vellum/types/prompt_request_chat_history_input.py +2 -25
- vellum/types/prompt_request_input.py +2 -7
- vellum/types/prompt_request_json_input.py +2 -24
- vellum/types/prompt_request_string_input.py +2 -24
- vellum/types/prompt_settings.py +2 -18
- vellum/types/raw_prompt_execution_overrides_request.py +2 -27
- vellum/types/reducto_chunker_config.py +2 -22
- vellum/types/reducto_chunker_config_request.py +2 -22
- vellum/types/reducto_chunking.py +2 -24
- vellum/types/reducto_chunking_request.py +2 -24
- vellum/types/rejected_ad_hoc_execute_prompt_event.py +2 -27
- vellum/types/rejected_execute_prompt_event.py +2 -27
- vellum/types/rejected_execute_prompt_response.py +2 -36
- vellum/types/rejected_execute_workflow_workflow_result_event.py +2 -27
- vellum/types/rejected_prompt_execution_meta.py +2 -24
- vellum/types/rejected_workflow_node_result_event.py +2 -38
- vellum/types/release_tag_source.py +2 -4
- vellum/types/replace_test_suite_test_case_request.py +2 -52
- vellum/types/rich_text_child_block.py +2 -6
- vellum/types/rich_text_prompt_block.py +2 -28
- vellum/types/sandbox_scenario.py +2 -32
- vellum/types/scenario_input.py +2 -9
- vellum/types/scenario_input_chat_history_variable_value.py +2 -25
- vellum/types/scenario_input_json_variable_value.py +2 -24
- vellum/types/scenario_input_string_variable_value.py +2 -24
- vellum/types/search_filters_request.py +2 -37
- vellum/types/search_node_result.py +2 -24
- vellum/types/search_node_result_data.py +2 -26
- vellum/types/search_request_options_request.py +2 -49
- vellum/types/search_response.py +2 -22
- vellum/types/search_result.py +2 -39
- vellum/types/search_result_document.py +2 -36
- vellum/types/search_result_document_request.py +2 -36
- vellum/types/search_result_merging_request.py +2 -21
- vellum/types/search_result_meta.py +2 -19
- vellum/types/search_result_meta_request.py +2 -19
- vellum/types/search_result_request.py +2 -39
- vellum/types/search_results_input.py +2 -29
- vellum/types/search_results_variable_value.py +2 -20
- vellum/types/search_results_vellum_value.py +2 -24
- vellum/types/search_results_vellum_value_request.py +2 -24
- vellum/types/search_weights_request.py +2 -26
- vellum/types/secret_type_enum.py +2 -4
- vellum/types/sentence_chunker_config.py +2 -23
- vellum/types/sentence_chunker_config_request.py +2 -23
- vellum/types/sentence_chunking.py +2 -24
- vellum/types/sentence_chunking_request.py +2 -24
- vellum/types/slim_deployment_read.py +2 -62
- vellum/types/slim_document.py +2 -69
- vellum/types/slim_workflow_deployment.py +2 -71
- vellum/types/streaming_ad_hoc_execute_prompt_event.py +2 -32
- vellum/types/streaming_execute_prompt_event.py +2 -32
- vellum/types/streaming_prompt_execution_meta.py +2 -22
- vellum/types/streaming_workflow_node_result_event.py +2 -39
- vellum/types/string_chat_message_content.py +2 -23
- vellum/types/string_chat_message_content_request.py +2 -23
- vellum/types/string_input.py +2 -28
- vellum/types/string_input_request.py +2 -28
- vellum/types/string_variable_value.py +2 -19
- vellum/types/string_vellum_value.py +2 -23
- vellum/types/string_vellum_value_request.py +2 -23
- vellum/types/submit_completion_actual_request.py +2 -47
- vellum/types/submit_workflow_execution_actual_request.py +2 -9
- vellum/types/subworkflow_node_result.py +2 -24
- vellum/types/subworkflow_node_result_data.py +2 -18
- vellum/types/templating_node_array_result.py +2 -27
- vellum/types/templating_node_chat_history_result.py +2 -21
- vellum/types/templating_node_error_result.py +2 -21
- vellum/types/templating_node_function_call_result.py +2 -21
- vellum/types/templating_node_json_result.py +2 -20
- vellum/types/templating_node_number_result.py +2 -20
- vellum/types/templating_node_result.py +2 -30
- vellum/types/templating_node_result_data.py +2 -25
- vellum/types/templating_node_result_output.py +2 -21
- vellum/types/templating_node_search_results_result.py +2 -21
- vellum/types/templating_node_string_result.py +2 -20
- vellum/types/terminal_node_array_result.py +2 -32
- vellum/types/terminal_node_chat_history_result.py +2 -26
- vellum/types/terminal_node_error_result.py +2 -26
- vellum/types/terminal_node_function_call_result.py +2 -26
- vellum/types/terminal_node_json_result.py +2 -25
- vellum/types/terminal_node_number_result.py +2 -25
- vellum/types/terminal_node_result.py +2 -30
- vellum/types/terminal_node_result_data.py +2 -25
- vellum/types/terminal_node_result_output.py +2 -21
- vellum/types/terminal_node_search_results_result.py +2 -26
- vellum/types/terminal_node_string_result.py +2 -25
- vellum/types/test_case_array_variable_value.py +2 -32
- vellum/types/test_case_chat_history_variable_value.py +2 -26
- vellum/types/test_case_error_variable_value.py +2 -26
- vellum/types/test_case_function_call_variable_value.py +2 -26
- vellum/types/test_case_json_variable_value.py +2 -25
- vellum/types/test_case_number_variable_value.py +2 -25
- vellum/types/test_case_search_results_variable_value.py +2 -26
- vellum/types/test_case_string_variable_value.py +2 -25
- vellum/types/test_case_variable_value.py +2 -21
- vellum/types/test_suite_run_deployment_release_tag_exec_config.py +2 -28
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py +2 -26
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +2 -26
- vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py +2 -30
- vellum/types/test_suite_run_exec_config.py +2 -9
- vellum/types/test_suite_run_exec_config_request.py +2 -11
- vellum/types/test_suite_run_execution.py +2 -29
- vellum/types/test_suite_run_execution_array_output.py +2 -32
- vellum/types/test_suite_run_execution_chat_history_output.py +2 -26
- vellum/types/test_suite_run_execution_error_output.py +2 -26
- vellum/types/test_suite_run_execution_function_call_output.py +2 -26
- vellum/types/test_suite_run_execution_json_output.py +2 -25
- vellum/types/test_suite_run_execution_metric_definition.py +2 -20
- vellum/types/test_suite_run_execution_metric_result.py +2 -23
- vellum/types/test_suite_run_execution_number_output.py +2 -25
- vellum/types/test_suite_run_execution_output.py +2 -21
- vellum/types/test_suite_run_execution_search_results_output.py +2 -26
- vellum/types/test_suite_run_execution_string_output.py +2 -25
- vellum/types/test_suite_run_external_exec_config.py +2 -35
- vellum/types/test_suite_run_external_exec_config_data.py +2 -28
- vellum/types/test_suite_run_external_exec_config_data_request.py +2 -30
- vellum/types/test_suite_run_external_exec_config_request.py +2 -37
- vellum/types/test_suite_run_metric_error_output.py +2 -25
- vellum/types/test_suite_run_metric_json_output.py +2 -24
- vellum/types/test_suite_run_metric_number_output.py +2 -24
- vellum/types/test_suite_run_metric_output.py +2 -13
- vellum/types/test_suite_run_metric_string_output.py +2 -24
- vellum/types/test_suite_run_read.py +2 -45
- vellum/types/test_suite_run_state.py +2 -4
- vellum/types/test_suite_run_test_suite.py +2 -20
- vellum/types/test_suite_run_workflow_release_tag_exec_config.py +2 -28
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py +2 -26
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +2 -26
- vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py +2 -30
- vellum/types/test_suite_test_case.py +2 -29
- vellum/types/test_suite_test_case_bulk_operation_request.py +2 -13
- vellum/types/test_suite_test_case_bulk_result.py +2 -13
- vellum/types/test_suite_test_case_create_bulk_operation_request.py +2 -37
- vellum/types/test_suite_test_case_created_bulk_result.py +2 -25
- vellum/types/test_suite_test_case_created_bulk_result_data.py +2 -22
- vellum/types/test_suite_test_case_delete_bulk_operation_data_request.py +2 -18
- vellum/types/test_suite_test_case_delete_bulk_operation_request.py +2 -32
- vellum/types/test_suite_test_case_deleted_bulk_result.py +2 -29
- vellum/types/test_suite_test_case_deleted_bulk_result_data.py +2 -22
- vellum/types/test_suite_test_case_rejected_bulk_result.py +2 -31
- vellum/types/test_suite_test_case_replace_bulk_operation_request.py +2 -37
- vellum/types/test_suite_test_case_replaced_bulk_result.py +2 -29
- vellum/types/test_suite_test_case_replaced_bulk_result_data.py +2 -22
- vellum/types/test_suite_test_case_upsert_bulk_operation_request.py +2 -37
- vellum/types/token_overlapping_window_chunker_config.py +2 -23
- vellum/types/token_overlapping_window_chunker_config_request.py +2 -23
- vellum/types/token_overlapping_window_chunking.py +2 -24
- vellum/types/token_overlapping_window_chunking_request.py +2 -24
- vellum/types/unit_enum.py +2 -4
- vellum/types/upload_document_response.py +2 -21
- vellum/types/upsert_test_suite_test_case_request.py +2 -48
- vellum/types/variable_prompt_block.py +2 -27
- vellum/types/vellum_audio.py +2 -23
- vellum/types/vellum_audio_request.py +2 -23
- vellum/types/vellum_error.py +2 -20
- vellum/types/vellum_error_code_enum.py +2 -14
- vellum/types/vellum_error_request.py +2 -20
- vellum/types/vellum_image.py +2 -19
- vellum/types/vellum_image_request.py +2 -19
- vellum/types/vellum_value.py +2 -28
- vellum/types/vellum_value_logical_condition_group_request.py +2 -37
- vellum/types/vellum_value_logical_condition_request.py +2 -33
- vellum/types/vellum_value_logical_expression_request.py +2 -11
- vellum/types/vellum_value_request.py +2 -28
- vellum/types/vellum_variable.py +2 -32
- vellum/types/vellum_variable_extensions.py +2 -22
- vellum/types/vellum_variable_type.py +2 -19
- vellum/types/workflow_deployment_read.py +2 -76
- vellum/types/workflow_event_error.py +2 -20
- vellum/types/workflow_execution_actual_chat_history_request.py +2 -48
- vellum/types/workflow_execution_actual_json_request.py +2 -47
- vellum/types/workflow_execution_actual_string_request.py +2 -47
- vellum/types/workflow_execution_event_error_code.py +2 -16
- vellum/types/workflow_execution_event_type.py +2 -4
- vellum/types/workflow_execution_node_result_event.py +2 -33
- vellum/types/workflow_execution_workflow_result_event.py +2 -35
- vellum/types/workflow_expand_meta_request.py +2 -21
- vellum/types/workflow_node_result_data.py +2 -27
- vellum/types/workflow_node_result_event.py +2 -13
- vellum/types/workflow_node_result_event_state.py +2 -6
- vellum/types/workflow_output.py +2 -23
- vellum/types/workflow_output_array.py +2 -36
- vellum/types/workflow_output_chat_history.py +2 -30
- vellum/types/workflow_output_error.py +2 -30
- vellum/types/workflow_output_function_call.py +2 -30
- vellum/types/workflow_output_image.py +2 -30
- vellum/types/workflow_output_json.py +2 -29
- vellum/types/workflow_output_number.py +2 -29
- vellum/types/workflow_output_search_results.py +2 -30
- vellum/types/workflow_output_string.py +2 -29
- vellum/types/workflow_push_deployment_config_request.py +2 -21
- vellum/types/workflow_push_exec_config.py +2 -2
- vellum/types/workflow_push_response.py +2 -19
- vellum/types/workflow_release_tag_read.py +2 -36
- vellum/types/workflow_release_tag_workflow_deployment_history_item.py +2 -27
- vellum/types/workflow_request_chat_history_input_request.py +2 -29
- vellum/types/workflow_request_input_request.py +2 -13
- vellum/types/workflow_request_json_input_request.py +2 -28
- vellum/types/workflow_request_number_input_request.py +2 -28
- vellum/types/workflow_request_string_input_request.py +2 -28
- vellum/types/workflow_result_event.py +2 -38
- vellum/types/workflow_result_event_output_data.py +2 -21
- vellum/types/workflow_result_event_output_data_array.py +2 -40
- vellum/types/workflow_result_event_output_data_chat_history.py +2 -34
- vellum/types/workflow_result_event_output_data_error.py +2 -34
- vellum/types/workflow_result_event_output_data_function_call.py +2 -34
- vellum/types/workflow_result_event_output_data_json.py +2 -33
- vellum/types/workflow_result_event_output_data_number.py +2 -33
- vellum/types/workflow_result_event_output_data_search_results.py +2 -34
- vellum/types/workflow_result_event_output_data_string.py +2 -36
- vellum/types/workflow_stream_event.py +2 -6
- vellum/types/workspace_secret_read.py +2 -24
- vellum/workflows/README.md +90 -0
- vellum/workflows/__init__.py +5 -0
- vellum/workflows/constants.py +43 -0
- vellum/workflows/descriptors/__init__.py +0 -0
- vellum/workflows/descriptors/base.py +339 -0
- vellum/workflows/descriptors/tests/test_utils.py +83 -0
- vellum/workflows/descriptors/utils.py +90 -0
- vellum/workflows/edges/__init__.py +5 -0
- vellum/workflows/edges/edge.py +23 -0
- vellum/workflows/emitters/__init__.py +5 -0
- vellum/workflows/emitters/base.py +14 -0
- vellum/workflows/environment/__init__.py +5 -0
- vellum/workflows/environment/environment.py +7 -0
- vellum/workflows/errors/__init__.py +6 -0
- vellum/workflows/errors/types.py +20 -0
- vellum/workflows/events/__init__.py +31 -0
- vellum/workflows/events/node.py +125 -0
- vellum/workflows/events/tests/__init__.py +0 -0
- vellum/workflows/events/tests/test_event.py +216 -0
- vellum/workflows/events/types.py +52 -0
- vellum/workflows/events/utils.py +5 -0
- vellum/workflows/events/workflow.py +139 -0
- vellum/workflows/exceptions.py +15 -0
- vellum/workflows/expressions/__init__.py +0 -0
- vellum/workflows/expressions/accessor.py +52 -0
- vellum/workflows/expressions/and_.py +32 -0
- vellum/workflows/expressions/begins_with.py +31 -0
- vellum/workflows/expressions/between.py +38 -0
- vellum/workflows/expressions/coalesce_expression.py +41 -0
- vellum/workflows/expressions/contains.py +30 -0
- vellum/workflows/expressions/does_not_begin_with.py +31 -0
- vellum/workflows/expressions/does_not_contain.py +30 -0
- vellum/workflows/expressions/does_not_end_with.py +31 -0
- vellum/workflows/expressions/does_not_equal.py +25 -0
- vellum/workflows/expressions/ends_with.py +31 -0
- vellum/workflows/expressions/equals.py +25 -0
- vellum/workflows/expressions/greater_than.py +33 -0
- vellum/workflows/expressions/greater_than_or_equal_to.py +33 -0
- vellum/workflows/expressions/in_.py +31 -0
- vellum/workflows/expressions/is_blank.py +24 -0
- vellum/workflows/expressions/is_not_blank.py +24 -0
- vellum/workflows/expressions/is_not_null.py +21 -0
- vellum/workflows/expressions/is_not_undefined.py +22 -0
- vellum/workflows/expressions/is_null.py +21 -0
- vellum/workflows/expressions/is_undefined.py +22 -0
- vellum/workflows/expressions/less_than.py +33 -0
- vellum/workflows/expressions/less_than_or_equal_to.py +33 -0
- vellum/workflows/expressions/not_between.py +38 -0
- vellum/workflows/expressions/not_in.py +31 -0
- vellum/workflows/expressions/or_.py +32 -0
- vellum/workflows/graph/__init__.py +3 -0
- vellum/workflows/graph/graph.py +131 -0
- vellum/workflows/graph/tests/__init__.py +0 -0
- vellum/workflows/graph/tests/test_graph.py +437 -0
- vellum/workflows/inputs/__init__.py +5 -0
- vellum/workflows/inputs/base.py +55 -0
- vellum/workflows/logging.py +14 -0
- vellum/workflows/nodes/__init__.py +46 -0
- vellum/workflows/nodes/bases/__init__.py +7 -0
- vellum/workflows/nodes/bases/base.py +332 -0
- vellum/workflows/nodes/bases/base_subworkflow_node/__init__.py +5 -0
- vellum/workflows/nodes/bases/base_subworkflow_node/node.py +10 -0
- vellum/workflows/nodes/bases/tests/__init__.py +0 -0
- vellum/workflows/nodes/bases/tests/test_base_node.py +125 -0
- vellum/workflows/nodes/core/__init__.py +16 -0
- vellum/workflows/nodes/core/error_node/__init__.py +5 -0
- vellum/workflows/nodes/core/error_node/node.py +26 -0
- vellum/workflows/nodes/core/inline_subworkflow_node/__init__.py +5 -0
- vellum/workflows/nodes/core/inline_subworkflow_node/node.py +73 -0
- vellum/workflows/nodes/core/map_node/__init__.py +5 -0
- vellum/workflows/nodes/core/map_node/node.py +147 -0
- vellum/workflows/nodes/core/map_node/tests/__init__.py +0 -0
- vellum/workflows/nodes/core/map_node/tests/test_node.py +65 -0
- vellum/workflows/nodes/core/retry_node/__init__.py +5 -0
- vellum/workflows/nodes/core/retry_node/node.py +106 -0
- vellum/workflows/nodes/core/retry_node/tests/__init__.py +0 -0
- vellum/workflows/nodes/core/retry_node/tests/test_node.py +93 -0
- vellum/workflows/nodes/core/templating_node/__init__.py +5 -0
- vellum/workflows/nodes/core/templating_node/custom_filters.py +12 -0
- vellum/workflows/nodes/core/templating_node/exceptions.py +2 -0
- vellum/workflows/nodes/core/templating_node/node.py +123 -0
- vellum/workflows/nodes/core/templating_node/render.py +55 -0
- vellum/workflows/nodes/core/templating_node/tests/test_templating_node.py +21 -0
- vellum/workflows/nodes/core/try_node/__init__.py +5 -0
- vellum/workflows/nodes/core/try_node/node.py +110 -0
- vellum/workflows/nodes/core/try_node/tests/__init__.py +0 -0
- vellum/workflows/nodes/core/try_node/tests/test_node.py +82 -0
- vellum/workflows/nodes/displayable/__init__.py +31 -0
- vellum/workflows/nodes/displayable/api_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/api_node/node.py +44 -0
- vellum/workflows/nodes/displayable/bases/__init__.py +11 -0
- vellum/workflows/nodes/displayable/bases/api_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/bases/api_node/node.py +70 -0
- vellum/workflows/nodes/displayable/bases/base_prompt_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py +60 -0
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/constants.py +13 -0
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py +118 -0
- vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py +98 -0
- vellum/workflows/nodes/displayable/bases/search_node.py +90 -0
- vellum/workflows/nodes/displayable/code_execution_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/code_execution_node/node.py +197 -0
- vellum/workflows/nodes/displayable/code_execution_node/tests/__init__.py +0 -0
- vellum/workflows/nodes/displayable/code_execution_node/tests/fixtures/__init__.py +0 -0
- vellum/workflows/nodes/displayable/code_execution_node/tests/fixtures/main.py +3 -0
- vellum/workflows/nodes/displayable/code_execution_node/tests/test_code_execution_node.py +111 -0
- vellum/workflows/nodes/displayable/code_execution_node/utils.py +10 -0
- vellum/workflows/nodes/displayable/conditional_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/conditional_node/node.py +25 -0
- vellum/workflows/nodes/displayable/final_output_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/final_output_node/node.py +43 -0
- vellum/workflows/nodes/displayable/guardrail_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/guardrail_node/node.py +97 -0
- vellum/workflows/nodes/displayable/inline_prompt_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/inline_prompt_node/node.py +41 -0
- vellum/workflows/nodes/displayable/merge_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/merge_node/node.py +10 -0
- vellum/workflows/nodes/displayable/prompt_deployment_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/prompt_deployment_node/node.py +45 -0
- vellum/workflows/nodes/displayable/search_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/search_node/node.py +26 -0
- vellum/workflows/nodes/displayable/subworkflow_deployment_node/__init__.py +5 -0
- vellum/workflows/nodes/displayable/subworkflow_deployment_node/node.py +156 -0
- vellum/workflows/nodes/displayable/tests/__init__.py +0 -0
- vellum/workflows/nodes/displayable/tests/test_inline_text_prompt_node.py +148 -0
- vellum/workflows/nodes/displayable/tests/test_search_node_wth_text_output.py +134 -0
- vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py +80 -0
- vellum/workflows/nodes/utils.py +27 -0
- vellum/workflows/outputs/__init__.py +6 -0
- vellum/workflows/outputs/base.py +196 -0
- vellum/workflows/ports/__init__.py +7 -0
- vellum/workflows/ports/node_ports.py +75 -0
- vellum/workflows/ports/port.py +75 -0
- vellum/workflows/ports/utils.py +40 -0
- vellum/workflows/references/__init__.py +17 -0
- vellum/workflows/references/environment_variable.py +20 -0
- vellum/workflows/references/execution_count.py +20 -0
- vellum/workflows/references/external_input.py +49 -0
- vellum/workflows/references/input.py +7 -0
- vellum/workflows/references/lazy.py +55 -0
- vellum/workflows/references/node.py +43 -0
- vellum/workflows/references/output.py +78 -0
- vellum/workflows/references/state_value.py +23 -0
- vellum/workflows/references/vellum_secret.py +15 -0
- vellum/workflows/references/workflow_input.py +41 -0
- vellum/workflows/resolvers/__init__.py +5 -0
- vellum/workflows/resolvers/base.py +15 -0
- vellum/workflows/runner/__init__.py +5 -0
- vellum/workflows/runner/runner.py +588 -0
- vellum/workflows/runner/types.py +18 -0
- vellum/workflows/state/__init__.py +5 -0
- vellum/workflows/state/base.py +327 -0
- vellum/workflows/state/context.py +18 -0
- vellum/workflows/state/encoder.py +57 -0
- vellum/workflows/state/store.py +28 -0
- vellum/workflows/state/tests/__init__.py +0 -0
- vellum/workflows/state/tests/test_state.py +113 -0
- vellum/workflows/types/__init__.py +0 -0
- vellum/workflows/types/core.py +91 -0
- vellum/workflows/types/generics.py +14 -0
- vellum/workflows/types/stack.py +39 -0
- vellum/workflows/types/tests/__init__.py +0 -0
- vellum/workflows/types/tests/test_utils.py +76 -0
- vellum/workflows/types/utils.py +164 -0
- vellum/workflows/utils/__init__.py +0 -0
- vellum/workflows/utils/names.py +13 -0
- vellum/workflows/utils/tests/__init__.py +0 -0
- vellum/workflows/utils/tests/test_names.py +15 -0
- vellum/workflows/utils/tests/test_vellum_variables.py +25 -0
- vellum/workflows/utils/vellum_variables.py +81 -0
- vellum/workflows/vellum_client.py +18 -0
- vellum/workflows/workflows/__init__.py +5 -0
- vellum/workflows/workflows/base.py +365 -0
- {vellum_ai-0.9.16.dist-info → vellum_ai-0.9.16rc4.dist-info}/LICENSE +11 -3
- vellum_ai-0.9.16rc4.dist-info/METADATA +120 -0
- vellum_ai-0.9.16rc4.dist-info/RECORD +1339 -0
- vellum_ai-0.9.16rc4.dist-info/entry_points.txt +3 -0
- vellum_cli/__init__.py +72 -0
- vellum_cli/aliased_group.py +103 -0
- vellum_cli/config.py +96 -0
- vellum_cli/image_push.py +112 -0
- vellum_cli/logger.py +36 -0
- vellum_cli/pull.py +73 -0
- vellum_cli/push.py +121 -0
- vellum_cli/tests/test_config.py +100 -0
- vellum_cli/tests/test_pull.py +152 -0
- vellum_ee/__init__.py +0 -0
- vellum_ee/workflows/__init__.py +0 -0
- vellum_ee/workflows/display/__init__.py +0 -0
- vellum_ee/workflows/display/base.py +73 -0
- vellum_ee/workflows/display/nodes/__init__.py +4 -0
- vellum_ee/workflows/display/nodes/base_node_display.py +116 -0
- vellum_ee/workflows/display/nodes/base_node_vellum_display.py +36 -0
- vellum_ee/workflows/display/nodes/get_node_display_class.py +25 -0
- vellum_ee/workflows/display/nodes/tests/__init__.py +0 -0
- vellum_ee/workflows/display/nodes/tests/test_base_node_display.py +47 -0
- vellum_ee/workflows/display/nodes/types.py +18 -0
- vellum_ee/workflows/display/nodes/utils.py +33 -0
- vellum_ee/workflows/display/nodes/vellum/__init__.py +32 -0
- vellum_ee/workflows/display/nodes/vellum/api_node.py +205 -0
- vellum_ee/workflows/display/nodes/vellum/code_execution_node.py +71 -0
- vellum_ee/workflows/display/nodes/vellum/conditional_node.py +217 -0
- vellum_ee/workflows/display/nodes/vellum/final_output_node.py +61 -0
- vellum_ee/workflows/display/nodes/vellum/guardrail_node.py +49 -0
- vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py +170 -0
- vellum_ee/workflows/display/nodes/vellum/inline_subworkflow_node.py +99 -0
- vellum_ee/workflows/display/nodes/vellum/map_node.py +100 -0
- vellum_ee/workflows/display/nodes/vellum/merge_node.py +48 -0
- vellum_ee/workflows/display/nodes/vellum/prompt_deployment_node.py +68 -0
- vellum_ee/workflows/display/nodes/vellum/search_node.py +193 -0
- vellum_ee/workflows/display/nodes/vellum/subworkflow_deployment_node.py +58 -0
- vellum_ee/workflows/display/nodes/vellum/templating_node.py +67 -0
- vellum_ee/workflows/display/nodes/vellum/tests/__init__.py +0 -0
- vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py +106 -0
- vellum_ee/workflows/display/nodes/vellum/try_node.py +38 -0
- vellum_ee/workflows/display/nodes/vellum/utils.py +76 -0
- vellum_ee/workflows/display/tests/__init__.py +0 -0
- vellum_ee/workflows/display/tests/workflow_serialization/__init__.py +0 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_api_node_serialization.py +426 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_code_execution_node_serialization.py +607 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_conditional_node_serialization.py +1175 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_guardrail_node_serialization.py +235 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_inline_subworkflow_serialization.py +511 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_map_node_serialization.py +372 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_merge_node_serialization.py +272 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_prompt_deployment_serialization.py +289 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py +354 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py +123 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py +84 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py +233 -0
- vellum_ee/workflows/display/types.py +46 -0
- vellum_ee/workflows/display/utils/__init__.py +0 -0
- vellum_ee/workflows/display/utils/tests/__init__.py +0 -0
- vellum_ee/workflows/display/utils/tests/test_uuids.py +16 -0
- vellum_ee/workflows/display/utils/uuids.py +24 -0
- vellum_ee/workflows/display/utils/vellum.py +121 -0
- vellum_ee/workflows/display/vellum.py +357 -0
- vellum_ee/workflows/display/workflows/__init__.py +5 -0
- vellum_ee/workflows/display/workflows/base_workflow_display.py +302 -0
- vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py +32 -0
- vellum_ee/workflows/display/workflows/vellum_workflow_display.py +386 -0
- vellum/lib/__init__.py +0 -5
- vellum_ai-0.9.16.dist-info/METADATA +0 -148
- vellum_ai-0.9.16.dist-info/RECORD +0 -558
- /vellum/{client.py → client/__init__.py} +0 -0
- /vellum/{lib/test_suites → evaluations}/__init__.py +0 -0
- /vellum/{lib/test_suites → evaluations}/constants.py +0 -0
- /vellum/{lib/test_suites → evaluations}/exceptions.py +0 -0
- /vellum/{lib → evaluations}/utils/__init__.py +0 -0
- /vellum/{lib → evaluations}/utils/env.py +0 -0
- /vellum/{lib → evaluations}/utils/exceptions.py +0 -0
- /vellum/{lib → evaluations}/utils/paginator.py +0 -0
- /vellum/{lib → evaluations}/utils/typing.py +0 -0
- /vellum/{lib → evaluations}/utils/uuid.py +0 -0
- {vellum_ai-0.9.16.dist-info → vellum_ai-0.9.16rc4.dist-info}/WHEEL +0 -0
@@ -0,0 +1,979 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from .ad_hoc_execute_prompt_event import AdHocExecutePromptEvent
|
4
|
+
from .ad_hoc_expand_meta import AdHocExpandMeta
|
5
|
+
from .ad_hoc_fulfilled_prompt_execution_meta import AdHocFulfilledPromptExecutionMeta
|
6
|
+
from .ad_hoc_initiated_prompt_execution_meta import AdHocInitiatedPromptExecutionMeta
|
7
|
+
from .ad_hoc_rejected_prompt_execution_meta import AdHocRejectedPromptExecutionMeta
|
8
|
+
from .ad_hoc_streaming_prompt_execution_meta import AdHocStreamingPromptExecutionMeta
|
9
|
+
from .add_openai_api_key_enum import AddOpenaiApiKeyEnum
|
10
|
+
from .api_node_result import ApiNodeResult
|
11
|
+
from .api_node_result_data import ApiNodeResultData
|
12
|
+
from .array_chat_message_content import ArrayChatMessageContent
|
13
|
+
from .array_chat_message_content_item import ArrayChatMessageContentItem
|
14
|
+
from .array_chat_message_content_item_request import ArrayChatMessageContentItemRequest
|
15
|
+
from .array_chat_message_content_request import ArrayChatMessageContentRequest
|
16
|
+
from .array_input import ArrayInput
|
17
|
+
from .array_variable_value import ArrayVariableValue
|
18
|
+
from .array_variable_value_item import ArrayVariableValueItem
|
19
|
+
from .array_vellum_value import ArrayVellumValue
|
20
|
+
from .array_vellum_value_request import ArrayVellumValueRequest
|
21
|
+
from .audio_chat_message_content import AudioChatMessageContent
|
22
|
+
from .audio_chat_message_content_request import AudioChatMessageContentRequest
|
23
|
+
from .audio_variable_value import AudioVariableValue
|
24
|
+
from .audio_vellum_value import AudioVellumValue
|
25
|
+
from .audio_vellum_value_request import AudioVellumValueRequest
|
26
|
+
from .basic_vectorizer_intfloat_multilingual_e_5_large import BasicVectorizerIntfloatMultilingualE5Large
|
27
|
+
from .basic_vectorizer_intfloat_multilingual_e_5_large_request import BasicVectorizerIntfloatMultilingualE5LargeRequest
|
28
|
+
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1 import (
|
29
|
+
BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1,
|
30
|
+
)
|
31
|
+
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request import (
|
32
|
+
BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request,
|
33
|
+
)
|
34
|
+
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1 import (
|
35
|
+
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1,
|
36
|
+
)
|
37
|
+
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request import (
|
38
|
+
BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request,
|
39
|
+
)
|
40
|
+
from .chat_history_input import ChatHistoryInput
|
41
|
+
from .chat_history_input_request import ChatHistoryInputRequest
|
42
|
+
from .chat_history_variable_value import ChatHistoryVariableValue
|
43
|
+
from .chat_history_vellum_value import ChatHistoryVellumValue
|
44
|
+
from .chat_history_vellum_value_request import ChatHistoryVellumValueRequest
|
45
|
+
from .chat_message import ChatMessage
|
46
|
+
from .chat_message_content import ChatMessageContent
|
47
|
+
from .chat_message_content_request import ChatMessageContentRequest
|
48
|
+
from .chat_message_prompt_block import ChatMessagePromptBlock
|
49
|
+
from .chat_message_request import ChatMessageRequest
|
50
|
+
from .chat_message_role import ChatMessageRole
|
51
|
+
from .code_execution_node_array_result import CodeExecutionNodeArrayResult
|
52
|
+
from .code_execution_node_chat_history_result import CodeExecutionNodeChatHistoryResult
|
53
|
+
from .code_execution_node_error_result import CodeExecutionNodeErrorResult
|
54
|
+
from .code_execution_node_function_call_result import CodeExecutionNodeFunctionCallResult
|
55
|
+
from .code_execution_node_json_result import CodeExecutionNodeJsonResult
|
56
|
+
from .code_execution_node_number_result import CodeExecutionNodeNumberResult
|
57
|
+
from .code_execution_node_result import CodeExecutionNodeResult
|
58
|
+
from .code_execution_node_result_data import CodeExecutionNodeResultData
|
59
|
+
from .code_execution_node_result_output import CodeExecutionNodeResultOutput
|
60
|
+
from .code_execution_node_search_results_result import CodeExecutionNodeSearchResultsResult
|
61
|
+
from .code_execution_node_string_result import CodeExecutionNodeStringResult
|
62
|
+
from .code_execution_package import CodeExecutionPackage
|
63
|
+
from .code_execution_runtime import CodeExecutionRuntime
|
64
|
+
from .code_executor_input import CodeExecutorInput
|
65
|
+
from .code_executor_response import CodeExecutorResponse
|
66
|
+
from .code_executor_secret_input import CodeExecutorSecretInput
|
67
|
+
from .compile_prompt_deployment_expand_meta_request import CompilePromptDeploymentExpandMetaRequest
|
68
|
+
from .compile_prompt_meta import CompilePromptMeta
|
69
|
+
from .components_schemas_pdf_search_result_meta_source import ComponentsSchemasPdfSearchResultMetaSource
|
70
|
+
from .components_schemas_pdf_search_result_meta_source_request import ComponentsSchemasPdfSearchResultMetaSourceRequest
|
71
|
+
from .condition_combinator import ConditionCombinator
|
72
|
+
from .conditional_node_result import ConditionalNodeResult
|
73
|
+
from .conditional_node_result_data import ConditionalNodeResultData
|
74
|
+
from .container_image_read import ContainerImageRead
|
75
|
+
from .create_test_suite_test_case_request import CreateTestSuiteTestCaseRequest
|
76
|
+
from .deployment_provider_payload_response import DeploymentProviderPayloadResponse
|
77
|
+
from .deployment_provider_payload_response_payload import DeploymentProviderPayloadResponsePayload
|
78
|
+
from .deployment_read import DeploymentRead
|
79
|
+
from .deployment_release_tag_deployment_history_item import DeploymentReleaseTagDeploymentHistoryItem
|
80
|
+
from .deployment_release_tag_read import DeploymentReleaseTagRead
|
81
|
+
from .docker_service_token import DockerServiceToken
|
82
|
+
from .document_document_to_document_index import DocumentDocumentToDocumentIndex
|
83
|
+
from .document_index_chunking import DocumentIndexChunking
|
84
|
+
from .document_index_chunking_request import DocumentIndexChunkingRequest
|
85
|
+
from .document_index_indexing_config import DocumentIndexIndexingConfig
|
86
|
+
from .document_index_indexing_config_request import DocumentIndexIndexingConfigRequest
|
87
|
+
from .document_index_read import DocumentIndexRead
|
88
|
+
from .document_processing_state import DocumentProcessingState
|
89
|
+
from .document_read import DocumentRead
|
90
|
+
from .document_status import DocumentStatus
|
91
|
+
from .enriched_normalized_completion import EnrichedNormalizedCompletion
|
92
|
+
from .entity_status import EntityStatus
|
93
|
+
from .entity_visibility import EntityVisibility
|
94
|
+
from .environment_enum import EnvironmentEnum
|
95
|
+
from .ephemeral_prompt_cache_config import EphemeralPromptCacheConfig
|
96
|
+
from .ephemeral_prompt_cache_config_type_enum import EphemeralPromptCacheConfigTypeEnum
|
97
|
+
from .error_input import ErrorInput
|
98
|
+
from .error_variable_value import ErrorVariableValue
|
99
|
+
from .error_vellum_value import ErrorVellumValue
|
100
|
+
from .error_vellum_value_request import ErrorVellumValueRequest
|
101
|
+
from .execute_prompt_event import ExecutePromptEvent
|
102
|
+
from .execute_prompt_response import ExecutePromptResponse
|
103
|
+
from .execute_workflow_response import ExecuteWorkflowResponse
|
104
|
+
from .execute_workflow_workflow_result_event import ExecuteWorkflowWorkflowResultEvent
|
105
|
+
from .execution_array_vellum_value import ExecutionArrayVellumValue
|
106
|
+
from .execution_chat_history_vellum_value import ExecutionChatHistoryVellumValue
|
107
|
+
from .execution_error_vellum_value import ExecutionErrorVellumValue
|
108
|
+
from .execution_function_call_vellum_value import ExecutionFunctionCallVellumValue
|
109
|
+
from .execution_json_vellum_value import ExecutionJsonVellumValue
|
110
|
+
from .execution_number_vellum_value import ExecutionNumberVellumValue
|
111
|
+
from .execution_search_results_vellum_value import ExecutionSearchResultsVellumValue
|
112
|
+
from .execution_string_vellum_value import ExecutionStringVellumValue
|
113
|
+
from .execution_vellum_value import ExecutionVellumValue
|
114
|
+
from .external_test_case_execution import ExternalTestCaseExecution
|
115
|
+
from .external_test_case_execution_request import ExternalTestCaseExecutionRequest
|
116
|
+
from .finish_reason_enum import FinishReasonEnum
|
117
|
+
from .folder_entity import FolderEntity
|
118
|
+
from .folder_entity_document_index import FolderEntityDocumentIndex
|
119
|
+
from .folder_entity_document_index_data import FolderEntityDocumentIndexData
|
120
|
+
from .folder_entity_folder import FolderEntityFolder
|
121
|
+
from .folder_entity_folder_data import FolderEntityFolderData
|
122
|
+
from .folder_entity_prompt_sandbox import FolderEntityPromptSandbox
|
123
|
+
from .folder_entity_prompt_sandbox_data import FolderEntityPromptSandboxData
|
124
|
+
from .folder_entity_test_suite import FolderEntityTestSuite
|
125
|
+
from .folder_entity_test_suite_data import FolderEntityTestSuiteData
|
126
|
+
from .folder_entity_workflow_sandbox import FolderEntityWorkflowSandbox
|
127
|
+
from .folder_entity_workflow_sandbox_data import FolderEntityWorkflowSandboxData
|
128
|
+
from .fulfilled_ad_hoc_execute_prompt_event import FulfilledAdHocExecutePromptEvent
|
129
|
+
from .fulfilled_enum import FulfilledEnum
|
130
|
+
from .fulfilled_execute_prompt_event import FulfilledExecutePromptEvent
|
131
|
+
from .fulfilled_execute_prompt_response import FulfilledExecutePromptResponse
|
132
|
+
from .fulfilled_execute_workflow_workflow_result_event import FulfilledExecuteWorkflowWorkflowResultEvent
|
133
|
+
from .fulfilled_prompt_execution_meta import FulfilledPromptExecutionMeta
|
134
|
+
from .fulfilled_workflow_node_result_event import FulfilledWorkflowNodeResultEvent
|
135
|
+
from .function_call import FunctionCall
|
136
|
+
from .function_call_chat_message_content import FunctionCallChatMessageContent
|
137
|
+
from .function_call_chat_message_content_request import FunctionCallChatMessageContentRequest
|
138
|
+
from .function_call_chat_message_content_value import FunctionCallChatMessageContentValue
|
139
|
+
from .function_call_chat_message_content_value_request import FunctionCallChatMessageContentValueRequest
|
140
|
+
from .function_call_input import FunctionCallInput
|
141
|
+
from .function_call_request import FunctionCallRequest
|
142
|
+
from .function_call_variable_value import FunctionCallVariableValue
|
143
|
+
from .function_call_vellum_value import FunctionCallVellumValue
|
144
|
+
from .function_call_vellum_value_request import FunctionCallVellumValueRequest
|
145
|
+
from .function_definition import FunctionDefinition
|
146
|
+
from .generate_options_request import GenerateOptionsRequest
|
147
|
+
from .generate_request import GenerateRequest
|
148
|
+
from .generate_response import GenerateResponse
|
149
|
+
from .generate_result import GenerateResult
|
150
|
+
from .generate_result_data import GenerateResultData
|
151
|
+
from .generate_result_error import GenerateResultError
|
152
|
+
from .generate_stream_response import GenerateStreamResponse
|
153
|
+
from .generate_stream_result import GenerateStreamResult
|
154
|
+
from .generate_stream_result_data import GenerateStreamResultData
|
155
|
+
from .google_vertex_ai_vectorizer_config import GoogleVertexAiVectorizerConfig
|
156
|
+
from .google_vertex_ai_vectorizer_config_request import GoogleVertexAiVectorizerConfigRequest
|
157
|
+
from .google_vertex_ai_vectorizer_text_embedding_004 import GoogleVertexAiVectorizerTextEmbedding004
|
158
|
+
from .google_vertex_ai_vectorizer_text_embedding_004_request import GoogleVertexAiVectorizerTextEmbedding004Request
|
159
|
+
from .google_vertex_ai_vectorizer_text_multilingual_embedding_002 import (
|
160
|
+
GoogleVertexAiVectorizerTextMultilingualEmbedding002,
|
161
|
+
)
|
162
|
+
from .google_vertex_ai_vectorizer_text_multilingual_embedding_002_request import (
|
163
|
+
GoogleVertexAiVectorizerTextMultilingualEmbedding002Request,
|
164
|
+
)
|
165
|
+
from .hkunlp_instructor_xl_vectorizer import HkunlpInstructorXlVectorizer
|
166
|
+
from .hkunlp_instructor_xl_vectorizer_request import HkunlpInstructorXlVectorizerRequest
|
167
|
+
from .image_chat_message_content import ImageChatMessageContent
|
168
|
+
from .image_chat_message_content_request import ImageChatMessageContentRequest
|
169
|
+
from .image_variable_value import ImageVariableValue
|
170
|
+
from .image_vellum_value import ImageVellumValue
|
171
|
+
from .image_vellum_value_request import ImageVellumValueRequest
|
172
|
+
from .indexing_config_vectorizer import IndexingConfigVectorizer
|
173
|
+
from .indexing_config_vectorizer_request import IndexingConfigVectorizerRequest
|
174
|
+
from .indexing_state_enum import IndexingStateEnum
|
175
|
+
from .initiated_ad_hoc_execute_prompt_event import InitiatedAdHocExecutePromptEvent
|
176
|
+
from .initiated_execute_prompt_event import InitiatedExecutePromptEvent
|
177
|
+
from .initiated_prompt_execution_meta import InitiatedPromptExecutionMeta
|
178
|
+
from .initiated_workflow_node_result_event import InitiatedWorkflowNodeResultEvent
|
179
|
+
from .instructor_vectorizer_config import InstructorVectorizerConfig
|
180
|
+
from .instructor_vectorizer_config_request import InstructorVectorizerConfigRequest
|
181
|
+
from .iteration_state_enum import IterationStateEnum
|
182
|
+
from .jinja_prompt_block import JinjaPromptBlock
|
183
|
+
from .json_input import JsonInput
|
184
|
+
from .json_input_request import JsonInputRequest
|
185
|
+
from .json_variable_value import JsonVariableValue
|
186
|
+
from .json_vellum_value import JsonVellumValue
|
187
|
+
from .json_vellum_value_request import JsonVellumValueRequest
|
188
|
+
from .logical_operator import LogicalOperator
|
189
|
+
from .logprobs_enum import LogprobsEnum
|
190
|
+
from .map_node_result import MapNodeResult
|
191
|
+
from .map_node_result_data import MapNodeResultData
|
192
|
+
from .merge_node_result import MergeNodeResult
|
193
|
+
from .merge_node_result_data import MergeNodeResultData
|
194
|
+
from .metadata_filter_config_request import MetadataFilterConfigRequest
|
195
|
+
from .metadata_filter_rule_combinator import MetadataFilterRuleCombinator
|
196
|
+
from .metadata_filter_rule_request import MetadataFilterRuleRequest
|
197
|
+
from .metadata_filters_request import MetadataFiltersRequest
|
198
|
+
from .metric_definition_execution import MetricDefinitionExecution
|
199
|
+
from .metric_definition_input import MetricDefinitionInput
|
200
|
+
from .metric_node_result import MetricNodeResult
|
201
|
+
from .ml_model_usage import MlModelUsage
|
202
|
+
from .named_scenario_input_chat_history_variable_value_request import NamedScenarioInputChatHistoryVariableValueRequest
|
203
|
+
from .named_scenario_input_json_variable_value_request import NamedScenarioInputJsonVariableValueRequest
|
204
|
+
from .named_scenario_input_request import NamedScenarioInputRequest
|
205
|
+
from .named_scenario_input_string_variable_value_request import NamedScenarioInputStringVariableValueRequest
|
206
|
+
from .named_test_case_array_variable_value import NamedTestCaseArrayVariableValue
|
207
|
+
from .named_test_case_array_variable_value_request import NamedTestCaseArrayVariableValueRequest
|
208
|
+
from .named_test_case_chat_history_variable_value import NamedTestCaseChatHistoryVariableValue
|
209
|
+
from .named_test_case_chat_history_variable_value_request import NamedTestCaseChatHistoryVariableValueRequest
|
210
|
+
from .named_test_case_error_variable_value import NamedTestCaseErrorVariableValue
|
211
|
+
from .named_test_case_error_variable_value_request import NamedTestCaseErrorVariableValueRequest
|
212
|
+
from .named_test_case_function_call_variable_value import NamedTestCaseFunctionCallVariableValue
|
213
|
+
from .named_test_case_function_call_variable_value_request import NamedTestCaseFunctionCallVariableValueRequest
|
214
|
+
from .named_test_case_json_variable_value import NamedTestCaseJsonVariableValue
|
215
|
+
from .named_test_case_json_variable_value_request import NamedTestCaseJsonVariableValueRequest
|
216
|
+
from .named_test_case_number_variable_value import NamedTestCaseNumberVariableValue
|
217
|
+
from .named_test_case_number_variable_value_request import NamedTestCaseNumberVariableValueRequest
|
218
|
+
from .named_test_case_search_results_variable_value import NamedTestCaseSearchResultsVariableValue
|
219
|
+
from .named_test_case_search_results_variable_value_request import NamedTestCaseSearchResultsVariableValueRequest
|
220
|
+
from .named_test_case_string_variable_value import NamedTestCaseStringVariableValue
|
221
|
+
from .named_test_case_string_variable_value_request import NamedTestCaseStringVariableValueRequest
|
222
|
+
from .named_test_case_variable_value import NamedTestCaseVariableValue
|
223
|
+
from .named_test_case_variable_value_request import NamedTestCaseVariableValueRequest
|
224
|
+
from .node_input_compiled_array_value import NodeInputCompiledArrayValue
|
225
|
+
from .node_input_compiled_chat_history_value import NodeInputCompiledChatHistoryValue
|
226
|
+
from .node_input_compiled_error_value import NodeInputCompiledErrorValue
|
227
|
+
from .node_input_compiled_function_call_value import NodeInputCompiledFunctionCallValue
|
228
|
+
from .node_input_compiled_json_value import NodeInputCompiledJsonValue
|
229
|
+
from .node_input_compiled_number_value import NodeInputCompiledNumberValue
|
230
|
+
from .node_input_compiled_search_results_value import NodeInputCompiledSearchResultsValue
|
231
|
+
from .node_input_compiled_string_value import NodeInputCompiledStringValue
|
232
|
+
from .node_input_variable_compiled_value import NodeInputVariableCompiledValue
|
233
|
+
from .node_output_compiled_array_value import NodeOutputCompiledArrayValue
|
234
|
+
from .node_output_compiled_chat_history_value import NodeOutputCompiledChatHistoryValue
|
235
|
+
from .node_output_compiled_error_value import NodeOutputCompiledErrorValue
|
236
|
+
from .node_output_compiled_function_call_value import NodeOutputCompiledFunctionCallValue
|
237
|
+
from .node_output_compiled_json_value import NodeOutputCompiledJsonValue
|
238
|
+
from .node_output_compiled_number_value import NodeOutputCompiledNumberValue
|
239
|
+
from .node_output_compiled_search_results_value import NodeOutputCompiledSearchResultsValue
|
240
|
+
from .node_output_compiled_string_value import NodeOutputCompiledStringValue
|
241
|
+
from .node_output_compiled_value import NodeOutputCompiledValue
|
242
|
+
from .normalized_log_probs import NormalizedLogProbs
|
243
|
+
from .normalized_token_log_probs import NormalizedTokenLogProbs
|
244
|
+
from .number_input import NumberInput
|
245
|
+
from .number_variable_value import NumberVariableValue
|
246
|
+
from .number_vellum_value import NumberVellumValue
|
247
|
+
from .number_vellum_value_request import NumberVellumValueRequest
|
248
|
+
from .open_ai_vectorizer_config import OpenAiVectorizerConfig
|
249
|
+
from .open_ai_vectorizer_config_request import OpenAiVectorizerConfigRequest
|
250
|
+
from .open_ai_vectorizer_text_embedding_3_large import OpenAiVectorizerTextEmbedding3Large
|
251
|
+
from .open_ai_vectorizer_text_embedding_3_large_request import OpenAiVectorizerTextEmbedding3LargeRequest
|
252
|
+
from .open_ai_vectorizer_text_embedding_3_small import OpenAiVectorizerTextEmbedding3Small
|
253
|
+
from .open_ai_vectorizer_text_embedding_3_small_request import OpenAiVectorizerTextEmbedding3SmallRequest
|
254
|
+
from .open_ai_vectorizer_text_embedding_ada_002 import OpenAiVectorizerTextEmbeddingAda002
|
255
|
+
from .open_ai_vectorizer_text_embedding_ada_002_request import OpenAiVectorizerTextEmbeddingAda002Request
|
256
|
+
from .paginated_container_image_read_list import PaginatedContainerImageReadList
|
257
|
+
from .paginated_deployment_release_tag_read_list import PaginatedDeploymentReleaseTagReadList
|
258
|
+
from .paginated_document_index_read_list import PaginatedDocumentIndexReadList
|
259
|
+
from .paginated_folder_entity_list import PaginatedFolderEntityList
|
260
|
+
from .paginated_slim_deployment_read_list import PaginatedSlimDeploymentReadList
|
261
|
+
from .paginated_slim_document_list import PaginatedSlimDocumentList
|
262
|
+
from .paginated_slim_workflow_deployment_list import PaginatedSlimWorkflowDeploymentList
|
263
|
+
from .paginated_test_suite_run_execution_list import PaginatedTestSuiteRunExecutionList
|
264
|
+
from .paginated_test_suite_test_case_list import PaginatedTestSuiteTestCaseList
|
265
|
+
from .paginated_workflow_release_tag_read_list import PaginatedWorkflowReleaseTagReadList
|
266
|
+
from .pdf_search_result_meta_source import PdfSearchResultMetaSource
|
267
|
+
from .pdf_search_result_meta_source_request import PdfSearchResultMetaSourceRequest
|
268
|
+
from .plain_text_prompt_block import PlainTextPromptBlock
|
269
|
+
from .price import Price
|
270
|
+
from .processing_failure_reason_enum import ProcessingFailureReasonEnum
|
271
|
+
from .prompt_block import PromptBlock
|
272
|
+
from .prompt_block_state import PromptBlockState
|
273
|
+
from .prompt_deployment_expand_meta_request import PromptDeploymentExpandMetaRequest
|
274
|
+
from .prompt_deployment_input_request import PromptDeploymentInputRequest
|
275
|
+
from .prompt_execution_meta import PromptExecutionMeta
|
276
|
+
from .prompt_node_execution_meta import PromptNodeExecutionMeta
|
277
|
+
from .prompt_node_result import PromptNodeResult
|
278
|
+
from .prompt_node_result_data import PromptNodeResultData
|
279
|
+
from .prompt_output import PromptOutput
|
280
|
+
from .prompt_parameters import PromptParameters
|
281
|
+
from .prompt_request_chat_history_input import PromptRequestChatHistoryInput
|
282
|
+
from .prompt_request_input import PromptRequestInput
|
283
|
+
from .prompt_request_json_input import PromptRequestJsonInput
|
284
|
+
from .prompt_request_string_input import PromptRequestStringInput
|
285
|
+
from .prompt_settings import PromptSettings
|
286
|
+
from .raw_prompt_execution_overrides_request import RawPromptExecutionOverridesRequest
|
287
|
+
from .reducto_chunker_config import ReductoChunkerConfig
|
288
|
+
from .reducto_chunker_config_request import ReductoChunkerConfigRequest
|
289
|
+
from .reducto_chunking import ReductoChunking
|
290
|
+
from .reducto_chunking_request import ReductoChunkingRequest
|
291
|
+
from .rejected_ad_hoc_execute_prompt_event import RejectedAdHocExecutePromptEvent
|
292
|
+
from .rejected_execute_prompt_event import RejectedExecutePromptEvent
|
293
|
+
from .rejected_execute_prompt_response import RejectedExecutePromptResponse
|
294
|
+
from .rejected_execute_workflow_workflow_result_event import RejectedExecuteWorkflowWorkflowResultEvent
|
295
|
+
from .rejected_prompt_execution_meta import RejectedPromptExecutionMeta
|
296
|
+
from .rejected_workflow_node_result_event import RejectedWorkflowNodeResultEvent
|
297
|
+
from .release_tag_source import ReleaseTagSource
|
298
|
+
from .replace_test_suite_test_case_request import ReplaceTestSuiteTestCaseRequest
|
299
|
+
from .rich_text_child_block import RichTextChildBlock
|
300
|
+
from .rich_text_prompt_block import RichTextPromptBlock
|
301
|
+
from .sandbox_scenario import SandboxScenario
|
302
|
+
from .scenario_input import ScenarioInput
|
303
|
+
from .scenario_input_chat_history_variable_value import ScenarioInputChatHistoryVariableValue
|
304
|
+
from .scenario_input_json_variable_value import ScenarioInputJsonVariableValue
|
305
|
+
from .scenario_input_string_variable_value import ScenarioInputStringVariableValue
|
306
|
+
from .search_filters_request import SearchFiltersRequest
|
307
|
+
from .search_node_result import SearchNodeResult
|
308
|
+
from .search_node_result_data import SearchNodeResultData
|
309
|
+
from .search_request_options_request import SearchRequestOptionsRequest
|
310
|
+
from .search_response import SearchResponse
|
311
|
+
from .search_result import SearchResult
|
312
|
+
from .search_result_document import SearchResultDocument
|
313
|
+
from .search_result_document_request import SearchResultDocumentRequest
|
314
|
+
from .search_result_merging_request import SearchResultMergingRequest
|
315
|
+
from .search_result_meta import SearchResultMeta
|
316
|
+
from .search_result_meta_request import SearchResultMetaRequest
|
317
|
+
from .search_result_request import SearchResultRequest
|
318
|
+
from .search_results_input import SearchResultsInput
|
319
|
+
from .search_results_variable_value import SearchResultsVariableValue
|
320
|
+
from .search_results_vellum_value import SearchResultsVellumValue
|
321
|
+
from .search_results_vellum_value_request import SearchResultsVellumValueRequest
|
322
|
+
from .search_weights_request import SearchWeightsRequest
|
323
|
+
from .secret_type_enum import SecretTypeEnum
|
324
|
+
from .sentence_chunker_config import SentenceChunkerConfig
|
325
|
+
from .sentence_chunker_config_request import SentenceChunkerConfigRequest
|
326
|
+
from .sentence_chunking import SentenceChunking
|
327
|
+
from .sentence_chunking_request import SentenceChunkingRequest
|
328
|
+
from .slim_deployment_read import SlimDeploymentRead
|
329
|
+
from .slim_document import SlimDocument
|
330
|
+
from .slim_workflow_deployment import SlimWorkflowDeployment
|
331
|
+
from .streaming_ad_hoc_execute_prompt_event import StreamingAdHocExecutePromptEvent
|
332
|
+
from .streaming_execute_prompt_event import StreamingExecutePromptEvent
|
333
|
+
from .streaming_prompt_execution_meta import StreamingPromptExecutionMeta
|
334
|
+
from .streaming_workflow_node_result_event import StreamingWorkflowNodeResultEvent
|
335
|
+
from .string_chat_message_content import StringChatMessageContent
|
336
|
+
from .string_chat_message_content_request import StringChatMessageContentRequest
|
337
|
+
from .string_input import StringInput
|
338
|
+
from .string_input_request import StringInputRequest
|
339
|
+
from .string_variable_value import StringVariableValue
|
340
|
+
from .string_vellum_value import StringVellumValue
|
341
|
+
from .string_vellum_value_request import StringVellumValueRequest
|
342
|
+
from .submit_completion_actual_request import SubmitCompletionActualRequest
|
343
|
+
from .submit_workflow_execution_actual_request import SubmitWorkflowExecutionActualRequest
|
344
|
+
from .subworkflow_node_result import SubworkflowNodeResult
|
345
|
+
from .subworkflow_node_result_data import SubworkflowNodeResultData
|
346
|
+
from .templating_node_array_result import TemplatingNodeArrayResult
|
347
|
+
from .templating_node_chat_history_result import TemplatingNodeChatHistoryResult
|
348
|
+
from .templating_node_error_result import TemplatingNodeErrorResult
|
349
|
+
from .templating_node_function_call_result import TemplatingNodeFunctionCallResult
|
350
|
+
from .templating_node_json_result import TemplatingNodeJsonResult
|
351
|
+
from .templating_node_number_result import TemplatingNodeNumberResult
|
352
|
+
from .templating_node_result import TemplatingNodeResult
|
353
|
+
from .templating_node_result_data import TemplatingNodeResultData
|
354
|
+
from .templating_node_result_output import TemplatingNodeResultOutput
|
355
|
+
from .templating_node_search_results_result import TemplatingNodeSearchResultsResult
|
356
|
+
from .templating_node_string_result import TemplatingNodeStringResult
|
357
|
+
from .terminal_node_array_result import TerminalNodeArrayResult
|
358
|
+
from .terminal_node_chat_history_result import TerminalNodeChatHistoryResult
|
359
|
+
from .terminal_node_error_result import TerminalNodeErrorResult
|
360
|
+
from .terminal_node_function_call_result import TerminalNodeFunctionCallResult
|
361
|
+
from .terminal_node_json_result import TerminalNodeJsonResult
|
362
|
+
from .terminal_node_number_result import TerminalNodeNumberResult
|
363
|
+
from .terminal_node_result import TerminalNodeResult
|
364
|
+
from .terminal_node_result_data import TerminalNodeResultData
|
365
|
+
from .terminal_node_result_output import TerminalNodeResultOutput
|
366
|
+
from .terminal_node_search_results_result import TerminalNodeSearchResultsResult
|
367
|
+
from .terminal_node_string_result import TerminalNodeStringResult
|
368
|
+
from .test_case_array_variable_value import TestCaseArrayVariableValue
|
369
|
+
from .test_case_chat_history_variable_value import TestCaseChatHistoryVariableValue
|
370
|
+
from .test_case_error_variable_value import TestCaseErrorVariableValue
|
371
|
+
from .test_case_function_call_variable_value import TestCaseFunctionCallVariableValue
|
372
|
+
from .test_case_json_variable_value import TestCaseJsonVariableValue
|
373
|
+
from .test_case_number_variable_value import TestCaseNumberVariableValue
|
374
|
+
from .test_case_search_results_variable_value import TestCaseSearchResultsVariableValue
|
375
|
+
from .test_case_string_variable_value import TestCaseStringVariableValue
|
376
|
+
from .test_case_variable_value import TestCaseVariableValue
|
377
|
+
from .test_suite_run_deployment_release_tag_exec_config import TestSuiteRunDeploymentReleaseTagExecConfig
|
378
|
+
from .test_suite_run_deployment_release_tag_exec_config_data import TestSuiteRunDeploymentReleaseTagExecConfigData
|
379
|
+
from .test_suite_run_deployment_release_tag_exec_config_data_request import (
|
380
|
+
TestSuiteRunDeploymentReleaseTagExecConfigDataRequest,
|
381
|
+
)
|
382
|
+
from .test_suite_run_deployment_release_tag_exec_config_request import TestSuiteRunDeploymentReleaseTagExecConfigRequest
|
383
|
+
from .test_suite_run_exec_config import TestSuiteRunExecConfig
|
384
|
+
from .test_suite_run_exec_config_request import TestSuiteRunExecConfigRequest
|
385
|
+
from .test_suite_run_execution import TestSuiteRunExecution
|
386
|
+
from .test_suite_run_execution_array_output import TestSuiteRunExecutionArrayOutput
|
387
|
+
from .test_suite_run_execution_chat_history_output import TestSuiteRunExecutionChatHistoryOutput
|
388
|
+
from .test_suite_run_execution_error_output import TestSuiteRunExecutionErrorOutput
|
389
|
+
from .test_suite_run_execution_function_call_output import TestSuiteRunExecutionFunctionCallOutput
|
390
|
+
from .test_suite_run_execution_json_output import TestSuiteRunExecutionJsonOutput
|
391
|
+
from .test_suite_run_execution_metric_definition import TestSuiteRunExecutionMetricDefinition
|
392
|
+
from .test_suite_run_execution_metric_result import TestSuiteRunExecutionMetricResult
|
393
|
+
from .test_suite_run_execution_number_output import TestSuiteRunExecutionNumberOutput
|
394
|
+
from .test_suite_run_execution_output import TestSuiteRunExecutionOutput
|
395
|
+
from .test_suite_run_execution_search_results_output import TestSuiteRunExecutionSearchResultsOutput
|
396
|
+
from .test_suite_run_execution_string_output import TestSuiteRunExecutionStringOutput
|
397
|
+
from .test_suite_run_external_exec_config import TestSuiteRunExternalExecConfig
|
398
|
+
from .test_suite_run_external_exec_config_data import TestSuiteRunExternalExecConfigData
|
399
|
+
from .test_suite_run_external_exec_config_data_request import TestSuiteRunExternalExecConfigDataRequest
|
400
|
+
from .test_suite_run_external_exec_config_request import TestSuiteRunExternalExecConfigRequest
|
401
|
+
from .test_suite_run_metric_error_output import TestSuiteRunMetricErrorOutput
|
402
|
+
from .test_suite_run_metric_json_output import TestSuiteRunMetricJsonOutput
|
403
|
+
from .test_suite_run_metric_number_output import TestSuiteRunMetricNumberOutput
|
404
|
+
from .test_suite_run_metric_output import TestSuiteRunMetricOutput
|
405
|
+
from .test_suite_run_metric_string_output import TestSuiteRunMetricStringOutput
|
406
|
+
from .test_suite_run_read import TestSuiteRunRead
|
407
|
+
from .test_suite_run_state import TestSuiteRunState
|
408
|
+
from .test_suite_run_test_suite import TestSuiteRunTestSuite
|
409
|
+
from .test_suite_run_workflow_release_tag_exec_config import TestSuiteRunWorkflowReleaseTagExecConfig
|
410
|
+
from .test_suite_run_workflow_release_tag_exec_config_data import TestSuiteRunWorkflowReleaseTagExecConfigData
|
411
|
+
from .test_suite_run_workflow_release_tag_exec_config_data_request import (
|
412
|
+
TestSuiteRunWorkflowReleaseTagExecConfigDataRequest,
|
413
|
+
)
|
414
|
+
from .test_suite_run_workflow_release_tag_exec_config_request import TestSuiteRunWorkflowReleaseTagExecConfigRequest
|
415
|
+
from .test_suite_test_case import TestSuiteTestCase
|
416
|
+
from .test_suite_test_case_bulk_operation_request import TestSuiteTestCaseBulkOperationRequest
|
417
|
+
from .test_suite_test_case_bulk_result import TestSuiteTestCaseBulkResult
|
418
|
+
from .test_suite_test_case_create_bulk_operation_request import TestSuiteTestCaseCreateBulkOperationRequest
|
419
|
+
from .test_suite_test_case_created_bulk_result import TestSuiteTestCaseCreatedBulkResult
|
420
|
+
from .test_suite_test_case_created_bulk_result_data import TestSuiteTestCaseCreatedBulkResultData
|
421
|
+
from .test_suite_test_case_delete_bulk_operation_data_request import TestSuiteTestCaseDeleteBulkOperationDataRequest
|
422
|
+
from .test_suite_test_case_delete_bulk_operation_request import TestSuiteTestCaseDeleteBulkOperationRequest
|
423
|
+
from .test_suite_test_case_deleted_bulk_result import TestSuiteTestCaseDeletedBulkResult
|
424
|
+
from .test_suite_test_case_deleted_bulk_result_data import TestSuiteTestCaseDeletedBulkResultData
|
425
|
+
from .test_suite_test_case_rejected_bulk_result import TestSuiteTestCaseRejectedBulkResult
|
426
|
+
from .test_suite_test_case_replace_bulk_operation_request import TestSuiteTestCaseReplaceBulkOperationRequest
|
427
|
+
from .test_suite_test_case_replaced_bulk_result import TestSuiteTestCaseReplacedBulkResult
|
428
|
+
from .test_suite_test_case_replaced_bulk_result_data import TestSuiteTestCaseReplacedBulkResultData
|
429
|
+
from .test_suite_test_case_upsert_bulk_operation_request import TestSuiteTestCaseUpsertBulkOperationRequest
|
430
|
+
from .token_overlapping_window_chunker_config import TokenOverlappingWindowChunkerConfig
|
431
|
+
from .token_overlapping_window_chunker_config_request import TokenOverlappingWindowChunkerConfigRequest
|
432
|
+
from .token_overlapping_window_chunking import TokenOverlappingWindowChunking
|
433
|
+
from .token_overlapping_window_chunking_request import TokenOverlappingWindowChunkingRequest
|
434
|
+
from .unit_enum import UnitEnum
|
435
|
+
from .upload_document_response import UploadDocumentResponse
|
436
|
+
from .upsert_test_suite_test_case_request import UpsertTestSuiteTestCaseRequest
|
437
|
+
from .variable_prompt_block import VariablePromptBlock
|
438
|
+
from .vellum_audio import VellumAudio
|
439
|
+
from .vellum_audio_request import VellumAudioRequest
|
440
|
+
from .vellum_error import VellumError
|
441
|
+
from .vellum_error_code_enum import VellumErrorCodeEnum
|
442
|
+
from .vellum_error_request import VellumErrorRequest
|
443
|
+
from .vellum_image import VellumImage
|
444
|
+
from .vellum_image_request import VellumImageRequest
|
445
|
+
from .vellum_value import VellumValue
|
446
|
+
from .vellum_value_logical_condition_group_request import VellumValueLogicalConditionGroupRequest
|
447
|
+
from .vellum_value_logical_condition_request import VellumValueLogicalConditionRequest
|
448
|
+
from .vellum_value_logical_expression_request import VellumValueLogicalExpressionRequest
|
449
|
+
from .vellum_value_request import VellumValueRequest
|
450
|
+
from .vellum_variable import VellumVariable
|
451
|
+
from .vellum_variable_extensions import VellumVariableExtensions
|
452
|
+
from .vellum_variable_type import VellumVariableType
|
453
|
+
from .workflow_deployment_read import WorkflowDeploymentRead
|
454
|
+
from .workflow_event_error import WorkflowEventError
|
455
|
+
from .workflow_execution_actual_chat_history_request import WorkflowExecutionActualChatHistoryRequest
|
456
|
+
from .workflow_execution_actual_json_request import WorkflowExecutionActualJsonRequest
|
457
|
+
from .workflow_execution_actual_string_request import WorkflowExecutionActualStringRequest
|
458
|
+
from .workflow_execution_event_error_code import WorkflowExecutionEventErrorCode
|
459
|
+
from .workflow_execution_event_type import WorkflowExecutionEventType
|
460
|
+
from .workflow_execution_node_result_event import WorkflowExecutionNodeResultEvent
|
461
|
+
from .workflow_execution_workflow_result_event import WorkflowExecutionWorkflowResultEvent
|
462
|
+
from .workflow_expand_meta_request import WorkflowExpandMetaRequest
|
463
|
+
from .workflow_node_result_data import WorkflowNodeResultData
|
464
|
+
from .workflow_node_result_event import WorkflowNodeResultEvent
|
465
|
+
from .workflow_node_result_event_state import WorkflowNodeResultEventState
|
466
|
+
from .workflow_output import WorkflowOutput
|
467
|
+
from .workflow_output_array import WorkflowOutputArray
|
468
|
+
from .workflow_output_chat_history import WorkflowOutputChatHistory
|
469
|
+
from .workflow_output_error import WorkflowOutputError
|
470
|
+
from .workflow_output_function_call import WorkflowOutputFunctionCall
|
471
|
+
from .workflow_output_image import WorkflowOutputImage
|
472
|
+
from .workflow_output_json import WorkflowOutputJson
|
473
|
+
from .workflow_output_number import WorkflowOutputNumber
|
474
|
+
from .workflow_output_search_results import WorkflowOutputSearchResults
|
475
|
+
from .workflow_output_string import WorkflowOutputString
|
476
|
+
from .workflow_push_deployment_config_request import WorkflowPushDeploymentConfigRequest
|
477
|
+
from .workflow_push_exec_config import WorkflowPushExecConfig
|
478
|
+
from .workflow_push_response import WorkflowPushResponse
|
479
|
+
from .workflow_release_tag_read import WorkflowReleaseTagRead
|
480
|
+
from .workflow_release_tag_workflow_deployment_history_item import WorkflowReleaseTagWorkflowDeploymentHistoryItem
|
481
|
+
from .workflow_request_chat_history_input_request import WorkflowRequestChatHistoryInputRequest
|
482
|
+
from .workflow_request_input_request import WorkflowRequestInputRequest
|
483
|
+
from .workflow_request_json_input_request import WorkflowRequestJsonInputRequest
|
484
|
+
from .workflow_request_number_input_request import WorkflowRequestNumberInputRequest
|
485
|
+
from .workflow_request_string_input_request import WorkflowRequestStringInputRequest
|
486
|
+
from .workflow_result_event import WorkflowResultEvent
|
487
|
+
from .workflow_result_event_output_data import WorkflowResultEventOutputData
|
488
|
+
from .workflow_result_event_output_data_array import WorkflowResultEventOutputDataArray
|
489
|
+
from .workflow_result_event_output_data_chat_history import WorkflowResultEventOutputDataChatHistory
|
490
|
+
from .workflow_result_event_output_data_error import WorkflowResultEventOutputDataError
|
491
|
+
from .workflow_result_event_output_data_function_call import WorkflowResultEventOutputDataFunctionCall
|
492
|
+
from .workflow_result_event_output_data_json import WorkflowResultEventOutputDataJson
|
493
|
+
from .workflow_result_event_output_data_number import WorkflowResultEventOutputDataNumber
|
494
|
+
from .workflow_result_event_output_data_search_results import WorkflowResultEventOutputDataSearchResults
|
495
|
+
from .workflow_result_event_output_data_string import WorkflowResultEventOutputDataString
|
496
|
+
from .workflow_stream_event import WorkflowStreamEvent
|
497
|
+
from .workspace_secret_read import WorkspaceSecretRead
|
498
|
+
|
499
|
+
__all__ = [
|
500
|
+
"AdHocExecutePromptEvent",
|
501
|
+
"AdHocExpandMeta",
|
502
|
+
"AdHocFulfilledPromptExecutionMeta",
|
503
|
+
"AdHocInitiatedPromptExecutionMeta",
|
504
|
+
"AdHocRejectedPromptExecutionMeta",
|
505
|
+
"AdHocStreamingPromptExecutionMeta",
|
506
|
+
"AddOpenaiApiKeyEnum",
|
507
|
+
"ApiNodeResult",
|
508
|
+
"ApiNodeResultData",
|
509
|
+
"ArrayChatMessageContent",
|
510
|
+
"ArrayChatMessageContentItem",
|
511
|
+
"ArrayChatMessageContentItemRequest",
|
512
|
+
"ArrayChatMessageContentRequest",
|
513
|
+
"ArrayInput",
|
514
|
+
"ArrayVariableValue",
|
515
|
+
"ArrayVariableValueItem",
|
516
|
+
"ArrayVellumValue",
|
517
|
+
"ArrayVellumValueRequest",
|
518
|
+
"AudioChatMessageContent",
|
519
|
+
"AudioChatMessageContentRequest",
|
520
|
+
"AudioVariableValue",
|
521
|
+
"AudioVellumValue",
|
522
|
+
"AudioVellumValueRequest",
|
523
|
+
"BasicVectorizerIntfloatMultilingualE5Large",
|
524
|
+
"BasicVectorizerIntfloatMultilingualE5LargeRequest",
|
525
|
+
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1",
|
526
|
+
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1Request",
|
527
|
+
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1",
|
528
|
+
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseDotV1Request",
|
529
|
+
"ChatHistoryInput",
|
530
|
+
"ChatHistoryInputRequest",
|
531
|
+
"ChatHistoryVariableValue",
|
532
|
+
"ChatHistoryVellumValue",
|
533
|
+
"ChatHistoryVellumValueRequest",
|
534
|
+
"ChatMessage",
|
535
|
+
"ChatMessageContent",
|
536
|
+
"ChatMessageContentRequest",
|
537
|
+
"ChatMessagePromptBlock",
|
538
|
+
"ChatMessageRequest",
|
539
|
+
"ChatMessageRole",
|
540
|
+
"CodeExecutionNodeArrayResult",
|
541
|
+
"CodeExecutionNodeChatHistoryResult",
|
542
|
+
"CodeExecutionNodeErrorResult",
|
543
|
+
"CodeExecutionNodeFunctionCallResult",
|
544
|
+
"CodeExecutionNodeJsonResult",
|
545
|
+
"CodeExecutionNodeNumberResult",
|
546
|
+
"CodeExecutionNodeResult",
|
547
|
+
"CodeExecutionNodeResultData",
|
548
|
+
"CodeExecutionNodeResultOutput",
|
549
|
+
"CodeExecutionNodeSearchResultsResult",
|
550
|
+
"CodeExecutionNodeStringResult",
|
551
|
+
"CodeExecutionPackage",
|
552
|
+
"CodeExecutionRuntime",
|
553
|
+
"CodeExecutorInput",
|
554
|
+
"CodeExecutorResponse",
|
555
|
+
"CodeExecutorSecretInput",
|
556
|
+
"CompilePromptDeploymentExpandMetaRequest",
|
557
|
+
"CompilePromptMeta",
|
558
|
+
"ComponentsSchemasPdfSearchResultMetaSource",
|
559
|
+
"ComponentsSchemasPdfSearchResultMetaSourceRequest",
|
560
|
+
"ConditionCombinator",
|
561
|
+
"ConditionalNodeResult",
|
562
|
+
"ConditionalNodeResultData",
|
563
|
+
"ContainerImageRead",
|
564
|
+
"CreateTestSuiteTestCaseRequest",
|
565
|
+
"DeploymentProviderPayloadResponse",
|
566
|
+
"DeploymentProviderPayloadResponsePayload",
|
567
|
+
"DeploymentRead",
|
568
|
+
"DeploymentReleaseTagDeploymentHistoryItem",
|
569
|
+
"DeploymentReleaseTagRead",
|
570
|
+
"DockerServiceToken",
|
571
|
+
"DocumentDocumentToDocumentIndex",
|
572
|
+
"DocumentIndexChunking",
|
573
|
+
"DocumentIndexChunkingRequest",
|
574
|
+
"DocumentIndexIndexingConfig",
|
575
|
+
"DocumentIndexIndexingConfigRequest",
|
576
|
+
"DocumentIndexRead",
|
577
|
+
"DocumentProcessingState",
|
578
|
+
"DocumentRead",
|
579
|
+
"DocumentStatus",
|
580
|
+
"EnrichedNormalizedCompletion",
|
581
|
+
"EntityStatus",
|
582
|
+
"EntityVisibility",
|
583
|
+
"EnvironmentEnum",
|
584
|
+
"EphemeralPromptCacheConfig",
|
585
|
+
"EphemeralPromptCacheConfigTypeEnum",
|
586
|
+
"ErrorInput",
|
587
|
+
"ErrorVariableValue",
|
588
|
+
"ErrorVellumValue",
|
589
|
+
"ErrorVellumValueRequest",
|
590
|
+
"ExecutePromptEvent",
|
591
|
+
"ExecutePromptResponse",
|
592
|
+
"ExecuteWorkflowResponse",
|
593
|
+
"ExecuteWorkflowWorkflowResultEvent",
|
594
|
+
"ExecutionArrayVellumValue",
|
595
|
+
"ExecutionChatHistoryVellumValue",
|
596
|
+
"ExecutionErrorVellumValue",
|
597
|
+
"ExecutionFunctionCallVellumValue",
|
598
|
+
"ExecutionJsonVellumValue",
|
599
|
+
"ExecutionNumberVellumValue",
|
600
|
+
"ExecutionSearchResultsVellumValue",
|
601
|
+
"ExecutionStringVellumValue",
|
602
|
+
"ExecutionVellumValue",
|
603
|
+
"ExternalTestCaseExecution",
|
604
|
+
"ExternalTestCaseExecutionRequest",
|
605
|
+
"FinishReasonEnum",
|
606
|
+
"FolderEntity",
|
607
|
+
"FolderEntityDocumentIndex",
|
608
|
+
"FolderEntityDocumentIndexData",
|
609
|
+
"FolderEntityFolder",
|
610
|
+
"FolderEntityFolderData",
|
611
|
+
"FolderEntityPromptSandbox",
|
612
|
+
"FolderEntityPromptSandboxData",
|
613
|
+
"FolderEntityTestSuite",
|
614
|
+
"FolderEntityTestSuiteData",
|
615
|
+
"FolderEntityWorkflowSandbox",
|
616
|
+
"FolderEntityWorkflowSandboxData",
|
617
|
+
"FulfilledAdHocExecutePromptEvent",
|
618
|
+
"FulfilledEnum",
|
619
|
+
"FulfilledExecutePromptEvent",
|
620
|
+
"FulfilledExecutePromptResponse",
|
621
|
+
"FulfilledExecuteWorkflowWorkflowResultEvent",
|
622
|
+
"FulfilledPromptExecutionMeta",
|
623
|
+
"FulfilledWorkflowNodeResultEvent",
|
624
|
+
"FunctionCall",
|
625
|
+
"FunctionCallChatMessageContent",
|
626
|
+
"FunctionCallChatMessageContentRequest",
|
627
|
+
"FunctionCallChatMessageContentValue",
|
628
|
+
"FunctionCallChatMessageContentValueRequest",
|
629
|
+
"FunctionCallInput",
|
630
|
+
"FunctionCallRequest",
|
631
|
+
"FunctionCallVariableValue",
|
632
|
+
"FunctionCallVellumValue",
|
633
|
+
"FunctionCallVellumValueRequest",
|
634
|
+
"FunctionDefinition",
|
635
|
+
"GenerateOptionsRequest",
|
636
|
+
"GenerateRequest",
|
637
|
+
"GenerateResponse",
|
638
|
+
"GenerateResult",
|
639
|
+
"GenerateResultData",
|
640
|
+
"GenerateResultError",
|
641
|
+
"GenerateStreamResponse",
|
642
|
+
"GenerateStreamResult",
|
643
|
+
"GenerateStreamResultData",
|
644
|
+
"GoogleVertexAiVectorizerConfig",
|
645
|
+
"GoogleVertexAiVectorizerConfigRequest",
|
646
|
+
"GoogleVertexAiVectorizerTextEmbedding004",
|
647
|
+
"GoogleVertexAiVectorizerTextEmbedding004Request",
|
648
|
+
"GoogleVertexAiVectorizerTextMultilingualEmbedding002",
|
649
|
+
"GoogleVertexAiVectorizerTextMultilingualEmbedding002Request",
|
650
|
+
"HkunlpInstructorXlVectorizer",
|
651
|
+
"HkunlpInstructorXlVectorizerRequest",
|
652
|
+
"ImageChatMessageContent",
|
653
|
+
"ImageChatMessageContentRequest",
|
654
|
+
"ImageVariableValue",
|
655
|
+
"ImageVellumValue",
|
656
|
+
"ImageVellumValueRequest",
|
657
|
+
"IndexingConfigVectorizer",
|
658
|
+
"IndexingConfigVectorizerRequest",
|
659
|
+
"IndexingStateEnum",
|
660
|
+
"InitiatedAdHocExecutePromptEvent",
|
661
|
+
"InitiatedExecutePromptEvent",
|
662
|
+
"InitiatedPromptExecutionMeta",
|
663
|
+
"InitiatedWorkflowNodeResultEvent",
|
664
|
+
"InstructorVectorizerConfig",
|
665
|
+
"InstructorVectorizerConfigRequest",
|
666
|
+
"IterationStateEnum",
|
667
|
+
"JinjaPromptBlock",
|
668
|
+
"JsonInput",
|
669
|
+
"JsonInputRequest",
|
670
|
+
"JsonVariableValue",
|
671
|
+
"JsonVellumValue",
|
672
|
+
"JsonVellumValueRequest",
|
673
|
+
"LogicalOperator",
|
674
|
+
"LogprobsEnum",
|
675
|
+
"MapNodeResult",
|
676
|
+
"MapNodeResultData",
|
677
|
+
"MergeNodeResult",
|
678
|
+
"MergeNodeResultData",
|
679
|
+
"MetadataFilterConfigRequest",
|
680
|
+
"MetadataFilterRuleCombinator",
|
681
|
+
"MetadataFilterRuleRequest",
|
682
|
+
"MetadataFiltersRequest",
|
683
|
+
"MetricDefinitionExecution",
|
684
|
+
"MetricDefinitionInput",
|
685
|
+
"MetricNodeResult",
|
686
|
+
"MlModelUsage",
|
687
|
+
"NamedScenarioInputChatHistoryVariableValueRequest",
|
688
|
+
"NamedScenarioInputJsonVariableValueRequest",
|
689
|
+
"NamedScenarioInputRequest",
|
690
|
+
"NamedScenarioInputStringVariableValueRequest",
|
691
|
+
"NamedTestCaseArrayVariableValue",
|
692
|
+
"NamedTestCaseArrayVariableValueRequest",
|
693
|
+
"NamedTestCaseChatHistoryVariableValue",
|
694
|
+
"NamedTestCaseChatHistoryVariableValueRequest",
|
695
|
+
"NamedTestCaseErrorVariableValue",
|
696
|
+
"NamedTestCaseErrorVariableValueRequest",
|
697
|
+
"NamedTestCaseFunctionCallVariableValue",
|
698
|
+
"NamedTestCaseFunctionCallVariableValueRequest",
|
699
|
+
"NamedTestCaseJsonVariableValue",
|
700
|
+
"NamedTestCaseJsonVariableValueRequest",
|
701
|
+
"NamedTestCaseNumberVariableValue",
|
702
|
+
"NamedTestCaseNumberVariableValueRequest",
|
703
|
+
"NamedTestCaseSearchResultsVariableValue",
|
704
|
+
"NamedTestCaseSearchResultsVariableValueRequest",
|
705
|
+
"NamedTestCaseStringVariableValue",
|
706
|
+
"NamedTestCaseStringVariableValueRequest",
|
707
|
+
"NamedTestCaseVariableValue",
|
708
|
+
"NamedTestCaseVariableValueRequest",
|
709
|
+
"NodeInputCompiledArrayValue",
|
710
|
+
"NodeInputCompiledChatHistoryValue",
|
711
|
+
"NodeInputCompiledErrorValue",
|
712
|
+
"NodeInputCompiledFunctionCallValue",
|
713
|
+
"NodeInputCompiledJsonValue",
|
714
|
+
"NodeInputCompiledNumberValue",
|
715
|
+
"NodeInputCompiledSearchResultsValue",
|
716
|
+
"NodeInputCompiledStringValue",
|
717
|
+
"NodeInputVariableCompiledValue",
|
718
|
+
"NodeOutputCompiledArrayValue",
|
719
|
+
"NodeOutputCompiledChatHistoryValue",
|
720
|
+
"NodeOutputCompiledErrorValue",
|
721
|
+
"NodeOutputCompiledFunctionCallValue",
|
722
|
+
"NodeOutputCompiledJsonValue",
|
723
|
+
"NodeOutputCompiledNumberValue",
|
724
|
+
"NodeOutputCompiledSearchResultsValue",
|
725
|
+
"NodeOutputCompiledStringValue",
|
726
|
+
"NodeOutputCompiledValue",
|
727
|
+
"NormalizedLogProbs",
|
728
|
+
"NormalizedTokenLogProbs",
|
729
|
+
"NumberInput",
|
730
|
+
"NumberVariableValue",
|
731
|
+
"NumberVellumValue",
|
732
|
+
"NumberVellumValueRequest",
|
733
|
+
"OpenAiVectorizerConfig",
|
734
|
+
"OpenAiVectorizerConfigRequest",
|
735
|
+
"OpenAiVectorizerTextEmbedding3Large",
|
736
|
+
"OpenAiVectorizerTextEmbedding3LargeRequest",
|
737
|
+
"OpenAiVectorizerTextEmbedding3Small",
|
738
|
+
"OpenAiVectorizerTextEmbedding3SmallRequest",
|
739
|
+
"OpenAiVectorizerTextEmbeddingAda002",
|
740
|
+
"OpenAiVectorizerTextEmbeddingAda002Request",
|
741
|
+
"PaginatedContainerImageReadList",
|
742
|
+
"PaginatedDeploymentReleaseTagReadList",
|
743
|
+
"PaginatedDocumentIndexReadList",
|
744
|
+
"PaginatedFolderEntityList",
|
745
|
+
"PaginatedSlimDeploymentReadList",
|
746
|
+
"PaginatedSlimDocumentList",
|
747
|
+
"PaginatedSlimWorkflowDeploymentList",
|
748
|
+
"PaginatedTestSuiteRunExecutionList",
|
749
|
+
"PaginatedTestSuiteTestCaseList",
|
750
|
+
"PaginatedWorkflowReleaseTagReadList",
|
751
|
+
"PdfSearchResultMetaSource",
|
752
|
+
"PdfSearchResultMetaSourceRequest",
|
753
|
+
"PlainTextPromptBlock",
|
754
|
+
"Price",
|
755
|
+
"ProcessingFailureReasonEnum",
|
756
|
+
"PromptBlock",
|
757
|
+
"PromptBlockState",
|
758
|
+
"PromptDeploymentExpandMetaRequest",
|
759
|
+
"PromptDeploymentInputRequest",
|
760
|
+
"PromptExecutionMeta",
|
761
|
+
"PromptNodeExecutionMeta",
|
762
|
+
"PromptNodeResult",
|
763
|
+
"PromptNodeResultData",
|
764
|
+
"PromptOutput",
|
765
|
+
"PromptParameters",
|
766
|
+
"PromptRequestChatHistoryInput",
|
767
|
+
"PromptRequestInput",
|
768
|
+
"PromptRequestJsonInput",
|
769
|
+
"PromptRequestStringInput",
|
770
|
+
"PromptSettings",
|
771
|
+
"RawPromptExecutionOverridesRequest",
|
772
|
+
"ReductoChunkerConfig",
|
773
|
+
"ReductoChunkerConfigRequest",
|
774
|
+
"ReductoChunking",
|
775
|
+
"ReductoChunkingRequest",
|
776
|
+
"RejectedAdHocExecutePromptEvent",
|
777
|
+
"RejectedExecutePromptEvent",
|
778
|
+
"RejectedExecutePromptResponse",
|
779
|
+
"RejectedExecuteWorkflowWorkflowResultEvent",
|
780
|
+
"RejectedPromptExecutionMeta",
|
781
|
+
"RejectedWorkflowNodeResultEvent",
|
782
|
+
"ReleaseTagSource",
|
783
|
+
"ReplaceTestSuiteTestCaseRequest",
|
784
|
+
"RichTextChildBlock",
|
785
|
+
"RichTextPromptBlock",
|
786
|
+
"SandboxScenario",
|
787
|
+
"ScenarioInput",
|
788
|
+
"ScenarioInputChatHistoryVariableValue",
|
789
|
+
"ScenarioInputJsonVariableValue",
|
790
|
+
"ScenarioInputStringVariableValue",
|
791
|
+
"SearchFiltersRequest",
|
792
|
+
"SearchNodeResult",
|
793
|
+
"SearchNodeResultData",
|
794
|
+
"SearchRequestOptionsRequest",
|
795
|
+
"SearchResponse",
|
796
|
+
"SearchResult",
|
797
|
+
"SearchResultDocument",
|
798
|
+
"SearchResultDocumentRequest",
|
799
|
+
"SearchResultMergingRequest",
|
800
|
+
"SearchResultMeta",
|
801
|
+
"SearchResultMetaRequest",
|
802
|
+
"SearchResultRequest",
|
803
|
+
"SearchResultsInput",
|
804
|
+
"SearchResultsVariableValue",
|
805
|
+
"SearchResultsVellumValue",
|
806
|
+
"SearchResultsVellumValueRequest",
|
807
|
+
"SearchWeightsRequest",
|
808
|
+
"SecretTypeEnum",
|
809
|
+
"SentenceChunkerConfig",
|
810
|
+
"SentenceChunkerConfigRequest",
|
811
|
+
"SentenceChunking",
|
812
|
+
"SentenceChunkingRequest",
|
813
|
+
"SlimDeploymentRead",
|
814
|
+
"SlimDocument",
|
815
|
+
"SlimWorkflowDeployment",
|
816
|
+
"StreamingAdHocExecutePromptEvent",
|
817
|
+
"StreamingExecutePromptEvent",
|
818
|
+
"StreamingPromptExecutionMeta",
|
819
|
+
"StreamingWorkflowNodeResultEvent",
|
820
|
+
"StringChatMessageContent",
|
821
|
+
"StringChatMessageContentRequest",
|
822
|
+
"StringInput",
|
823
|
+
"StringInputRequest",
|
824
|
+
"StringVariableValue",
|
825
|
+
"StringVellumValue",
|
826
|
+
"StringVellumValueRequest",
|
827
|
+
"SubmitCompletionActualRequest",
|
828
|
+
"SubmitWorkflowExecutionActualRequest",
|
829
|
+
"SubworkflowNodeResult",
|
830
|
+
"SubworkflowNodeResultData",
|
831
|
+
"TemplatingNodeArrayResult",
|
832
|
+
"TemplatingNodeChatHistoryResult",
|
833
|
+
"TemplatingNodeErrorResult",
|
834
|
+
"TemplatingNodeFunctionCallResult",
|
835
|
+
"TemplatingNodeJsonResult",
|
836
|
+
"TemplatingNodeNumberResult",
|
837
|
+
"TemplatingNodeResult",
|
838
|
+
"TemplatingNodeResultData",
|
839
|
+
"TemplatingNodeResultOutput",
|
840
|
+
"TemplatingNodeSearchResultsResult",
|
841
|
+
"TemplatingNodeStringResult",
|
842
|
+
"TerminalNodeArrayResult",
|
843
|
+
"TerminalNodeChatHistoryResult",
|
844
|
+
"TerminalNodeErrorResult",
|
845
|
+
"TerminalNodeFunctionCallResult",
|
846
|
+
"TerminalNodeJsonResult",
|
847
|
+
"TerminalNodeNumberResult",
|
848
|
+
"TerminalNodeResult",
|
849
|
+
"TerminalNodeResultData",
|
850
|
+
"TerminalNodeResultOutput",
|
851
|
+
"TerminalNodeSearchResultsResult",
|
852
|
+
"TerminalNodeStringResult",
|
853
|
+
"TestCaseArrayVariableValue",
|
854
|
+
"TestCaseChatHistoryVariableValue",
|
855
|
+
"TestCaseErrorVariableValue",
|
856
|
+
"TestCaseFunctionCallVariableValue",
|
857
|
+
"TestCaseJsonVariableValue",
|
858
|
+
"TestCaseNumberVariableValue",
|
859
|
+
"TestCaseSearchResultsVariableValue",
|
860
|
+
"TestCaseStringVariableValue",
|
861
|
+
"TestCaseVariableValue",
|
862
|
+
"TestSuiteRunDeploymentReleaseTagExecConfig",
|
863
|
+
"TestSuiteRunDeploymentReleaseTagExecConfigData",
|
864
|
+
"TestSuiteRunDeploymentReleaseTagExecConfigDataRequest",
|
865
|
+
"TestSuiteRunDeploymentReleaseTagExecConfigRequest",
|
866
|
+
"TestSuiteRunExecConfig",
|
867
|
+
"TestSuiteRunExecConfigRequest",
|
868
|
+
"TestSuiteRunExecution",
|
869
|
+
"TestSuiteRunExecutionArrayOutput",
|
870
|
+
"TestSuiteRunExecutionChatHistoryOutput",
|
871
|
+
"TestSuiteRunExecutionErrorOutput",
|
872
|
+
"TestSuiteRunExecutionFunctionCallOutput",
|
873
|
+
"TestSuiteRunExecutionJsonOutput",
|
874
|
+
"TestSuiteRunExecutionMetricDefinition",
|
875
|
+
"TestSuiteRunExecutionMetricResult",
|
876
|
+
"TestSuiteRunExecutionNumberOutput",
|
877
|
+
"TestSuiteRunExecutionOutput",
|
878
|
+
"TestSuiteRunExecutionSearchResultsOutput",
|
879
|
+
"TestSuiteRunExecutionStringOutput",
|
880
|
+
"TestSuiteRunExternalExecConfig",
|
881
|
+
"TestSuiteRunExternalExecConfigData",
|
882
|
+
"TestSuiteRunExternalExecConfigDataRequest",
|
883
|
+
"TestSuiteRunExternalExecConfigRequest",
|
884
|
+
"TestSuiteRunMetricErrorOutput",
|
885
|
+
"TestSuiteRunMetricJsonOutput",
|
886
|
+
"TestSuiteRunMetricNumberOutput",
|
887
|
+
"TestSuiteRunMetricOutput",
|
888
|
+
"TestSuiteRunMetricStringOutput",
|
889
|
+
"TestSuiteRunRead",
|
890
|
+
"TestSuiteRunState",
|
891
|
+
"TestSuiteRunTestSuite",
|
892
|
+
"TestSuiteRunWorkflowReleaseTagExecConfig",
|
893
|
+
"TestSuiteRunWorkflowReleaseTagExecConfigData",
|
894
|
+
"TestSuiteRunWorkflowReleaseTagExecConfigDataRequest",
|
895
|
+
"TestSuiteRunWorkflowReleaseTagExecConfigRequest",
|
896
|
+
"TestSuiteTestCase",
|
897
|
+
"TestSuiteTestCaseBulkOperationRequest",
|
898
|
+
"TestSuiteTestCaseBulkResult",
|
899
|
+
"TestSuiteTestCaseCreateBulkOperationRequest",
|
900
|
+
"TestSuiteTestCaseCreatedBulkResult",
|
901
|
+
"TestSuiteTestCaseCreatedBulkResultData",
|
902
|
+
"TestSuiteTestCaseDeleteBulkOperationDataRequest",
|
903
|
+
"TestSuiteTestCaseDeleteBulkOperationRequest",
|
904
|
+
"TestSuiteTestCaseDeletedBulkResult",
|
905
|
+
"TestSuiteTestCaseDeletedBulkResultData",
|
906
|
+
"TestSuiteTestCaseRejectedBulkResult",
|
907
|
+
"TestSuiteTestCaseReplaceBulkOperationRequest",
|
908
|
+
"TestSuiteTestCaseReplacedBulkResult",
|
909
|
+
"TestSuiteTestCaseReplacedBulkResultData",
|
910
|
+
"TestSuiteTestCaseUpsertBulkOperationRequest",
|
911
|
+
"TokenOverlappingWindowChunkerConfig",
|
912
|
+
"TokenOverlappingWindowChunkerConfigRequest",
|
913
|
+
"TokenOverlappingWindowChunking",
|
914
|
+
"TokenOverlappingWindowChunkingRequest",
|
915
|
+
"UnitEnum",
|
916
|
+
"UploadDocumentResponse",
|
917
|
+
"UpsertTestSuiteTestCaseRequest",
|
918
|
+
"VariablePromptBlock",
|
919
|
+
"VellumAudio",
|
920
|
+
"VellumAudioRequest",
|
921
|
+
"VellumError",
|
922
|
+
"VellumErrorCodeEnum",
|
923
|
+
"VellumErrorRequest",
|
924
|
+
"VellumImage",
|
925
|
+
"VellumImageRequest",
|
926
|
+
"VellumValue",
|
927
|
+
"VellumValueLogicalConditionGroupRequest",
|
928
|
+
"VellumValueLogicalConditionRequest",
|
929
|
+
"VellumValueLogicalExpressionRequest",
|
930
|
+
"VellumValueRequest",
|
931
|
+
"VellumVariable",
|
932
|
+
"VellumVariableExtensions",
|
933
|
+
"VellumVariableType",
|
934
|
+
"WorkflowDeploymentRead",
|
935
|
+
"WorkflowEventError",
|
936
|
+
"WorkflowExecutionActualChatHistoryRequest",
|
937
|
+
"WorkflowExecutionActualJsonRequest",
|
938
|
+
"WorkflowExecutionActualStringRequest",
|
939
|
+
"WorkflowExecutionEventErrorCode",
|
940
|
+
"WorkflowExecutionEventType",
|
941
|
+
"WorkflowExecutionNodeResultEvent",
|
942
|
+
"WorkflowExecutionWorkflowResultEvent",
|
943
|
+
"WorkflowExpandMetaRequest",
|
944
|
+
"WorkflowNodeResultData",
|
945
|
+
"WorkflowNodeResultEvent",
|
946
|
+
"WorkflowNodeResultEventState",
|
947
|
+
"WorkflowOutput",
|
948
|
+
"WorkflowOutputArray",
|
949
|
+
"WorkflowOutputChatHistory",
|
950
|
+
"WorkflowOutputError",
|
951
|
+
"WorkflowOutputFunctionCall",
|
952
|
+
"WorkflowOutputImage",
|
953
|
+
"WorkflowOutputJson",
|
954
|
+
"WorkflowOutputNumber",
|
955
|
+
"WorkflowOutputSearchResults",
|
956
|
+
"WorkflowOutputString",
|
957
|
+
"WorkflowPushDeploymentConfigRequest",
|
958
|
+
"WorkflowPushExecConfig",
|
959
|
+
"WorkflowPushResponse",
|
960
|
+
"WorkflowReleaseTagRead",
|
961
|
+
"WorkflowReleaseTagWorkflowDeploymentHistoryItem",
|
962
|
+
"WorkflowRequestChatHistoryInputRequest",
|
963
|
+
"WorkflowRequestInputRequest",
|
964
|
+
"WorkflowRequestJsonInputRequest",
|
965
|
+
"WorkflowRequestNumberInputRequest",
|
966
|
+
"WorkflowRequestStringInputRequest",
|
967
|
+
"WorkflowResultEvent",
|
968
|
+
"WorkflowResultEventOutputData",
|
969
|
+
"WorkflowResultEventOutputDataArray",
|
970
|
+
"WorkflowResultEventOutputDataChatHistory",
|
971
|
+
"WorkflowResultEventOutputDataError",
|
972
|
+
"WorkflowResultEventOutputDataFunctionCall",
|
973
|
+
"WorkflowResultEventOutputDataJson",
|
974
|
+
"WorkflowResultEventOutputDataNumber",
|
975
|
+
"WorkflowResultEventOutputDataSearchResults",
|
976
|
+
"WorkflowResultEventOutputDataString",
|
977
|
+
"WorkflowStreamEvent",
|
978
|
+
"WorkspaceSecretRead",
|
979
|
+
]
|