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.workflow_deployment_read import WorkflowDeploymentRead
|
14
12
|
|
@@ -32,21 +30,36 @@ class WorkflowSandboxesClient:
|
|
32
30
|
request_options: typing.Optional[RequestOptions] = None,
|
33
31
|
) -> WorkflowDeploymentRead:
|
34
32
|
"""
|
35
|
-
Parameters
|
36
|
-
|
33
|
+
Parameters
|
34
|
+
----------
|
35
|
+
id : str
|
36
|
+
A UUID string identifying this workflow sandbox.
|
37
37
|
|
38
|
-
|
38
|
+
workflow_id : str
|
39
|
+
An ID identifying the Workflow you'd like to deploy.
|
39
40
|
|
40
|
-
|
41
|
+
workflow_deployment_id : typing.Optional[str]
|
42
|
+
The Vellum-generated ID of the Workflow Deployment you'd like to update. Cannot specify both this and workflow_deployment_name. Leave null to create a new Workflow Deployment.
|
41
43
|
|
42
|
-
|
44
|
+
workflow_deployment_name : typing.Optional[str]
|
45
|
+
The unique name of the Workflow Deployment you'd like to either create or update. Cannot specify both this and workflow_deployment_id. If provided and matches an existing Workflow Deployment, that Workflow Deployment will be updated. Otherwise, a new Prompt Deployment will be created.
|
43
46
|
|
44
|
-
|
47
|
+
label : typing.Optional[str]
|
48
|
+
In the event that a new Workflow Deployment is created, this will be the label it's given.
|
45
49
|
|
46
|
-
|
50
|
+
release_tags : typing.Optional[typing.Sequence[str]]
|
51
|
+
Optionally provide the release tags that you'd like to be associated with the latest release of the created/updated Prompt Deployment.
|
47
52
|
|
48
|
-
|
49
|
-
|
53
|
+
request_options : typing.Optional[RequestOptions]
|
54
|
+
Request-specific configuration.
|
55
|
+
|
56
|
+
Returns
|
57
|
+
-------
|
58
|
+
WorkflowDeploymentRead
|
59
|
+
|
60
|
+
|
61
|
+
Examples
|
62
|
+
--------
|
50
63
|
from vellum.client import Vellum
|
51
64
|
|
52
65
|
client = Vellum(
|
@@ -57,47 +70,22 @@ class WorkflowSandboxesClient:
|
|
57
70
|
workflow_id="workflow_id",
|
58
71
|
)
|
59
72
|
"""
|
60
|
-
_request: typing.Dict[str, typing.Any] = {}
|
61
|
-
if workflow_deployment_id is not OMIT:
|
62
|
-
_request["workflow_deployment_id"] = workflow_deployment_id
|
63
|
-
if workflow_deployment_name is not OMIT:
|
64
|
-
_request["workflow_deployment_name"] = workflow_deployment_name
|
65
|
-
if label is not OMIT:
|
66
|
-
_request["label"] = label
|
67
|
-
if release_tags is not OMIT:
|
68
|
-
_request["release_tags"] = release_tags
|
69
73
|
_response = self._client_wrapper.httpx_client.request(
|
74
|
+
f"v1/workflow-sandboxes/{jsonable_encoder(id)}/workflows/{jsonable_encoder(workflow_id)}/deploy",
|
75
|
+
base_url=self._client_wrapper.get_environment().default,
|
70
76
|
method="POST",
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
77
|
-
),
|
78
|
-
json=jsonable_encoder(_request)
|
79
|
-
if request_options is None or request_options.get("additional_body_parameters") is None
|
80
|
-
else {
|
81
|
-
**jsonable_encoder(_request),
|
82
|
-
**(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
|
77
|
+
json={
|
78
|
+
"workflow_deployment_id": workflow_deployment_id,
|
79
|
+
"workflow_deployment_name": workflow_deployment_name,
|
80
|
+
"label": label,
|
81
|
+
"release_tags": release_tags,
|
83
82
|
},
|
84
|
-
|
85
|
-
|
86
|
-
{
|
87
|
-
**self._client_wrapper.get_headers(),
|
88
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
89
|
-
}
|
90
|
-
)
|
91
|
-
),
|
92
|
-
timeout=request_options.get("timeout_in_seconds")
|
93
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
94
|
-
else self._client_wrapper.get_timeout(),
|
95
|
-
retries=0,
|
96
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
83
|
+
request_options=request_options,
|
84
|
+
omit=OMIT,
|
97
85
|
)
|
98
|
-
if 200 <= _response.status_code < 300:
|
99
|
-
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
100
86
|
try:
|
87
|
+
if 200 <= _response.status_code < 300:
|
88
|
+
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
101
89
|
_response_json = _response.json()
|
102
90
|
except JSONDecodeError:
|
103
91
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
@@ -120,72 +108,70 @@ class AsyncWorkflowSandboxesClient:
|
|
120
108
|
request_options: typing.Optional[RequestOptions] = None,
|
121
109
|
) -> WorkflowDeploymentRead:
|
122
110
|
"""
|
123
|
-
Parameters
|
124
|
-
|
111
|
+
Parameters
|
112
|
+
----------
|
113
|
+
id : str
|
114
|
+
A UUID string identifying this workflow sandbox.
|
115
|
+
|
116
|
+
workflow_id : str
|
117
|
+
An ID identifying the Workflow you'd like to deploy.
|
118
|
+
|
119
|
+
workflow_deployment_id : typing.Optional[str]
|
120
|
+
The Vellum-generated ID of the Workflow Deployment you'd like to update. Cannot specify both this and workflow_deployment_name. Leave null to create a new Workflow Deployment.
|
121
|
+
|
122
|
+
workflow_deployment_name : typing.Optional[str]
|
123
|
+
The unique name of the Workflow Deployment you'd like to either create or update. Cannot specify both this and workflow_deployment_id. If provided and matches an existing Workflow Deployment, that Workflow Deployment will be updated. Otherwise, a new Prompt Deployment will be created.
|
124
|
+
|
125
|
+
label : typing.Optional[str]
|
126
|
+
In the event that a new Workflow Deployment is created, this will be the label it's given.
|
125
127
|
|
126
|
-
|
128
|
+
release_tags : typing.Optional[typing.Sequence[str]]
|
129
|
+
Optionally provide the release tags that you'd like to be associated with the latest release of the created/updated Prompt Deployment.
|
127
130
|
|
128
|
-
|
131
|
+
request_options : typing.Optional[RequestOptions]
|
132
|
+
Request-specific configuration.
|
129
133
|
|
130
|
-
|
134
|
+
Returns
|
135
|
+
-------
|
136
|
+
WorkflowDeploymentRead
|
131
137
|
|
132
|
-
- label: typing.Optional[str]. In the event that a new Workflow Deployment is created, this will be the label it's given.
|
133
138
|
|
134
|
-
|
139
|
+
Examples
|
140
|
+
--------
|
141
|
+
import asyncio
|
135
142
|
|
136
|
-
- request_options: typing.Optional[RequestOptions]. Request-specific configuration.
|
137
|
-
---
|
138
143
|
from vellum.client import AsyncVellum
|
139
144
|
|
140
145
|
client = AsyncVellum(
|
141
146
|
api_key="YOUR_API_KEY",
|
142
147
|
)
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
148
|
+
|
149
|
+
|
150
|
+
async def main() -> None:
|
151
|
+
await client.workflow_sandboxes.deploy_workflow(
|
152
|
+
id="id",
|
153
|
+
workflow_id="workflow_id",
|
154
|
+
)
|
155
|
+
|
156
|
+
|
157
|
+
asyncio.run(main())
|
147
158
|
"""
|
148
|
-
_request: typing.Dict[str, typing.Any] = {}
|
149
|
-
if workflow_deployment_id is not OMIT:
|
150
|
-
_request["workflow_deployment_id"] = workflow_deployment_id
|
151
|
-
if workflow_deployment_name is not OMIT:
|
152
|
-
_request["workflow_deployment_name"] = workflow_deployment_name
|
153
|
-
if label is not OMIT:
|
154
|
-
_request["label"] = label
|
155
|
-
if release_tags is not OMIT:
|
156
|
-
_request["release_tags"] = release_tags
|
157
159
|
_response = await self._client_wrapper.httpx_client.request(
|
160
|
+
f"v1/workflow-sandboxes/{jsonable_encoder(id)}/workflows/{jsonable_encoder(workflow_id)}/deploy",
|
161
|
+
base_url=self._client_wrapper.get_environment().default,
|
158
162
|
method="POST",
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
request_options.get("additional_query_parameters") if request_options is not None else None
|
165
|
-
),
|
166
|
-
json=jsonable_encoder(_request)
|
167
|
-
if request_options is None or request_options.get("additional_body_parameters") is None
|
168
|
-
else {
|
169
|
-
**jsonable_encoder(_request),
|
170
|
-
**(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
|
163
|
+
json={
|
164
|
+
"workflow_deployment_id": workflow_deployment_id,
|
165
|
+
"workflow_deployment_name": workflow_deployment_name,
|
166
|
+
"label": label,
|
167
|
+
"release_tags": release_tags,
|
171
168
|
},
|
172
|
-
|
173
|
-
|
174
|
-
{
|
175
|
-
**self._client_wrapper.get_headers(),
|
176
|
-
**(request_options.get("additional_headers", {}) if request_options is not None else {}),
|
177
|
-
}
|
178
|
-
)
|
179
|
-
),
|
180
|
-
timeout=request_options.get("timeout_in_seconds")
|
181
|
-
if request_options is not None and request_options.get("timeout_in_seconds") is not None
|
182
|
-
else self._client_wrapper.get_timeout(),
|
183
|
-
retries=0,
|
184
|
-
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
169
|
+
request_options=request_options,
|
170
|
+
omit=OMIT,
|
185
171
|
)
|
186
|
-
if 200 <= _response.status_code < 300:
|
187
|
-
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
188
172
|
try:
|
173
|
+
if 200 <= _response.status_code < 300:
|
174
|
+
return pydantic_v1.parse_obj_as(WorkflowDeploymentRead, _response.json()) # type: ignore
|
189
175
|
_response_json = _response.json()
|
190
176
|
except JSONDecodeError:
|
191
177
|
raise ApiError(status_code=_response.status_code, body=_response.text)
|
Binary file
|
@@ -1,7 +1,7 @@
|
|
1
1
|
'''
|
2
2
|
# `data_vellum_document_index`
|
3
3
|
|
4
|
-
Refer to the Terraform Registry for docs: [`data_vellum_document_index`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
4
|
+
Refer to the Terraform Registry for docs: [`data_vellum_document_index`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index).
|
5
5
|
'''
|
6
6
|
from pkgutil import extend_path
|
7
7
|
__path__ = extend_path(__path__, __name__)
|
@@ -29,7 +29,7 @@ class DataVellumDocumentIndex(
|
|
29
29
|
metaclass=jsii.JSIIMeta,
|
30
30
|
jsii_type="vellum-ai_vellum.dataVellumDocumentIndex.DataVellumDocumentIndex",
|
31
31
|
):
|
32
|
-
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
32
|
+
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index vellum_document_index}.'''
|
33
33
|
|
34
34
|
def __init__(
|
35
35
|
self,
|
@@ -46,12 +46,12 @@ class DataVellumDocumentIndex(
|
|
46
46
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
47
47
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
48
48
|
) -> None:
|
49
|
-
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
49
|
+
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index vellum_document_index} Data Source.
|
50
50
|
|
51
51
|
:param scope: The scope in which to define this construct.
|
52
52
|
:param id_: The scoped construct ID. Must be unique amongst siblings in the same scope
|
53
|
-
:param id: The Document Index's ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
54
|
-
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
53
|
+
:param id: The Document Index's ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#id DataVellumDocumentIndex#id} Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
54
|
+
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#name DataVellumDocumentIndex#name}
|
55
55
|
:param connection:
|
56
56
|
:param count:
|
57
57
|
:param depends_on:
|
@@ -91,7 +91,7 @@ class DataVellumDocumentIndex(
|
|
91
91
|
|
92
92
|
:param scope: The scope in which to define this construct.
|
93
93
|
:param import_to_id: The construct id used in the generated config for the DataVellumDocumentIndex to import.
|
94
|
-
:param import_from_id: The id of the existing DataVellumDocumentIndex that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
94
|
+
:param import_from_id: The id of the existing DataVellumDocumentIndex that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#import import section} in the documentation of this resource for the id to use
|
95
95
|
:param provider: ? Optional instance of the provider where the DataVellumDocumentIndex to import is found.
|
96
96
|
'''
|
97
97
|
if __debug__:
|
@@ -215,8 +215,8 @@ class DataVellumDocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
215
215
|
:param lifecycle:
|
216
216
|
:param provider:
|
217
217
|
:param provisioners:
|
218
|
-
:param id: The Document Index's ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
219
|
-
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
218
|
+
:param id: The Document Index's ID. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#id DataVellumDocumentIndex#id} Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
219
|
+
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#name DataVellumDocumentIndex#name}
|
220
220
|
'''
|
221
221
|
if isinstance(lifecycle, dict):
|
222
222
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
@@ -319,7 +319,7 @@ class DataVellumDocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
319
319
|
def id(self) -> typing.Optional[builtins.str]:
|
320
320
|
'''The Document Index's ID.
|
321
321
|
|
322
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
322
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#id DataVellumDocumentIndex#id}
|
323
323
|
|
324
324
|
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
325
325
|
If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
@@ -331,7 +331,7 @@ class DataVellumDocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
331
331
|
def name(self) -> typing.Optional[builtins.str]:
|
332
332
|
'''A name that uniquely identifies this index within its workspace.
|
333
333
|
|
334
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
334
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/data-sources/document_index#name DataVellumDocumentIndex#name}
|
335
335
|
'''
|
336
336
|
result = self._values.get("name")
|
337
337
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
'''
|
2
2
|
# `vellum_document_index`
|
3
3
|
|
4
|
-
Refer to the Terraform Registry for docs: [`vellum_document_index`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
4
|
+
Refer to the Terraform Registry for docs: [`vellum_document_index`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index).
|
5
5
|
'''
|
6
6
|
from pkgutil import extend_path
|
7
7
|
__path__ = extend_path(__path__, __name__)
|
@@ -29,7 +29,7 @@ class DocumentIndex(
|
|
29
29
|
metaclass=jsii.JSIIMeta,
|
30
30
|
jsii_type="vellum-ai_vellum.documentIndex.DocumentIndex",
|
31
31
|
):
|
32
|
-
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
32
|
+
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index vellum_document_index}.'''
|
33
33
|
|
34
34
|
def __init__(
|
35
35
|
self,
|
@@ -48,14 +48,14 @@ class DocumentIndex(
|
|
48
48
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
49
49
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
50
50
|
) -> None:
|
51
|
-
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
51
|
+
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index vellum_document_index} Resource.
|
52
52
|
|
53
53
|
:param scope: The scope in which to define this construct.
|
54
54
|
:param id: The scoped construct ID. Must be unique amongst siblings in the same scope
|
55
|
-
:param label: A human-readable label for the
|
56
|
-
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
57
|
-
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
58
|
-
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
55
|
+
:param label: A human-readable label for the Document Index. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#label DocumentIndex#label}
|
56
|
+
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#name DocumentIndex#name}
|
57
|
+
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#environment DocumentIndex#environment}
|
58
|
+
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#status DocumentIndex#status}
|
59
59
|
:param connection:
|
60
60
|
:param count:
|
61
61
|
:param depends_on:
|
@@ -97,7 +97,7 @@ class DocumentIndex(
|
|
97
97
|
|
98
98
|
:param scope: The scope in which to define this construct.
|
99
99
|
:param import_to_id: The construct id used in the generated config for the DocumentIndex to import.
|
100
|
-
:param import_from_id: The id of the existing DocumentIndex that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
100
|
+
:param import_from_id: The id of the existing DocumentIndex that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#import import section} in the documentation of this resource for the id to use
|
101
101
|
:param provider: ? Optional instance of the provider where the DocumentIndex to import is found.
|
102
102
|
'''
|
103
103
|
if __debug__:
|
@@ -249,10 +249,10 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
249
249
|
:param lifecycle:
|
250
250
|
:param provider:
|
251
251
|
:param provisioners:
|
252
|
-
:param label: A human-readable label for the
|
253
|
-
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
254
|
-
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
255
|
-
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
252
|
+
:param label: A human-readable label for the Document Index. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#label DocumentIndex#label}
|
253
|
+
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#name DocumentIndex#name}
|
254
|
+
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#environment DocumentIndex#environment}
|
255
|
+
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#status DocumentIndex#status}
|
256
256
|
'''
|
257
257
|
if isinstance(lifecycle, dict):
|
258
258
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
@@ -358,9 +358,9 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
358
358
|
|
359
359
|
@builtins.property
|
360
360
|
def label(self) -> builtins.str:
|
361
|
-
'''A human-readable label for the
|
361
|
+
'''A human-readable label for the Document Index.
|
362
362
|
|
363
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
363
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#label DocumentIndex#label}
|
364
364
|
'''
|
365
365
|
result = self._values.get("label")
|
366
366
|
assert result is not None, "Required property 'label' is missing"
|
@@ -370,7 +370,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
370
370
|
def name(self) -> builtins.str:
|
371
371
|
'''A name that uniquely identifies this index within its workspace.
|
372
372
|
|
373
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
373
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#name DocumentIndex#name}
|
374
374
|
'''
|
375
375
|
result = self._values.get("name")
|
376
376
|
assert result is not None, "Required property 'name' is missing"
|
@@ -384,7 +384,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
384
384
|
- ``STAGING`` - Staging
|
385
385
|
- ``PRODUCTION`` - Production
|
386
386
|
|
387
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
387
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#environment DocumentIndex#environment}
|
388
388
|
'''
|
389
389
|
result = self._values.get("environment")
|
390
390
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -396,7 +396,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
396
396
|
- ``ACTIVE`` - Active
|
397
397
|
- ``ARCHIVED`` - Archived
|
398
398
|
|
399
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
399
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs/resources/document_index#status DocumentIndex#status}
|
400
400
|
'''
|
401
401
|
result = self._values.get("status")
|
402
402
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
'''
|
2
2
|
# `provider`
|
3
3
|
|
4
|
-
Refer to the Terraform Registry for docs: [`vellum`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
4
|
+
Refer to the Terraform Registry for docs: [`vellum`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs).
|
5
5
|
'''
|
6
6
|
from pkgutil import extend_path
|
7
7
|
__path__ = extend_path(__path__, __name__)
|
@@ -29,7 +29,7 @@ class VellumProvider(
|
|
29
29
|
metaclass=jsii.JSIIMeta,
|
30
30
|
jsii_type="vellum-ai_vellum.provider.VellumProvider",
|
31
31
|
):
|
32
|
-
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
32
|
+
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs vellum}.'''
|
33
33
|
|
34
34
|
def __init__(
|
35
35
|
self,
|
@@ -38,19 +38,21 @@ class VellumProvider(
|
|
38
38
|
*,
|
39
39
|
alias: typing.Optional[builtins.str] = None,
|
40
40
|
api_key: typing.Optional[builtins.str] = None,
|
41
|
+
base_url: typing.Optional[builtins.str] = None,
|
41
42
|
) -> None:
|
42
|
-
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
43
|
+
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs vellum} Resource.
|
43
44
|
|
44
45
|
:param scope: The scope in which to define this construct.
|
45
46
|
:param id: The scoped construct ID. Must be unique amongst siblings in the same scope
|
46
|
-
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
47
|
-
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
47
|
+
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#alias VellumProvider#alias}
|
48
|
+
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#api_key VellumProvider#api_key}
|
49
|
+
:param base_url: Base URL to use with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#base_url VellumProvider#base_url}
|
48
50
|
'''
|
49
51
|
if __debug__:
|
50
52
|
type_hints = typing.get_type_hints(_typecheckingstub__8f332a1b6664893e57a3554abbbfd334296d68a0c02222521351772fec263177)
|
51
53
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
52
54
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
53
|
-
config = VellumProviderConfig(alias=alias, api_key=api_key)
|
55
|
+
config = VellumProviderConfig(alias=alias, api_key=api_key, base_url=base_url)
|
54
56
|
|
55
57
|
jsii.create(self.__class__, self, [scope, id, config])
|
56
58
|
|
@@ -67,7 +69,7 @@ class VellumProvider(
|
|
67
69
|
|
68
70
|
:param scope: The scope in which to define this construct.
|
69
71
|
:param import_to_id: The construct id used in the generated config for the VellumProvider to import.
|
70
|
-
:param import_from_id: The id of the existing VellumProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
72
|
+
:param import_from_id: The id of the existing VellumProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#import import section} in the documentation of this resource for the id to use
|
71
73
|
:param provider: ? Optional instance of the provider where the VellumProvider to import is found.
|
72
74
|
'''
|
73
75
|
if __debug__:
|
@@ -86,6 +88,10 @@ class VellumProvider(
|
|
86
88
|
def reset_api_key(self) -> None:
|
87
89
|
return typing.cast(None, jsii.invoke(self, "resetApiKey", []))
|
88
90
|
|
91
|
+
@jsii.member(jsii_name="resetBaseUrl")
|
92
|
+
def reset_base_url(self) -> None:
|
93
|
+
return typing.cast(None, jsii.invoke(self, "resetBaseUrl", []))
|
94
|
+
|
89
95
|
@jsii.member(jsii_name="synthesizeAttributes")
|
90
96
|
def _synthesize_attributes(self) -> typing.Mapping[builtins.str, typing.Any]:
|
91
97
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "synthesizeAttributes", []))
|
@@ -109,6 +115,11 @@ class VellumProvider(
|
|
109
115
|
def api_key_input(self) -> typing.Optional[builtins.str]:
|
110
116
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "apiKeyInput"))
|
111
117
|
|
118
|
+
@builtins.property
|
119
|
+
@jsii.member(jsii_name="baseUrlInput")
|
120
|
+
def base_url_input(self) -> typing.Optional[builtins.str]:
|
121
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "baseUrlInput"))
|
122
|
+
|
112
123
|
@builtins.property
|
113
124
|
@jsii.member(jsii_name="alias")
|
114
125
|
def alias(self) -> typing.Optional[builtins.str]:
|
@@ -133,11 +144,23 @@ class VellumProvider(
|
|
133
144
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
134
145
|
jsii.set(self, "apiKey", value)
|
135
146
|
|
147
|
+
@builtins.property
|
148
|
+
@jsii.member(jsii_name="baseUrl")
|
149
|
+
def base_url(self) -> typing.Optional[builtins.str]:
|
150
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "baseUrl"))
|
151
|
+
|
152
|
+
@base_url.setter
|
153
|
+
def base_url(self, value: typing.Optional[builtins.str]) -> None:
|
154
|
+
if __debug__:
|
155
|
+
type_hints = typing.get_type_hints(_typecheckingstub__21ca70614f7725c87c92b1df4a963a8db586657ad82746778be178615bd2eb02)
|
156
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
157
|
+
jsii.set(self, "baseUrl", value)
|
158
|
+
|
136
159
|
|
137
160
|
@jsii.data_type(
|
138
161
|
jsii_type="vellum-ai_vellum.provider.VellumProviderConfig",
|
139
162
|
jsii_struct_bases=[],
|
140
|
-
name_mapping={"alias": "alias", "api_key": "apiKey"},
|
163
|
+
name_mapping={"alias": "alias", "api_key": "apiKey", "base_url": "baseUrl"},
|
141
164
|
)
|
142
165
|
class VellumProviderConfig:
|
143
166
|
def __init__(
|
@@ -145,26 +168,31 @@ class VellumProviderConfig:
|
|
145
168
|
*,
|
146
169
|
alias: typing.Optional[builtins.str] = None,
|
147
170
|
api_key: typing.Optional[builtins.str] = None,
|
171
|
+
base_url: typing.Optional[builtins.str] = None,
|
148
172
|
) -> None:
|
149
173
|
'''
|
150
|
-
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
151
|
-
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
174
|
+
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#alias VellumProvider#alias}
|
175
|
+
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#api_key VellumProvider#api_key}
|
176
|
+
:param base_url: Base URL to use with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#base_url VellumProvider#base_url}
|
152
177
|
'''
|
153
178
|
if __debug__:
|
154
179
|
type_hints = typing.get_type_hints(_typecheckingstub__bb8c32f1d43f1344224f7a690abc6e2489c4dff67cb93921483ed2cc4b5410e1)
|
155
180
|
check_type(argname="argument alias", value=alias, expected_type=type_hints["alias"])
|
156
181
|
check_type(argname="argument api_key", value=api_key, expected_type=type_hints["api_key"])
|
182
|
+
check_type(argname="argument base_url", value=base_url, expected_type=type_hints["base_url"])
|
157
183
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
158
184
|
if alias is not None:
|
159
185
|
self._values["alias"] = alias
|
160
186
|
if api_key is not None:
|
161
187
|
self._values["api_key"] = api_key
|
188
|
+
if base_url is not None:
|
189
|
+
self._values["base_url"] = base_url
|
162
190
|
|
163
191
|
@builtins.property
|
164
192
|
def alias(self) -> typing.Optional[builtins.str]:
|
165
193
|
'''Alias name.
|
166
194
|
|
167
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
195
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#alias VellumProvider#alias}
|
168
196
|
'''
|
169
197
|
result = self._values.get("alias")
|
170
198
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -173,11 +201,20 @@ class VellumProviderConfig:
|
|
173
201
|
def api_key(self) -> typing.Optional[builtins.str]:
|
174
202
|
'''API Key to authenticate with the Vellum API.
|
175
203
|
|
176
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
204
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#api_key VellumProvider#api_key}
|
177
205
|
'''
|
178
206
|
result = self._values.get("api_key")
|
179
207
|
return typing.cast(typing.Optional[builtins.str], result)
|
180
208
|
|
209
|
+
@builtins.property
|
210
|
+
def base_url(self) -> typing.Optional[builtins.str]:
|
211
|
+
'''Base URL to use with the Vellum API.
|
212
|
+
|
213
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.6/docs#base_url VellumProvider#base_url}
|
214
|
+
'''
|
215
|
+
result = self._values.get("base_url")
|
216
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
217
|
+
|
181
218
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
182
219
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
183
220
|
|
@@ -203,6 +240,7 @@ def _typecheckingstub__8f332a1b6664893e57a3554abbbfd334296d68a0c02222521351772fe
|
|
203
240
|
*,
|
204
241
|
alias: typing.Optional[builtins.str] = None,
|
205
242
|
api_key: typing.Optional[builtins.str] = None,
|
243
|
+
base_url: typing.Optional[builtins.str] = None,
|
206
244
|
) -> None:
|
207
245
|
"""Type checking stubs"""
|
208
246
|
pass
|
@@ -228,10 +266,17 @@ def _typecheckingstub__402b9018cf60ba05eb9ab72153d7f52235bd10a5f5615a074a5388006
|
|
228
266
|
"""Type checking stubs"""
|
229
267
|
pass
|
230
268
|
|
269
|
+
def _typecheckingstub__21ca70614f7725c87c92b1df4a963a8db586657ad82746778be178615bd2eb02(
|
270
|
+
value: typing.Optional[builtins.str],
|
271
|
+
) -> None:
|
272
|
+
"""Type checking stubs"""
|
273
|
+
pass
|
274
|
+
|
231
275
|
def _typecheckingstub__bb8c32f1d43f1344224f7a690abc6e2489c4dff67cb93921483ed2cc4b5410e1(
|
232
276
|
*,
|
233
277
|
alias: typing.Optional[builtins.str] = None,
|
234
278
|
api_key: typing.Optional[builtins.str] = None,
|
279
|
+
base_url: typing.Optional[builtins.str] = None,
|
235
280
|
) -> None:
|
236
281
|
"""Type checking stubs"""
|
237
282
|
pass
|
vellum/terraform/versions.json
CHANGED