vellum-ai 0.7.2__py3-none-any.whl → 0.7.5__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- vellum/__init__.py +146 -94
- vellum/client.py +1051 -1097
- vellum/core/__init__.py +4 -1
- vellum/core/client_wrapper.py +7 -3
- vellum/core/http_client.py +365 -20
- vellum/core/jsonable_encoder.py +3 -0
- vellum/core/pydantic_utilities.py +16 -0
- vellum/core/query_encoder.py +33 -0
- vellum/core/remove_none_from_dict.py +2 -2
- vellum/core/request_options.py +2 -2
- vellum/resources/__init__.py +2 -0
- vellum/resources/deployments/client.py +354 -371
- vellum/resources/document_indexes/client.py +542 -610
- vellum/resources/documents/client.py +327 -399
- vellum/resources/folder_entities/client.py +56 -72
- vellum/{types/map_enum.py → resources/ml_models/__init__.py} +0 -3
- vellum/resources/ml_models/client.py +837 -0
- vellum/resources/sandboxes/client.py +204 -242
- vellum/resources/test_suite_runs/client.py +183 -213
- vellum/resources/test_suites/client.py +307 -311
- vellum/resources/workflow_deployments/client.py +230 -268
- vellum/resources/workflow_sandboxes/client.py +82 -96
- vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz +0 -0
- vellum/terraform/data_vellum_document_index/__init__.py +10 -10
- vellum/terraform/document_index/__init__.py +17 -17
- vellum/terraform/provider/__init__.py +57 -12
- vellum/terraform/versions.json +1 -1
- vellum/types/__init__.py +152 -96
- vellum/types/api_node_result.py +7 -3
- vellum/types/api_node_result_data.py +7 -3
- vellum/types/array_chat_message_content.py +7 -3
- vellum/types/array_chat_message_content_item.py +53 -12
- vellum/types/array_chat_message_content_item_request.py +53 -12
- vellum/types/array_chat_message_content_request.py +7 -3
- vellum/types/array_parameter_config.py +50 -0
- vellum/types/array_parameter_config_request.py +50 -0
- vellum/types/array_variable_value_item.py +102 -24
- vellum/types/array_vellum_value_item.py +102 -24
- vellum/types/array_vellum_value_item_request.py +102 -24
- vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py +7 -3
- vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py +7 -3
- vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py +7 -3
- vellum/types/boolean_parameter_config.py +35 -0
- vellum/types/boolean_parameter_config_request.py +35 -0
- vellum/types/chat_history_input_request.py +7 -3
- vellum/types/chat_message.py +7 -3
- vellum/types/chat_message_content.py +70 -16
- vellum/types/chat_message_content_request.py +70 -16
- vellum/types/chat_message_request.py +7 -3
- vellum/types/code_execution_node_array_result.py +7 -3
- vellum/types/code_execution_node_chat_history_result.py +7 -3
- vellum/types/code_execution_node_error_result.py +7 -3
- vellum/types/code_execution_node_function_call_result.py +7 -3
- vellum/types/code_execution_node_json_result.py +7 -3
- vellum/types/code_execution_node_number_result.py +7 -3
- vellum/types/code_execution_node_result.py +7 -3
- vellum/types/code_execution_node_result_data.py +7 -3
- vellum/types/code_execution_node_result_output.py +144 -32
- vellum/types/code_execution_node_search_results_result.py +7 -3
- vellum/types/code_execution_node_string_result.py +7 -3
- vellum/types/compile_prompt_deployment_expand_meta_request.py +42 -0
- vellum/types/compile_prompt_meta.py +35 -0
- vellum/types/conditional_node_result.py +7 -3
- vellum/types/conditional_node_result_data.py +7 -3
- vellum/types/const_parameter_config.py +35 -0
- vellum/types/const_parameter_config_request.py +35 -0
- vellum/types/create_test_suite_test_case_request.py +7 -3
- vellum/types/deployment_provider_payload_response.py +9 -3
- vellum/types/deployment_read.py +12 -3
- vellum/types/deployment_release_tag_deployment_history_item.py +7 -3
- vellum/types/deployment_release_tag_read.py +7 -3
- vellum/types/document_document_to_document_index.py +7 -3
- vellum/types/document_index_chunking.py +54 -12
- vellum/types/document_index_chunking_request.py +54 -12
- vellum/types/document_index_indexing_config.py +7 -3
- vellum/types/document_index_indexing_config_request.py +7 -3
- vellum/types/document_index_read.py +7 -3
- vellum/types/document_read.py +7 -3
- vellum/types/enriched_normalized_completion.py +7 -3
- vellum/types/error_variable_value.py +7 -3
- vellum/types/error_vellum_value.py +7 -3
- vellum/types/error_vellum_value_request.py +7 -3
- vellum/types/execute_prompt_event.py +82 -16
- vellum/types/execute_prompt_response.py +44 -8
- vellum/types/execute_workflow_response.py +7 -3
- vellum/types/execute_workflow_workflow_result_event.py +41 -8
- vellum/types/execution_array_vellum_value.py +7 -3
- vellum/types/execution_chat_history_vellum_value.py +7 -3
- vellum/types/execution_error_vellum_value.py +7 -3
- vellum/types/execution_function_call_vellum_value.py +7 -3
- vellum/types/execution_json_vellum_value.py +7 -3
- vellum/types/execution_number_vellum_value.py +7 -3
- vellum/types/execution_search_results_vellum_value.py +7 -3
- vellum/types/execution_string_vellum_value.py +7 -3
- vellum/types/execution_vellum_value.py +152 -32
- vellum/types/external_test_case_execution.py +7 -3
- vellum/types/external_test_case_execution_request.py +7 -3
- vellum/types/fulfilled_execute_prompt_event.py +7 -3
- vellum/types/fulfilled_execute_prompt_response.py +7 -3
- vellum/types/fulfilled_execute_workflow_workflow_result_event.py +7 -3
- vellum/types/fulfilled_prompt_execution_meta.py +7 -3
- vellum/types/fulfilled_workflow_node_result_event.py +7 -3
- vellum/types/function_call.py +7 -3
- vellum/types/function_call_chat_message_content.py +7 -3
- vellum/types/function_call_chat_message_content_request.py +7 -3
- vellum/types/function_call_chat_message_content_value.py +7 -3
- vellum/types/function_call_chat_message_content_value_request.py +7 -3
- vellum/types/function_call_request.py +7 -3
- vellum/types/function_call_variable_value.py +7 -3
- vellum/types/function_call_vellum_value.py +7 -3
- vellum/types/function_call_vellum_value_request.py +7 -3
- vellum/types/generate_options_request.py +7 -3
- vellum/types/generate_request.py +7 -3
- vellum/types/generate_result.py +7 -3
- vellum/types/generate_result_data.py +7 -3
- vellum/types/generate_result_error.py +7 -3
- vellum/types/generate_stream_response.py +7 -3
- vellum/types/generate_stream_result.py +7 -3
- vellum/types/generate_stream_result_data.py +7 -3
- vellum/types/hkunlp_instructor_xl_vectorizer.py +7 -3
- vellum/types/hkunlp_instructor_xl_vectorizer_request.py +7 -3
- vellum/types/hosted_by_enum.py +26 -0
- vellum/types/hugging_face_tokenizer_config.py +34 -0
- vellum/types/hugging_face_tokenizer_config_request.py +34 -0
- vellum/types/image_chat_message_content.py +7 -3
- vellum/types/image_chat_message_content_request.py +7 -3
- vellum/types/image_variable_value.py +7 -3
- vellum/types/image_vellum_value.py +7 -3
- vellum/types/image_vellum_value_request.py +7 -3
- vellum/types/indexing_config_vectorizer.py +117 -36
- vellum/types/indexing_config_vectorizer_request.py +117 -36
- vellum/types/initiated_execute_prompt_event.py +7 -3
- vellum/types/initiated_prompt_execution_meta.py +7 -3
- vellum/types/initiated_workflow_node_result_event.py +7 -3
- vellum/types/instructor_vectorizer_config.py +7 -3
- vellum/types/instructor_vectorizer_config_request.py +7 -3
- vellum/types/integer_parameter_config.py +39 -0
- vellum/types/integer_parameter_config_request.py +39 -0
- vellum/types/json_input_request.py +7 -3
- vellum/types/json_variable_value.py +7 -3
- vellum/types/json_vellum_value.py +7 -3
- vellum/types/json_vellum_value_request.py +7 -3
- vellum/types/map_node_result.py +7 -3
- vellum/types/map_node_result_data.py +7 -3
- vellum/types/merge_node_result.py +7 -3
- vellum/types/merge_node_result_data.py +7 -3
- vellum/types/metadata_filter_config_request.py +7 -3
- vellum/types/metadata_filter_rule_request.py +7 -3
- vellum/types/metric_node_result.py +7 -3
- vellum/types/{execute_workflow_stream_error_response.py → ml_model_build_config.py} +9 -8
- vellum/types/{execute_prompt_api_error_response.py → ml_model_build_config_request.py} +9 -8
- vellum/types/ml_model_developer.py +27 -0
- vellum/types/ml_model_developer_enum_value_label.py +31 -0
- vellum/types/ml_model_display_config_labelled.py +33 -0
- vellum/types/ml_model_display_config_request.py +33 -0
- vellum/types/ml_model_display_tag.py +7 -0
- vellum/types/ml_model_display_tag_enum_value_label.py +31 -0
- vellum/types/ml_model_exec_config.py +40 -0
- vellum/types/ml_model_exec_config_request.py +40 -0
- vellum/types/ml_model_family.py +29 -0
- vellum/types/ml_model_family_enum_value_label.py +31 -0
- vellum/types/ml_model_feature.py +18 -0
- vellum/types/ml_model_parameter_config.py +42 -0
- vellum/types/ml_model_parameter_config_request.py +42 -0
- vellum/types/ml_model_read.py +108 -0
- vellum/types/ml_model_request_authorization_config.py +30 -0
- vellum/types/ml_model_request_authorization_config_request.py +30 -0
- vellum/types/ml_model_request_authorization_config_type_enum.py +5 -0
- vellum/types/ml_model_request_config.py +32 -0
- vellum/types/ml_model_request_config_request.py +32 -0
- vellum/types/ml_model_response_config.py +31 -0
- vellum/types/ml_model_response_config_request.py +31 -0
- vellum/types/ml_model_tokenizer_config.py +59 -0
- vellum/types/ml_model_tokenizer_config_request.py +61 -0
- vellum/types/ml_model_usage.py +7 -3
- vellum/types/named_scenario_input_chat_history_variable_value_request.py +7 -3
- vellum/types/named_scenario_input_request.py +38 -8
- vellum/types/named_scenario_input_string_variable_value_request.py +7 -3
- vellum/types/named_test_case_array_variable_value.py +7 -3
- vellum/types/named_test_case_array_variable_value_request.py +7 -3
- vellum/types/named_test_case_chat_history_variable_value.py +7 -3
- vellum/types/named_test_case_chat_history_variable_value_request.py +7 -3
- vellum/types/named_test_case_error_variable_value.py +7 -3
- vellum/types/named_test_case_error_variable_value_request.py +7 -3
- vellum/types/named_test_case_function_call_variable_value.py +7 -3
- vellum/types/named_test_case_function_call_variable_value_request.py +7 -3
- vellum/types/named_test_case_json_variable_value.py +7 -3
- vellum/types/named_test_case_json_variable_value_request.py +7 -3
- vellum/types/named_test_case_number_variable_value.py +7 -3
- vellum/types/named_test_case_number_variable_value_request.py +7 -3
- vellum/types/named_test_case_search_results_variable_value.py +7 -3
- vellum/types/named_test_case_search_results_variable_value_request.py +7 -3
- vellum/types/named_test_case_string_variable_value.py +7 -3
- vellum/types/named_test_case_string_variable_value_request.py +7 -3
- vellum/types/named_test_case_variable_value.py +144 -32
- vellum/types/named_test_case_variable_value_request.py +144 -32
- vellum/types/node_input_compiled_array_value.py +7 -3
- vellum/types/node_input_compiled_chat_history_value.py +7 -3
- vellum/types/node_input_compiled_error_value.py +7 -3
- vellum/types/node_input_compiled_function_call.py +7 -3
- vellum/types/node_input_compiled_json_value.py +7 -3
- vellum/types/node_input_compiled_number_value.py +7 -3
- vellum/types/node_input_compiled_search_results_value.py +7 -3
- vellum/types/node_input_compiled_string_value.py +7 -3
- vellum/types/node_input_variable_compiled_value.py +152 -32
- vellum/types/node_output_compiled_array_value.py +7 -3
- vellum/types/node_output_compiled_chat_history_value.py +7 -3
- vellum/types/node_output_compiled_error_value.py +7 -3
- vellum/types/node_output_compiled_function_call_value.py +7 -3
- vellum/types/node_output_compiled_json_value.py +7 -3
- vellum/types/node_output_compiled_number_value.py +7 -3
- vellum/types/node_output_compiled_search_results_value.py +7 -3
- vellum/types/node_output_compiled_string_value.py +7 -3
- vellum/types/node_output_compiled_value.py +153 -32
- vellum/types/normalized_log_probs.py +7 -3
- vellum/types/normalized_token_log_probs.py +7 -3
- vellum/types/number_parameter_config.py +40 -0
- vellum/types/number_parameter_config_request.py +40 -0
- vellum/types/number_variable_value.py +7 -3
- vellum/types/number_vellum_value.py +7 -3
- vellum/types/number_vellum_value_request.py +7 -3
- vellum/types/object_parameter_config.py +49 -0
- vellum/types/object_parameter_config_request.py +49 -0
- vellum/types/one_of_parameter_config.py +44 -0
- vellum/types/one_of_parameter_config_request.py +44 -0
- vellum/types/open_ai_vectorizer_config.py +7 -3
- vellum/types/open_ai_vectorizer_config_request.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_large.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_large_request.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_small.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_3_small_request.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_ada_002.py +7 -3
- vellum/types/open_ai_vectorizer_text_embedding_ada_002_request.py +7 -3
- vellum/types/paginated_document_index_read_list.py +7 -3
- vellum/types/paginated_ml_model_read_list.py +33 -0
- vellum/types/paginated_slim_deployment_read_list.py +7 -3
- vellum/types/paginated_slim_document_list.py +7 -3
- vellum/types/paginated_slim_workflow_deployment_list.py +7 -3
- vellum/types/paginated_test_suite_run_execution_list.py +7 -3
- vellum/types/paginated_test_suite_test_case_list.py +7 -3
- vellum/types/parameter_config.py +251 -0
- vellum/types/parameter_config_request.py +251 -0
- vellum/types/pdf_search_result_meta_source.py +7 -3
- vellum/types/pdf_search_result_meta_source_request.py +7 -3
- vellum/types/prompt_deployment_expand_meta_request_request.py +7 -3
- vellum/types/prompt_deployment_input_request.py +55 -12
- vellum/types/prompt_execution_meta.py +7 -3
- vellum/types/prompt_node_execution_meta.py +7 -3
- vellum/types/prompt_node_result.py +7 -3
- vellum/types/prompt_node_result_data.py +7 -3
- vellum/types/prompt_output.py +69 -16
- vellum/types/raw_prompt_execution_overrides_request.py +7 -3
- vellum/types/reducto_chunker_config.py +7 -3
- vellum/types/reducto_chunker_config_request.py +7 -3
- vellum/types/reducto_chunking.py +7 -3
- vellum/types/reducto_chunking_request.py +7 -3
- vellum/types/rejected_execute_prompt_event.py +7 -3
- vellum/types/rejected_execute_prompt_response.py +7 -3
- vellum/types/rejected_execute_workflow_workflow_result_event.py +7 -3
- vellum/types/rejected_prompt_execution_meta.py +7 -3
- vellum/types/rejected_workflow_node_result_event.py +7 -3
- vellum/types/replace_test_suite_test_case_request.py +7 -3
- vellum/types/sandbox_scenario.py +7 -3
- vellum/types/scenario_input.py +38 -8
- vellum/types/scenario_input_chat_history_variable_value.py +7 -3
- vellum/types/scenario_input_string_variable_value.py +7 -3
- vellum/types/search_filters_request.py +7 -3
- vellum/types/search_node_result.py +7 -3
- vellum/types/search_node_result_data.py +7 -3
- vellum/types/search_request_options_request.py +7 -3
- vellum/types/search_response.py +7 -3
- vellum/types/search_result.py +7 -3
- vellum/types/search_result_document.py +7 -3
- vellum/types/search_result_document_request.py +7 -3
- vellum/types/search_result_merging_request.py +7 -3
- vellum/types/search_result_meta.py +7 -3
- vellum/types/search_result_meta_request.py +7 -3
- vellum/types/search_result_meta_source.py +21 -5
- vellum/types/search_result_meta_source_request.py +21 -5
- vellum/types/search_result_request.py +7 -3
- vellum/types/search_weights_request.py +7 -3
- vellum/types/sentence_chunker_config.py +7 -3
- vellum/types/sentence_chunker_config_request.py +7 -3
- vellum/types/sentence_chunking.py +7 -3
- vellum/types/sentence_chunking_request.py +7 -3
- vellum/types/slim_deployment_read.py +11 -3
- vellum/types/slim_document.py +7 -3
- vellum/types/slim_workflow_deployment.py +12 -3
- vellum/types/streaming_execute_prompt_event.py +7 -3
- vellum/types/streaming_prompt_execution_meta.py +7 -3
- vellum/types/streaming_workflow_node_result_event.py +7 -3
- vellum/types/string_chat_message_content.py +7 -3
- vellum/types/string_chat_message_content_request.py +7 -3
- vellum/types/string_input_request.py +7 -3
- vellum/types/string_parameter_config.py +39 -0
- vellum/types/string_parameter_config_request.py +39 -0
- vellum/types/string_variable_value.py +7 -3
- vellum/types/string_vellum_value.py +7 -3
- vellum/types/string_vellum_value_request.py +7 -3
- vellum/types/submit_completion_actual_request.py +7 -3
- vellum/types/submit_workflow_execution_actual_request.py +67 -12
- vellum/types/subworkflow_node_result.py +7 -3
- vellum/types/subworkflow_node_result_data.py +7 -3
- vellum/types/templating_node_array_result.py +7 -3
- vellum/types/templating_node_chat_history_result.py +7 -3
- vellum/types/templating_node_error_result.py +7 -3
- vellum/types/templating_node_function_call_result.py +7 -3
- vellum/types/templating_node_json_result.py +7 -3
- vellum/types/templating_node_number_result.py +7 -3
- vellum/types/templating_node_result.py +7 -3
- vellum/types/templating_node_result_data.py +7 -3
- vellum/types/templating_node_result_output.py +144 -32
- vellum/types/templating_node_search_results_result.py +7 -3
- vellum/types/templating_node_string_result.py +7 -3
- vellum/types/terminal_node_array_result.py +7 -3
- vellum/types/terminal_node_chat_history_result.py +7 -3
- vellum/types/terminal_node_error_result.py +7 -3
- vellum/types/terminal_node_function_call_result.py +7 -3
- vellum/types/terminal_node_json_result.py +7 -3
- vellum/types/terminal_node_number_result.py +7 -3
- vellum/types/terminal_node_result.py +7 -3
- vellum/types/terminal_node_result_data.py +7 -3
- vellum/types/terminal_node_result_output.py +152 -32
- vellum/types/terminal_node_search_results_result.py +7 -3
- vellum/types/terminal_node_string_result.py +7 -3
- vellum/types/test_case_array_variable_value.py +7 -3
- vellum/types/test_case_chat_history_variable_value.py +7 -3
- vellum/types/test_case_error_variable_value.py +7 -3
- vellum/types/test_case_function_call_variable_value.py +7 -3
- vellum/types/test_case_json_variable_value.py +8 -4
- vellum/types/test_case_number_variable_value.py +7 -3
- vellum/types/test_case_search_results_variable_value.py +7 -3
- vellum/types/test_case_string_variable_value.py +7 -3
- vellum/types/test_case_variable_value.py +152 -32
- vellum/types/test_suite_run_deployment_release_tag_exec_config.py +7 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py +7 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +7 -3
- vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py +7 -3
- vellum/types/test_suite_run_exec_config.py +57 -12
- vellum/types/test_suite_run_exec_config_request.py +61 -12
- vellum/types/test_suite_run_execution.py +7 -3
- vellum/types/test_suite_run_execution_array_output.py +7 -3
- vellum/types/test_suite_run_execution_chat_history_output.py +7 -3
- vellum/types/test_suite_run_execution_error_output.py +7 -3
- vellum/types/test_suite_run_execution_function_call_output.py +7 -3
- vellum/types/test_suite_run_execution_json_output.py +7 -3
- vellum/types/test_suite_run_execution_metric_definition.py +7 -3
- vellum/types/test_suite_run_execution_metric_result.py +7 -3
- vellum/types/test_suite_run_execution_number_output.py +7 -3
- vellum/types/test_suite_run_execution_output.py +152 -32
- vellum/types/test_suite_run_execution_search_results_output.py +7 -3
- vellum/types/test_suite_run_execution_string_output.py +7 -3
- vellum/types/test_suite_run_external_exec_config.py +7 -3
- vellum/types/test_suite_run_external_exec_config_data.py +7 -3
- vellum/types/test_suite_run_external_exec_config_data_request.py +7 -3
- vellum/types/test_suite_run_external_exec_config_request.py +7 -3
- vellum/types/test_suite_run_metric_error_output.py +7 -3
- vellum/types/test_suite_run_metric_number_output.py +7 -3
- vellum/types/test_suite_run_metric_output.py +55 -12
- vellum/types/test_suite_run_metric_string_output.py +7 -3
- vellum/types/test_suite_run_read.py +7 -3
- vellum/types/test_suite_run_test_suite.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +7 -3
- vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py +7 -3
- vellum/types/test_suite_test_case.py +7 -3
- vellum/types/test_suite_test_case_bulk_operation_request.py +75 -16
- vellum/types/test_suite_test_case_bulk_result.py +74 -16
- vellum/types/test_suite_test_case_create_bulk_operation_request.py +7 -3
- vellum/types/test_suite_test_case_created_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_created_bulk_result_data.py +7 -3
- vellum/types/test_suite_test_case_delete_bulk_operation_data_request.py +7 -3
- vellum/types/test_suite_test_case_delete_bulk_operation_request.py +7 -3
- vellum/types/test_suite_test_case_deleted_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_deleted_bulk_result_data.py +7 -3
- vellum/types/test_suite_test_case_rejected_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_replace_bulk_operation_request.py +7 -3
- vellum/types/test_suite_test_case_replaced_bulk_result.py +7 -3
- vellum/types/test_suite_test_case_replaced_bulk_result_data.py +7 -3
- vellum/types/test_suite_test_case_upsert_bulk_operation_request.py +7 -3
- vellum/types/{execute_workflow_error_response.py → tik_token_tokenizer_config.py} +11 -6
- vellum/types/{generate_error_response.py → tik_token_tokenizer_config_request.py} +11 -6
- vellum/types/token_overlapping_window_chunker_config.py +7 -3
- vellum/types/token_overlapping_window_chunker_config_request.py +7 -3
- vellum/types/token_overlapping_window_chunking.py +7 -3
- vellum/types/token_overlapping_window_chunking_request.py +7 -3
- vellum/types/upload_document_response.py +7 -3
- vellum/types/upsert_test_suite_test_case_request.py +7 -3
- vellum/types/vellum_error.py +7 -3
- vellum/types/vellum_error_request.py +7 -3
- vellum/types/vellum_image.py +7 -3
- vellum/types/vellum_image_request.py +7 -3
- vellum/types/vellum_variable.py +7 -3
- vellum/types/visibility_enum.py +5 -0
- vellum/types/workflow_deployment_read.py +12 -3
- vellum/types/workflow_event_error.py +7 -3
- vellum/types/workflow_execution_actual_chat_history_request.py +7 -3
- vellum/types/workflow_execution_actual_json_request.py +7 -3
- vellum/types/workflow_execution_actual_string_request.py +7 -3
- vellum/types/workflow_execution_node_result_event.py +7 -3
- vellum/types/workflow_execution_workflow_result_event.py +7 -3
- vellum/types/workflow_expand_meta_request.py +7 -3
- vellum/types/workflow_node_result_data.py +189 -45
- vellum/types/workflow_node_result_event.py +101 -20
- vellum/types/workflow_output.py +171 -36
- vellum/types/workflow_output_array.py +7 -3
- vellum/types/workflow_output_chat_history.py +7 -3
- vellum/types/workflow_output_error.py +7 -3
- vellum/types/workflow_output_function_call.py +7 -3
- vellum/types/workflow_output_image.py +7 -3
- vellum/types/workflow_output_json.py +7 -3
- vellum/types/workflow_output_number.py +7 -3
- vellum/types/workflow_output_search_results.py +7 -3
- vellum/types/workflow_output_string.py +7 -3
- vellum/types/workflow_release_tag_read.py +7 -3
- vellum/types/workflow_release_tag_workflow_deployment_history_item.py +7 -3
- vellum/types/workflow_request_chat_history_input_request.py +7 -3
- vellum/types/workflow_request_input_request.py +72 -16
- vellum/types/workflow_request_json_input_request.py +7 -3
- vellum/types/workflow_request_number_input_request.py +7 -3
- vellum/types/workflow_request_string_input_request.py +7 -3
- vellum/types/workflow_result_event.py +7 -3
- vellum/types/workflow_result_event_output_data.py +178 -33
- vellum/types/workflow_result_event_output_data_array.py +7 -3
- vellum/types/workflow_result_event_output_data_chat_history.py +7 -3
- vellum/types/workflow_result_event_output_data_error.py +7 -3
- vellum/types/workflow_result_event_output_data_function_call.py +7 -3
- vellum/types/workflow_result_event_output_data_json.py +7 -3
- vellum/types/workflow_result_event_output_data_number.py +7 -3
- vellum/types/workflow_result_event_output_data_search_results.py +7 -3
- vellum/types/workflow_result_event_output_data_string.py +7 -3
- vellum/types/workflow_stream_event.py +43 -8
- {vellum_ai-0.7.2.dist-info → vellum_ai-0.7.5.dist-info}/METADATA +13 -1
- vellum_ai-0.7.5.dist-info/RECORD +502 -0
- vellum/types/array_enum.py +0 -5
- vellum/types/chat_history_enum.py +0 -5
- vellum/types/create_enum.py +0 -5
- vellum/types/created_enum.py +0 -5
- vellum/types/delete_enum.py +0 -5
- vellum/types/deleted_enum.py +0 -5
- vellum/types/error_enum.py +0 -5
- vellum/types/function_call_enum.py +0 -5
- vellum/types/hkunlp_instructor_xl_enum.py +0 -5
- vellum/types/image_enum.py +0 -5
- vellum/types/initiated_enum.py +0 -5
- vellum/types/intfloat_multilingual_e_5_large_enum.py +0 -5
- vellum/types/json_enum.py +0 -5
- vellum/types/merge_enum.py +0 -5
- vellum/types/metric_enum.py +0 -5
- vellum/types/number_enum.py +0 -5
- vellum/types/pdf_enum.py +0 -5
- vellum/types/reducto_chunker_enum.py +0 -5
- vellum/types/rejected_enum.py +0 -5
- vellum/types/replace_enum.py +0 -5
- vellum/types/replaced_enum.py +0 -5
- vellum/types/search_error_response.py +0 -28
- vellum/types/search_results_enum.py +0 -5
- vellum/types/sentence_chunker_enum.py +0 -5
- vellum/types/sentence_transformers_multi_qa_mpnet_base_cos_v_1_enum.py +0 -5
- vellum/types/sentence_transformers_multi_qa_mpnet_base_dot_v_1_enum.py +0 -5
- vellum/types/streaming_enum.py +0 -5
- vellum/types/string_enum.py +0 -5
- vellum/types/submit_completion_actuals_error_response.py +0 -25
- vellum/types/subworkflow_enum.py +0 -5
- vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py +0 -5
- vellum/types/test_suite_run_external_exec_config_type_enum.py +0 -5
- vellum/types/test_suite_run_metric_error_output_type_enum.py +0 -5
- vellum/types/test_suite_run_metric_number_output_type_enum.py +0 -5
- vellum/types/test_suite_run_metric_string_output_type_enum.py +0 -5
- vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py +0 -5
- vellum/types/text_embedding_3_large_enum.py +0 -5
- vellum/types/text_embedding_3_small_enum.py +0 -5
- vellum/types/text_embedding_ada_002_enum.py +0 -5
- vellum/types/token_overlapping_window_chunker_enum.py +0 -5
- vellum/types/upload_document_error_response.py +0 -25
- vellum/types/upsert_enum.py +0 -5
- vellum_ai-0.7.2.dist-info/RECORD +0 -494
- {vellum_ai-0.7.2.dist-info → vellum_ai-0.7.5.dist-info}/LICENSE +0 -0
- {vellum_ai-0.7.2.dist-info → vellum_ai-0.7.5.dist-info}/WHEEL +0 -0
@@ -1,14 +1,12 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
3
|
import typing
|
4
|
-
import urllib.parse
|
5
4
|
from json.decoder import JSONDecodeError
|
6
5
|
|
7
6
|
from ...core.api_error import ApiError
|
8
7
|
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
9
8
|
from ...core.jsonable_encoder import jsonable_encoder
|
10
9
|
from ...core.pydantic_utilities import pydantic_v1
|
11
|
-
from ...core.remove_none_from_dict import remove_none_from_dict
|
12
10
|
from ...core.request_options import RequestOptions
|
13
11
|
from ...types.paginated_slim_workflow_deployment_list import PaginatedSlimWorkflowDeploymentList
|
14
12
|
from ...types.workflow_deployment_read import WorkflowDeploymentRead
|
@@ -33,17 +31,32 @@ class WorkflowDeploymentsClient:
|
|
33
31
|
request_options: typing.Optional[RequestOptions] = None,
|
34
32
|
) -> PaginatedSlimWorkflowDeploymentList:
|
35
33
|
"""
|
36
|
-
|
37
|
-
- limit: typing.Optional[int]. Number of results to return per page.
|
34
|
+
Used to list all Workflow Deployments.
|
38
35
|
|
39
|
-
|
36
|
+
Parameters
|
37
|
+
----------
|
38
|
+
limit : typing.Optional[int]
|
39
|
+
Number of results to return per page.
|
40
40
|
|
41
|
-
|
41
|
+
offset : typing.Optional[int]
|
42
|
+
The initial index from which to return the results.
|
42
43
|
|
43
|
-
|
44
|
+
ordering : typing.Optional[str]
|
45
|
+
Which field to use when ordering the results.
|
44
46
|
|
45
|
-
|
46
|
-
|
47
|
+
status : typing.Optional[WorkflowDeploymentsListRequestStatus]
|
48
|
+
status
|
49
|
+
|
50
|
+
request_options : typing.Optional[RequestOptions]
|
51
|
+
Request-specific configuration.
|
52
|
+
|
53
|
+
Returns
|
54
|
+
-------
|
55
|
+
PaginatedSlimWorkflowDeploymentList
|
56
|
+
|
57
|
+
|
58
|
+
Examples
|
59
|
+
--------
|
47
60
|
from vellum.client import Vellum
|
48
61
|
|
49
62
|
client = Vellum(
|
@@ -52,40 +65,15 @@ class WorkflowDeploymentsClient:
|
|
52
65
|
client.workflow_deployments.list()
|
53
66
|
"""
|
54
67
|
_response = self._client_wrapper.httpx_client.request(
|
68
|
+
"v1/workflow-deployments",
|
69
|
+
base_url=self._client_wrapper.get_environment().default,
|
55
70
|
method="GET",
|
56
|
-
|
57
|
-
|
58
|
-
remove_none_from_dict(
|
59
|
-
{
|
60
|
-
"limit": limit,
|
61
|
-
"offset": offset,
|
62
|
-
"ordering": ordering,
|
63
|
-
"status": status,
|
64
|
-
**(
|
65
|
-
request_options.get("additional_query_parameters", {})
|
66
|
-
if request_options is not None
|
67
|
-
else {}
|
68
|
-
),
|
69
|
-
}
|
70
|
-
)
|
71
|
-
),
|
72
|
-
headers=jsonable_encoder(
|
73
|
-
remove_none_from_dict(
|
74
|
-
{
|
75
|
-
**self._client_wrapper.get_headers(),
|
76
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
77
|
-
}
|
78
|
-
)
|
79
|
-
),
|
80
|
-
timeout=request_options.get("timeout_in_seconds")
|
81
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
82
|
-
else self._client_wrapper.get_timeout(),
|
83
|
-
retries=0,
|
84
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
71
|
+
params={"limit": limit, "offset": offset, "ordering": ordering, "status": status},
|
72
|
+
request_options=request_options,
|
85
73
|
)
|
86
|
-
if 200 <= _response.status_code < 300:
|
87
|
-
return pydantic_v1.parse_obj_as(PaginatedSlimWorkflowDeploymentList, _response.json()) # type: ignore
|
88
74
|
try:
|
75
|
+
if 200 <= _response.status_code < 300:
|
76
|
+
return pydantic_v1.parse_obj_as(PaginatedSlimWorkflowDeploymentList, _response.json()) # type: ignore
|
89
77
|
_response_json = _response.json()
|
90
78
|
except JSONDecodeError:
|
91
79
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -95,11 +83,21 @@ class WorkflowDeploymentsClient:
|
|
95
83
|
"""
|
96
84
|
Used to retrieve a workflow deployment given its ID or name.
|
97
85
|
|
98
|
-
Parameters
|
99
|
-
|
86
|
+
Parameters
|
87
|
+
----------
|
88
|
+
id : str
|
89
|
+
Either the Workflow Deployment's ID or its unique name
|
90
|
+
|
91
|
+
request_options : typing.Optional[RequestOptions]
|
92
|
+
Request-specific configuration.
|
93
|
+
|
94
|
+
Returns
|
95
|
+
-------
|
96
|
+
WorkflowDeploymentRead
|
97
|
+
|
100
98
|
|
101
|
-
|
102
|
-
|
99
|
+
Examples
|
100
|
+
--------
|
103
101
|
from vellum.client import Vellum
|
104
102
|
|
105
103
|
client = Vellum(
|
@@ -110,30 +108,14 @@ class WorkflowDeploymentsClient:
|
|
110
108
|
)
|
111
109
|
"""
|
112
110
|
_response = self._client_wrapper.httpx_client.request(
|
111
|
+
f"v1/workflow-deployments/{jsonable_encoder(id)}",
|
112
|
+
base_url=self._client_wrapper.get_environment().default,
|
113
113
|
method="GET",
|
114
|
-
|
115
|
-
f"{self._client_wrapper.get_environment().default}/", f"v1/workflow-deployments/{jsonable_encoder(id)}"
|
116
|
-
),
|
117
|
-
params=jsonable_encoder(
|
118
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
119
|
-
),
|
120
|
-
headers=jsonable_encoder(
|
121
|
-
remove_none_from_dict(
|
122
|
-
{
|
123
|
-
**self._client_wrapper.get_headers(),
|
124
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
125
|
-
}
|
126
|
-
)
|
127
|
-
),
|
128
|
-
timeout=request_options.get("timeout_in_seconds")
|
129
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
130
|
-
else self._client_wrapper.get_timeout(),
|
131
|
-
retries=0,
|
132
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
114
|
+
request_options=request_options,
|
133
115
|
)
|
134
|
-
if 200 <= _response.status_code < 300:
|
135
|
-
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
136
116
|
try:
|
117
|
+
if 200 <= _response.status_code < 300:
|
118
|
+
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
137
119
|
_response_json = _response.json()
|
138
120
|
except JSONDecodeError:
|
139
121
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -145,13 +127,24 @@ class WorkflowDeploymentsClient:
|
|
145
127
|
"""
|
146
128
|
Retrieve a Workflow Release Tag by tag name, associated with a specified Workflow Deployment.
|
147
129
|
|
148
|
-
Parameters
|
149
|
-
|
130
|
+
Parameters
|
131
|
+
----------
|
132
|
+
id : str
|
133
|
+
A UUID string identifying this workflow deployment.
|
150
134
|
|
151
|
-
|
135
|
+
name : str
|
136
|
+
The name of the Release Tag associated with this Workflow Deployment that you'd like to retrieve.
|
152
137
|
|
153
|
-
|
154
|
-
|
138
|
+
request_options : typing.Optional[RequestOptions]
|
139
|
+
Request-specific configuration.
|
140
|
+
|
141
|
+
Returns
|
142
|
+
-------
|
143
|
+
WorkflowReleaseTagRead
|
144
|
+
|
145
|
+
|
146
|
+
Examples
|
147
|
+
--------
|
155
148
|
from vellum.client import Vellum
|
156
149
|
|
157
150
|
client = Vellum(
|
@@ -163,31 +156,14 @@ class WorkflowDeploymentsClient:
|
|
163
156
|
)
|
164
157
|
"""
|
165
158
|
_response = self._client_wrapper.httpx_client.request(
|
159
|
+
f"v1/workflow-deployments/{jsonable_encoder(id)}/release-tags/{jsonable_encoder(name)}",
|
160
|
+
base_url=self._client_wrapper.get_environment().default,
|
166
161
|
method="GET",
|
167
|
-
|
168
|
-
f"{self._client_wrapper.get_environment().default}/",
|
169
|
-
f"v1/workflow-deployments/{jsonable_encoder(id)}/release-tags/{jsonable_encoder(name)}",
|
170
|
-
),
|
171
|
-
params=jsonable_encoder(
|
172
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
173
|
-
),
|
174
|
-
headers=jsonable_encoder(
|
175
|
-
remove_none_from_dict(
|
176
|
-
{
|
177
|
-
**self._client_wrapper.get_headers(),
|
178
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
179
|
-
}
|
180
|
-
)
|
181
|
-
),
|
182
|
-
timeout=request_options.get("timeout_in_seconds")
|
183
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
184
|
-
else self._client_wrapper.get_timeout(),
|
185
|
-
retries=0,
|
186
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
162
|
+
request_options=request_options,
|
187
163
|
)
|
188
|
-
if 200 <= _response.status_code < 300:
|
189
|
-
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
190
164
|
try:
|
165
|
+
if 200 <= _response.status_code < 300:
|
166
|
+
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
191
167
|
_response_json = _response.json()
|
192
168
|
except JSONDecodeError:
|
193
169
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -204,15 +180,27 @@ class WorkflowDeploymentsClient:
|
|
204
180
|
"""
|
205
181
|
Updates an existing Release Tag associated with the specified Workflow Deployment.
|
206
182
|
|
207
|
-
Parameters
|
208
|
-
|
183
|
+
Parameters
|
184
|
+
----------
|
185
|
+
id : str
|
186
|
+
A UUID string identifying this workflow deployment.
|
187
|
+
|
188
|
+
name : str
|
189
|
+
The name of the Release Tag associated with this Workflow Deployment that you'd like to update.
|
209
190
|
|
210
|
-
|
191
|
+
history_item_id : typing.Optional[str]
|
192
|
+
The ID of the Workflow Deployment History Item to tag
|
211
193
|
|
212
|
-
|
194
|
+
request_options : typing.Optional[RequestOptions]
|
195
|
+
Request-specific configuration.
|
213
196
|
|
214
|
-
|
215
|
-
|
197
|
+
Returns
|
198
|
+
-------
|
199
|
+
WorkflowReleaseTagRead
|
200
|
+
|
201
|
+
|
202
|
+
Examples
|
203
|
+
--------
|
216
204
|
from vellum.client import Vellum
|
217
205
|
|
218
206
|
client = Vellum(
|
@@ -223,41 +211,17 @@ class WorkflowDeploymentsClient:
|
|
223
211
|
name="name",
|
224
212
|
)
|
225
213
|
"""
|
226
|
-
_request: typing.Dict[str, typing.Any] = {}
|
227
|
-
if history_item_id is not OMIT:
|
228
|
-
_request["history_item_id"] = history_item_id
|
229
214
|
_response = self._client_wrapper.httpx_client.request(
|
215
|
+
f"v1/workflow-deployments/{jsonable_encoder(id)}/release-tags/{jsonable_encoder(name)}",
|
216
|
+
base_url=self._client_wrapper.get_environment().default,
|
230
217
|
method="PATCH",
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
),
|
235
|
-
params=jsonable_encoder(
|
236
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
237
|
-
),
|
238
|
-
json=jsonable_encoder(_request)
|
239
|
-
if request_options is None or request_options.get("additional_body_parameters") is None
|
240
|
-
else {
|
241
|
-
**jsonable_encoder(_request),
|
242
|
-
**(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
|
243
|
-
},
|
244
|
-
headers=jsonable_encoder(
|
245
|
-
remove_none_from_dict(
|
246
|
-
{
|
247
|
-
**self._client_wrapper.get_headers(),
|
248
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
249
|
-
}
|
250
|
-
)
|
251
|
-
),
|
252
|
-
timeout=request_options.get("timeout_in_seconds")
|
253
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
254
|
-
else self._client_wrapper.get_timeout(),
|
255
|
-
retries=0,
|
256
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
218
|
+
json={"history_item_id": history_item_id},
|
219
|
+
request_options=request_options,
|
220
|
+
omit=OMIT,
|
257
221
|
)
|
258
|
-
if 200 <= _response.status_code < 300:
|
259
|
-
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
260
222
|
try:
|
223
|
+
if 200 <= _response.status_code < 300:
|
224
|
+
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
261
225
|
_response_json = _response.json()
|
262
226
|
except JSONDecodeError:
|
263
227
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -278,59 +242,57 @@ class AsyncWorkflowDeploymentsClient:
|
|
278
242
|
request_options: typing.Optional[RequestOptions] = None,
|
279
243
|
) -> PaginatedSlimWorkflowDeploymentList:
|
280
244
|
"""
|
281
|
-
|
282
|
-
|
245
|
+
Used to list all Workflow Deployments.
|
246
|
+
|
247
|
+
Parameters
|
248
|
+
----------
|
249
|
+
limit : typing.Optional[int]
|
250
|
+
Number of results to return per page.
|
283
251
|
|
284
|
-
|
252
|
+
offset : typing.Optional[int]
|
253
|
+
The initial index from which to return the results.
|
285
254
|
|
286
|
-
|
255
|
+
ordering : typing.Optional[str]
|
256
|
+
Which field to use when ordering the results.
|
287
257
|
|
288
|
-
|
258
|
+
status : typing.Optional[WorkflowDeploymentsListRequestStatus]
|
259
|
+
status
|
260
|
+
|
261
|
+
request_options : typing.Optional[RequestOptions]
|
262
|
+
Request-specific configuration.
|
263
|
+
|
264
|
+
Returns
|
265
|
+
-------
|
266
|
+
PaginatedSlimWorkflowDeploymentList
|
267
|
+
|
268
|
+
|
269
|
+
Examples
|
270
|
+
--------
|
271
|
+
import asyncio
|
289
272
|
|
290
|
-
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
291
|
-
---
|
292
273
|
from vellum.client import AsyncVellum
|
293
274
|
|
294
275
|
client = AsyncVellum(
|
295
276
|
api_key="YOUR_API_KEY",
|
296
277
|
)
|
297
|
-
|
278
|
+
|
279
|
+
|
280
|
+
async def main() -> None:
|
281
|
+
await client.workflow_deployments.list()
|
282
|
+
|
283
|
+
|
284
|
+
asyncio.run(main())
|
298
285
|
"""
|
299
286
|
_response = await self._client_wrapper.httpx_client.request(
|
287
|
+
"v1/workflow-deployments",
|
288
|
+
base_url=self._client_wrapper.get_environment().default,
|
300
289
|
method="GET",
|
301
|
-
|
302
|
-
|
303
|
-
remove_none_from_dict(
|
304
|
-
{
|
305
|
-
"limit": limit,
|
306
|
-
"offset": offset,
|
307
|
-
"ordering": ordering,
|
308
|
-
"status": status,
|
309
|
-
**(
|
310
|
-
request_options.get("additional_query_parameters", {})
|
311
|
-
if request_options is not None
|
312
|
-
else {}
|
313
|
-
),
|
314
|
-
}
|
315
|
-
)
|
316
|
-
),
|
317
|
-
headers=jsonable_encoder(
|
318
|
-
remove_none_from_dict(
|
319
|
-
{
|
320
|
-
**self._client_wrapper.get_headers(),
|
321
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
322
|
-
}
|
323
|
-
)
|
324
|
-
),
|
325
|
-
timeout=request_options.get("timeout_in_seconds")
|
326
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
327
|
-
else self._client_wrapper.get_timeout(),
|
328
|
-
retries=0,
|
329
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
290
|
+
params={"limit": limit, "offset": offset, "ordering": ordering, "status": status},
|
291
|
+
request_options=request_options,
|
330
292
|
)
|
331
|
-
if 200 <= _response.status_code < 300:
|
332
|
-
return pydantic_v1.parse_obj_as(PaginatedSlimWorkflowDeploymentList, _response.json()) # type: ignore
|
333
293
|
try:
|
294
|
+
if 200 <= _response.status_code < 300:
|
295
|
+
return pydantic_v1.parse_obj_as(PaginatedSlimWorkflowDeploymentList, _response.json()) # type: ignore
|
334
296
|
_response_json = _response.json()
|
335
297
|
except JSONDecodeError:
|
336
298
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -342,45 +304,47 @@ class AsyncWorkflowDeploymentsClient:
|
|
342
304
|
"""
|
343
305
|
Used to retrieve a workflow deployment given its ID or name.
|
344
306
|
|
345
|
-
Parameters
|
346
|
-
|
307
|
+
Parameters
|
308
|
+
----------
|
309
|
+
id : str
|
310
|
+
Either the Workflow Deployment's ID or its unique name
|
311
|
+
|
312
|
+
request_options : typing.Optional[RequestOptions]
|
313
|
+
Request-specific configuration.
|
314
|
+
|
315
|
+
Returns
|
316
|
+
-------
|
317
|
+
WorkflowDeploymentRead
|
318
|
+
|
319
|
+
|
320
|
+
Examples
|
321
|
+
--------
|
322
|
+
import asyncio
|
347
323
|
|
348
|
-
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
349
|
-
---
|
350
324
|
from vellum.client import AsyncVellum
|
351
325
|
|
352
326
|
client = AsyncVellum(
|
353
327
|
api_key="YOUR_API_KEY",
|
354
328
|
)
|
355
|
-
|
356
|
-
|
357
|
-
)
|
329
|
+
|
330
|
+
|
331
|
+
async def main() -> None:
|
332
|
+
await client.workflow_deployments.retrieve(
|
333
|
+
id="id",
|
334
|
+
)
|
335
|
+
|
336
|
+
|
337
|
+
asyncio.run(main())
|
358
338
|
"""
|
359
339
|
_response = await self._client_wrapper.httpx_client.request(
|
340
|
+
f"v1/workflow-deployments/{jsonable_encoder(id)}",
|
341
|
+
base_url=self._client_wrapper.get_environment().default,
|
360
342
|
method="GET",
|
361
|
-
|
362
|
-
f"{self._client_wrapper.get_environment().default}/", f"v1/workflow-deployments/{jsonable_encoder(id)}"
|
363
|
-
),
|
364
|
-
params=jsonable_encoder(
|
365
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
366
|
-
),
|
367
|
-
headers=jsonable_encoder(
|
368
|
-
remove_none_from_dict(
|
369
|
-
{
|
370
|
-
**self._client_wrapper.get_headers(),
|
371
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
372
|
-
}
|
373
|
-
)
|
374
|
-
),
|
375
|
-
timeout=request_options.get("timeout_in_seconds")
|
376
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
377
|
-
else self._client_wrapper.get_timeout(),
|
378
|
-
retries=0,
|
379
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
343
|
+
request_options=request_options,
|
380
344
|
)
|
381
|
-
if 200 <= _response.status_code < 300:
|
382
|
-
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
383
345
|
try:
|
346
|
+
if 200 <= _response.status_code < 300:
|
347
|
+
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
384
348
|
_response_json = _response.json()
|
385
349
|
except JSONDecodeError:
|
386
350
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -392,49 +356,51 @@ class AsyncWorkflowDeploymentsClient:
|
|
392
356
|
"""
|
393
357
|
Retrieve a Workflow Release Tag by tag name, associated with a specified Workflow Deployment.
|
394
358
|
|
395
|
-
Parameters
|
396
|
-
|
359
|
+
Parameters
|
360
|
+
----------
|
361
|
+
id : str
|
362
|
+
A UUID string identifying this workflow deployment.
|
363
|
+
|
364
|
+
name : str
|
365
|
+
The name of the Release Tag associated with this Workflow Deployment that you'd like to retrieve.
|
366
|
+
|
367
|
+
request_options : typing.Optional[RequestOptions]
|
368
|
+
Request-specific configuration.
|
397
369
|
|
398
|
-
|
370
|
+
Returns
|
371
|
+
-------
|
372
|
+
WorkflowReleaseTagRead
|
373
|
+
|
374
|
+
|
375
|
+
Examples
|
376
|
+
--------
|
377
|
+
import asyncio
|
399
378
|
|
400
|
-
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
401
|
-
---
|
402
379
|
from vellum.client import AsyncVellum
|
403
380
|
|
404
381
|
client = AsyncVellum(
|
405
382
|
api_key="YOUR_API_KEY",
|
406
383
|
)
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
384
|
+
|
385
|
+
|
386
|
+
async def main() -> None:
|
387
|
+
await client.workflow_deployments.retrieve_workflow_release_tag(
|
388
|
+
id="id",
|
389
|
+
name="name",
|
390
|
+
)
|
391
|
+
|
392
|
+
|
393
|
+
asyncio.run(main())
|
411
394
|
"""
|
412
395
|
_response = await self._client_wrapper.httpx_client.request(
|
396
|
+
f"v1/workflow-deployments/{jsonable_encoder(id)}/release-tags/{jsonable_encoder(name)}",
|
397
|
+
base_url=self._client_wrapper.get_environment().default,
|
413
398
|
method="GET",
|
414
|
-
|
415
|
-
f"{self._client_wrapper.get_environment().default}/",
|
416
|
-
f"v1/workflow-deployments/{jsonable_encoder(id)}/release-tags/{jsonable_encoder(name)}",
|
417
|
-
),
|
418
|
-
params=jsonable_encoder(
|
419
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
420
|
-
),
|
421
|
-
headers=jsonable_encoder(
|
422
|
-
remove_none_from_dict(
|
423
|
-
{
|
424
|
-
**self._client_wrapper.get_headers(),
|
425
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
426
|
-
}
|
427
|
-
)
|
428
|
-
),
|
429
|
-
timeout=request_options.get("timeout_in_seconds")
|
430
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
431
|
-
else self._client_wrapper.get_timeout(),
|
432
|
-
retries=0,
|
433
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
399
|
+
request_options=request_options,
|
434
400
|
)
|
435
|
-
if 200 <= _response.status_code < 300:
|
436
|
-
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
437
401
|
try:
|
402
|
+
if 200 <= _response.status_code < 300:
|
403
|
+
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
438
404
|
_response_json = _response.json()
|
439
405
|
except JSONDecodeError:
|
440
406
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -451,60 +417,56 @@ class AsyncWorkflowDeploymentsClient:
|
|
451
417
|
"""
|
452
418
|
Updates an existing Release Tag associated with the specified Workflow Deployment.
|
453
419
|
|
454
|
-
Parameters
|
455
|
-
|
420
|
+
Parameters
|
421
|
+
----------
|
422
|
+
id : str
|
423
|
+
A UUID string identifying this workflow deployment.
|
424
|
+
|
425
|
+
name : str
|
426
|
+
The name of the Release Tag associated with this Workflow Deployment that you'd like to update.
|
427
|
+
|
428
|
+
history_item_id : typing.Optional[str]
|
429
|
+
The ID of the Workflow Deployment History Item to tag
|
456
430
|
|
457
|
-
|
431
|
+
request_options : typing.Optional[RequestOptions]
|
432
|
+
Request-specific configuration.
|
458
433
|
|
459
|
-
|
434
|
+
Returns
|
435
|
+
-------
|
436
|
+
WorkflowReleaseTagRead
|
437
|
+
|
438
|
+
|
439
|
+
Examples
|
440
|
+
--------
|
441
|
+
import asyncio
|
460
442
|
|
461
|
-
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
462
|
-
---
|
463
443
|
from vellum.client import AsyncVellum
|
464
444
|
|
465
445
|
client = AsyncVellum(
|
466
446
|
api_key="YOUR_API_KEY",
|
467
447
|
)
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
448
|
+
|
449
|
+
|
450
|
+
async def main() -> None:
|
451
|
+
await client.workflow_deployments.update_workflow_release_tag(
|
452
|
+
id="id",
|
453
|
+
name="name",
|
454
|
+
)
|
455
|
+
|
456
|
+
|
457
|
+
asyncio.run(main())
|
472
458
|
"""
|
473
|
-
_request: typing.Dict[str, typing.Any] = {}
|
474
|
-
if history_item_id is not OMIT:
|
475
|
-
_request["history_item_id"] = history_item_id
|
476
459
|
_response = await self._client_wrapper.httpx_client.request(
|
460
|
+
f"v1/workflow-deployments/{jsonable_encoder(id)}/release-tags/{jsonable_encoder(name)}",
|
461
|
+
base_url=self._client_wrapper.get_environment().default,
|
477
462
|
method="PATCH",
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
),
|
482
|
-
params=jsonable_encoder(
|
483
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
484
|
-
),
|
485
|
-
json=jsonable_encoder(_request)
|
486
|
-
if request_options is None or request_options.get("additional_body_parameters") is None
|
487
|
-
else {
|
488
|
-
**jsonable_encoder(_request),
|
489
|
-
**(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
|
490
|
-
},
|
491
|
-
headers=jsonable_encoder(
|
492
|
-
remove_none_from_dict(
|
493
|
-
{
|
494
|
-
**self._client_wrapper.get_headers(),
|
495
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
496
|
-
}
|
497
|
-
)
|
498
|
-
),
|
499
|
-
timeout=request_options.get("timeout_in_seconds")
|
500
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
501
|
-
else self._client_wrapper.get_timeout(),
|
502
|
-
retries=0,
|
503
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
463
|
+
json={"history_item_id": history_item_id},
|
464
|
+
request_options=request_options,
|
465
|
+
omit=OMIT,
|
504
466
|
)
|
505
|
-
if 200 <= _response.status_code < 300:
|
506
|
-
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
507
467
|
try:
|
468
|
+
if 200 <= _response.status_code < 300:
|
469
|
+
return pydantic_v1.parse_obj_as(WorkflowReleaseTagRead, _response.json()) # type: ignore
|
508
470
|
_response_json = _response.json()
|
509
471
|
except JSONDecodeError:
|
510
472
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|