vellum-ai 1.1.3__py3-none-any.whl → 1.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vellum/__init__.py +2 -0
- vellum/client/README.md +22 -0
- vellum/client/__init__.py +89 -99
- vellum/client/core/__init__.py +2 -0
- vellum/client/core/api_error.py +13 -5
- vellum/client/core/client_wrapper.py +16 -4
- vellum/client/core/force_multipart.py +16 -0
- vellum/client/core/http_client.py +70 -24
- vellum/client/core/http_response.py +19 -11
- vellum/client/core/pydantic_utilities.py +71 -114
- vellum/client/core/serialization.py +6 -1
- vellum/client/errors/__init__.py +2 -0
- vellum/client/errors/bad_request_error.py +4 -3
- vellum/client/errors/forbidden_error.py +4 -3
- vellum/client/errors/internal_server_error.py +4 -3
- vellum/client/errors/not_found_error.py +4 -3
- vellum/client/raw_client.py +270 -201
- vellum/client/resources/__init__.py +2 -0
- vellum/client/resources/ad_hoc/__init__.py +2 -0
- vellum/client/resources/ad_hoc/client.py +16 -17
- vellum/client/resources/ad_hoc/raw_client.py +68 -53
- vellum/client/resources/container_images/__init__.py +2 -0
- vellum/client/resources/container_images/client.py +24 -21
- vellum/client/resources/container_images/raw_client.py +23 -24
- vellum/client/resources/deployments/__init__.py +2 -0
- vellum/client/resources/deployments/client.py +43 -44
- vellum/client/resources/deployments/raw_client.py +73 -66
- vellum/client/resources/deployments/types/__init__.py +2 -0
- vellum/client/resources/document_indexes/__init__.py +2 -0
- vellum/client/resources/document_indexes/client.py +38 -39
- vellum/client/resources/document_indexes/raw_client.py +42 -43
- vellum/client/resources/document_indexes/types/__init__.py +2 -0
- vellum/client/resources/documents/__init__.py +2 -0
- vellum/client/resources/documents/client.py +25 -26
- vellum/client/resources/documents/raw_client.py +51 -44
- vellum/client/resources/folder_entities/__init__.py +2 -0
- vellum/client/resources/folder_entities/client.py +12 -13
- vellum/client/resources/folder_entities/raw_client.py +15 -16
- vellum/client/resources/folder_entities/types/__init__.py +2 -0
- vellum/client/resources/metric_definitions/__init__.py +2 -0
- vellum/client/resources/metric_definitions/client.py +12 -13
- vellum/client/resources/metric_definitions/raw_client.py +17 -18
- vellum/client/resources/ml_models/__init__.py +2 -0
- vellum/client/resources/ml_models/client.py +7 -8
- vellum/client/resources/ml_models/raw_client.py +11 -12
- vellum/client/resources/organizations/__init__.py +2 -0
- vellum/client/resources/organizations/client.py +7 -8
- vellum/client/resources/organizations/raw_client.py +10 -11
- vellum/client/resources/prompts/__init__.py +2 -0
- vellum/client/resources/prompts/client.py +13 -12
- vellum/client/resources/prompts/raw_client.py +40 -33
- vellum/client/resources/sandboxes/__init__.py +2 -0
- vellum/client/resources/sandboxes/client.py +15 -16
- vellum/client/resources/sandboxes/raw_client.py +20 -21
- vellum/client/resources/test_suite_runs/__init__.py +2 -0
- vellum/client/resources/test_suite_runs/client.py +17 -18
- vellum/client/resources/test_suite_runs/raw_client.py +20 -21
- vellum/client/resources/test_suites/__init__.py +2 -0
- vellum/client/resources/test_suites/client.py +20 -19
- vellum/client/resources/test_suites/raw_client.py +46 -31
- vellum/client/resources/workflow_deployments/__init__.py +2 -0
- vellum/client/resources/workflow_deployments/client.py +45 -46
- vellum/client/resources/workflow_deployments/raw_client.py +48 -49
- vellum/client/resources/workflow_deployments/types/__init__.py +2 -0
- vellum/client/resources/workflow_executions/__init__.py +2 -0
- vellum/client/resources/workflow_executions/client.py +7 -8
- vellum/client/resources/workflow_executions/raw_client.py +11 -12
- vellum/client/resources/workflow_sandboxes/__init__.py +2 -0
- vellum/client/resources/workflow_sandboxes/client.py +12 -13
- vellum/client/resources/workflow_sandboxes/raw_client.py +16 -17
- vellum/client/resources/workflow_sandboxes/types/__init__.py +2 -0
- vellum/client/resources/workflows/__init__.py +2 -0
- vellum/client/resources/workflows/client.py +11 -12
- vellum/client/resources/workflows/raw_client.py +34 -27
- vellum/client/resources/workspace_secrets/__init__.py +2 -0
- vellum/client/resources/workspace_secrets/client.py +11 -12
- vellum/client/resources/workspace_secrets/raw_client.py +15 -16
- vellum/client/resources/workspaces/__init__.py +2 -0
- vellum/client/resources/workspaces/client.py +7 -8
- vellum/client/resources/workspaces/raw_client.py +10 -11
- vellum/client/types/__init__.py +2 -0
- vellum/client/types/ad_hoc_execute_prompt_event.py +3 -2
- vellum/client/types/ad_hoc_expand_meta.py +2 -2
- vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py +3 -3
- vellum/client/types/ad_hoc_initiated_prompt_execution_meta.py +2 -2
- vellum/client/types/ad_hoc_rejected_prompt_execution_meta.py +3 -3
- vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py +2 -2
- vellum/client/types/api_node_result.py +3 -3
- vellum/client/types/api_node_result_data.py +4 -4
- vellum/client/types/api_request_parent_context.py +11 -11
- vellum/client/types/array_chat_message_content.py +3 -3
- vellum/client/types/array_chat_message_content_item.py +5 -4
- vellum/client/types/array_chat_message_content_item_request.py +5 -4
- vellum/client/types/array_chat_message_content_request.py +3 -3
- vellum/client/types/array_input.py +12 -6
- vellum/client/types/array_vellum_value.py +4 -4
- vellum/client/types/array_vellum_value_request.py +4 -4
- vellum/client/types/audio_chat_message_content.py +3 -3
- vellum/client/types/audio_chat_message_content_request.py +3 -3
- vellum/client/types/audio_prompt_block.py +4 -4
- vellum/client/types/audio_vellum_value.py +3 -3
- vellum/client/types/audio_vellum_value_request.py +3 -3
- vellum/client/types/base_output.py +2 -2
- vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py +2 -2
- vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py +2 -2
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py +2 -2
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_request.py +2 -2
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py +2 -2
- vellum/client/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py +2 -2
- vellum/client/types/chat_history_input.py +3 -3
- vellum/client/types/chat_history_input_request.py +3 -3
- vellum/client/types/chat_history_vellum_value.py +3 -3
- vellum/client/types/chat_history_vellum_value_request.py +3 -3
- vellum/client/types/chat_message.py +4 -4
- vellum/client/types/chat_message_content.py +5 -4
- vellum/client/types/chat_message_content_request.py +5 -4
- vellum/client/types/chat_message_prompt_block.py +7 -7
- vellum/client/types/chat_message_request.py +4 -4
- vellum/client/types/code_execution_node_array_result.py +11 -5
- vellum/client/types/code_execution_node_chat_history_result.py +3 -3
- vellum/client/types/code_execution_node_error_result.py +3 -3
- vellum/client/types/code_execution_node_function_call_result.py +3 -3
- vellum/client/types/code_execution_node_json_result.py +2 -2
- vellum/client/types/code_execution_node_number_result.py +2 -2
- vellum/client/types/code_execution_node_result.py +10 -4
- vellum/client/types/code_execution_node_result_data.py +10 -4
- vellum/client/types/code_execution_node_result_output.py +6 -5
- vellum/client/types/code_execution_node_search_results_result.py +3 -3
- vellum/client/types/code_execution_node_string_result.py +2 -2
- vellum/client/types/code_execution_package.py +2 -2
- vellum/client/types/code_executor_input.py +7 -6
- vellum/client/types/code_executor_response.py +11 -5
- vellum/client/types/code_executor_secret_input.py +3 -3
- vellum/client/types/code_resource_definition.py +3 -3
- vellum/client/types/compile_prompt_deployment_expand_meta_request.py +2 -2
- vellum/client/types/compile_prompt_meta.py +2 -2
- vellum/client/types/conditional_node_result.py +3 -3
- vellum/client/types/conditional_node_result_data.py +2 -2
- vellum/client/types/container_image_build_config.py +3 -3
- vellum/client/types/container_image_container_image_tag.py +2 -2
- vellum/client/types/container_image_read.py +5 -5
- vellum/client/types/create_test_suite_test_case_request.py +9 -3
- vellum/client/types/deployment_history_item.py +10 -4
- vellum/client/types/deployment_provider_payload_response.py +4 -4
- vellum/client/types/deployment_read.py +10 -4
- vellum/client/types/deployment_release_tag_deployment_history_item.py +2 -2
- vellum/client/types/deployment_release_tag_read.py +4 -4
- vellum/client/types/docker_service_token.py +2 -2
- vellum/client/types/document_chat_message_content.py +3 -3
- vellum/client/types/document_chat_message_content_request.py +3 -3
- vellum/client/types/document_document_to_document_index.py +3 -3
- vellum/client/types/document_index_chunking.py +1 -0
- vellum/client/types/document_index_chunking_request.py +1 -0
- vellum/client/types/document_index_indexing_config.py +4 -4
- vellum/client/types/document_index_indexing_config_request.py +4 -4
- vellum/client/types/document_index_read.py +4 -4
- vellum/client/types/document_prompt_block.py +4 -4
- vellum/client/types/document_read.py +4 -4
- vellum/client/types/document_vellum_value.py +3 -3
- vellum/client/types/document_vellum_value_request.py +3 -3
- vellum/client/types/enriched_normalized_completion.py +3 -3
- vellum/client/types/ephemeral_prompt_cache_config.py +3 -3
- vellum/client/types/error_input.py +3 -3
- vellum/client/types/error_vellum_value.py +3 -3
- vellum/client/types/error_vellum_value_request.py +3 -3
- vellum/client/types/execute_api_request_bearer_token.py +1 -0
- vellum/client/types/execute_api_request_headers_value.py +1 -0
- vellum/client/types/execute_api_response.py +5 -5
- vellum/client/types/execute_prompt_event.py +3 -2
- vellum/client/types/execute_prompt_response.py +1 -0
- vellum/client/types/execute_workflow_response.py +10 -4
- vellum/client/types/execute_workflow_workflow_result_event.py +1 -0
- vellum/client/types/execution_array_vellum_value.py +12 -6
- vellum/client/types/execution_chat_history_vellum_value.py +3 -3
- vellum/client/types/execution_error_vellum_value.py +3 -3
- vellum/client/types/execution_function_call_vellum_value.py +3 -3
- vellum/client/types/execution_json_vellum_value.py +3 -3
- vellum/client/types/execution_number_vellum_value.py +3 -3
- vellum/client/types/execution_search_results_vellum_value.py +3 -3
- vellum/client/types/execution_string_vellum_value.py +3 -3
- vellum/client/types/execution_thinking_vellum_value.py +3 -3
- vellum/client/types/execution_vellum_value.py +6 -5
- vellum/client/types/external_input_descriptor.py +3 -3
- vellum/client/types/external_parent_context.py +11 -11
- vellum/client/types/external_test_case_execution.py +10 -4
- vellum/client/types/external_test_case_execution_request.py +10 -4
- vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py +2 -2
- vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.py +2 -2
- vellum/client/types/folder_entity.py +4 -3
- vellum/client/types/folder_entity_dataset.py +3 -3
- vellum/client/types/folder_entity_dataset_data.py +3 -3
- vellum/client/types/folder_entity_document_index.py +3 -3
- vellum/client/types/folder_entity_document_index_data.py +4 -4
- vellum/client/types/folder_entity_folder.py +3 -3
- vellum/client/types/folder_entity_folder_data.py +2 -2
- vellum/client/types/folder_entity_prompt_sandbox.py +3 -3
- vellum/client/types/folder_entity_prompt_sandbox_data.py +3 -3
- vellum/client/types/folder_entity_test_suite.py +3 -3
- vellum/client/types/folder_entity_test_suite_data.py +3 -3
- vellum/client/types/folder_entity_workflow_sandbox.py +3 -3
- vellum/client/types/folder_entity_workflow_sandbox_data.py +3 -3
- vellum/client/types/fulfilled_ad_hoc_execute_prompt_event.py +4 -4
- vellum/client/types/fulfilled_execute_prompt_event.py +4 -4
- vellum/client/types/fulfilled_execute_prompt_response.py +3 -3
- vellum/client/types/fulfilled_execute_workflow_workflow_result_event.py +11 -5
- vellum/client/types/fulfilled_prompt_execution_meta.py +3 -3
- vellum/client/types/fulfilled_workflow_node_result_event.py +12 -6
- vellum/client/types/function_call.py +2 -2
- vellum/client/types/function_call_chat_message_content.py +3 -3
- vellum/client/types/function_call_chat_message_content_request.py +3 -3
- vellum/client/types/function_call_chat_message_content_value.py +2 -2
- vellum/client/types/function_call_chat_message_content_value_request.py +2 -2
- vellum/client/types/function_call_input.py +3 -3
- vellum/client/types/function_call_prompt_block.py +4 -4
- vellum/client/types/function_call_request.py +2 -2
- vellum/client/types/function_call_vellum_value.py +3 -3
- vellum/client/types/function_call_vellum_value_request.py +3 -3
- vellum/client/types/function_definition.py +4 -4
- vellum/client/types/generate_options_request.py +3 -3
- vellum/client/types/generate_request.py +2 -2
- vellum/client/types/generate_response.py +3 -3
- vellum/client/types/generate_result.py +3 -3
- vellum/client/types/generate_result_data.py +3 -3
- vellum/client/types/generate_result_error.py +3 -3
- vellum/client/types/generate_stream_response.py +3 -3
- vellum/client/types/generate_stream_result.py +4 -4
- vellum/client/types/generate_stream_result_data.py +3 -3
- vellum/client/types/google_vertex_ai_vectorizer_config.py +2 -2
- vellum/client/types/google_vertex_ai_vectorizer_config_request.py +2 -2
- vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001.py +3 -3
- vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py +3 -3
- vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004.py +3 -3
- vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004_request.py +3 -3
- vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py +3 -3
- vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002_request.py +3 -3
- vellum/client/types/hkunlp_instructor_xl_vectorizer.py +3 -3
- vellum/client/types/hkunlp_instructor_xl_vectorizer_request.py +3 -3
- vellum/client/types/image_chat_message_content.py +3 -3
- vellum/client/types/image_chat_message_content_request.py +3 -3
- vellum/client/types/image_prompt_block.py +4 -4
- vellum/client/types/image_vellum_value.py +3 -3
- vellum/client/types/image_vellum_value_request.py +3 -3
- vellum/client/types/indexing_config_vectorizer.py +7 -6
- vellum/client/types/indexing_config_vectorizer_request.py +7 -6
- vellum/client/types/initiated_ad_hoc_execute_prompt_event.py +3 -3
- vellum/client/types/initiated_execute_prompt_event.py +3 -3
- vellum/client/types/initiated_prompt_execution_meta.py +2 -2
- vellum/client/types/initiated_workflow_node_result_event.py +12 -6
- vellum/client/types/instructor_vectorizer_config.py +2 -2
- vellum/client/types/instructor_vectorizer_config_request.py +2 -2
- vellum/client/types/invoked_port.py +2 -2
- vellum/client/types/jinja_prompt_block.py +4 -4
- vellum/client/types/json_input.py +3 -3
- vellum/client/types/json_input_request.py +3 -3
- vellum/client/types/json_vellum_value.py +2 -2
- vellum/client/types/json_vellum_value_request.py +2 -2
- vellum/client/types/map_node_result.py +3 -3
- vellum/client/types/map_node_result_data.py +3 -3
- vellum/client/types/merge_node_result.py +3 -3
- vellum/client/types/merge_node_result_data.py +2 -2
- vellum/client/types/metadata_filter_config_request.py +12 -6
- vellum/client/types/metadata_filter_rule_request.py +5 -5
- vellum/client/types/metadata_filters_request.py +1 -0
- vellum/client/types/metric_definition_execution.py +10 -4
- vellum/client/types/metric_definition_history_item.py +10 -4
- vellum/client/types/metric_definition_input.py +3 -2
- vellum/client/types/metric_node_result.py +2 -2
- vellum/client/types/ml_model_read.py +6 -3
- vellum/client/types/ml_model_usage.py +2 -2
- vellum/client/types/ml_model_usage_wrapper.py +3 -3
- vellum/client/types/named_scenario_input_chat_history_variable_value_request.py +3 -3
- vellum/client/types/named_scenario_input_json_variable_value_request.py +2 -2
- vellum/client/types/named_scenario_input_request.py +3 -2
- vellum/client/types/named_scenario_input_string_variable_value_request.py +2 -2
- vellum/client/types/named_test_case_array_variable_value.py +11 -5
- vellum/client/types/named_test_case_array_variable_value_request.py +11 -5
- vellum/client/types/named_test_case_chat_history_variable_value.py +3 -3
- vellum/client/types/named_test_case_chat_history_variable_value_request.py +3 -3
- vellum/client/types/named_test_case_error_variable_value.py +3 -3
- vellum/client/types/named_test_case_error_variable_value_request.py +3 -3
- vellum/client/types/named_test_case_function_call_variable_value.py +3 -3
- vellum/client/types/named_test_case_function_call_variable_value_request.py +3 -3
- vellum/client/types/named_test_case_json_variable_value.py +2 -2
- vellum/client/types/named_test_case_json_variable_value_request.py +2 -2
- vellum/client/types/named_test_case_number_variable_value.py +2 -2
- vellum/client/types/named_test_case_number_variable_value_request.py +2 -2
- vellum/client/types/named_test_case_search_results_variable_value.py +3 -3
- vellum/client/types/named_test_case_search_results_variable_value_request.py +3 -3
- vellum/client/types/named_test_case_string_variable_value.py +2 -2
- vellum/client/types/named_test_case_string_variable_value_request.py +2 -2
- vellum/client/types/named_test_case_variable_value.py +6 -5
- vellum/client/types/named_test_case_variable_value_request.py +6 -5
- vellum/client/types/node_execution_fulfilled_body.py +4 -4
- vellum/client/types/node_execution_fulfilled_event.py +22 -16
- vellum/client/types/node_execution_initiated_body.py +3 -3
- vellum/client/types/node_execution_initiated_event.py +22 -16
- vellum/client/types/node_execution_paused_body.py +3 -3
- vellum/client/types/node_execution_paused_event.py +22 -16
- vellum/client/types/node_execution_rejected_body.py +4 -4
- vellum/client/types/node_execution_rejected_event.py +22 -16
- vellum/client/types/node_execution_resumed_body.py +3 -3
- vellum/client/types/node_execution_resumed_event.py +22 -16
- vellum/client/types/node_execution_span.py +19 -13
- vellum/client/types/node_execution_span_attributes.py +2 -2
- vellum/client/types/node_execution_streaming_body.py +4 -4
- vellum/client/types/node_execution_streaming_event.py +22 -16
- vellum/client/types/node_input_compiled_array_value.py +11 -5
- vellum/client/types/node_input_compiled_chat_history_value.py +3 -3
- vellum/client/types/node_input_compiled_error_value.py +3 -3
- vellum/client/types/node_input_compiled_function_call_value.py +3 -3
- vellum/client/types/node_input_compiled_json_value.py +2 -2
- vellum/client/types/node_input_compiled_number_value.py +2 -2
- vellum/client/types/node_input_compiled_search_results_value.py +3 -3
- vellum/client/types/node_input_compiled_secret_value.py +3 -3
- vellum/client/types/node_input_compiled_string_value.py +2 -2
- vellum/client/types/node_input_variable_compiled_value.py +6 -5
- vellum/client/types/node_output_compiled_array_value.py +12 -6
- vellum/client/types/node_output_compiled_chat_history_value.py +3 -3
- vellum/client/types/node_output_compiled_error_value.py +3 -3
- vellum/client/types/node_output_compiled_function_call_value.py +3 -3
- vellum/client/types/node_output_compiled_json_value.py +3 -3
- vellum/client/types/node_output_compiled_number_value.py +3 -3
- vellum/client/types/node_output_compiled_search_results_value.py +3 -3
- vellum/client/types/node_output_compiled_string_value.py +3 -3
- vellum/client/types/node_output_compiled_thinking_value.py +3 -3
- vellum/client/types/node_output_compiled_value.py +6 -5
- vellum/client/types/node_parent_context.py +12 -12
- vellum/client/types/normalized_log_probs.py +3 -3
- vellum/client/types/normalized_token_log_probs.py +2 -2
- vellum/client/types/number_input.py +3 -3
- vellum/client/types/number_vellum_value.py +2 -2
- vellum/client/types/number_vellum_value_request.py +2 -2
- vellum/client/types/open_ai_vectorizer_config.py +3 -3
- vellum/client/types/open_ai_vectorizer_config_request.py +3 -3
- vellum/client/types/open_ai_vectorizer_text_embedding_3_large.py +3 -3
- vellum/client/types/open_ai_vectorizer_text_embedding_3_large_request.py +3 -3
- vellum/client/types/open_ai_vectorizer_text_embedding_3_small.py +3 -3
- vellum/client/types/open_ai_vectorizer_text_embedding_3_small_request.py +3 -3
- vellum/client/types/open_ai_vectorizer_text_embedding_ada_002.py +3 -3
- vellum/client/types/open_ai_vectorizer_text_embedding_ada_002_request.py +3 -3
- vellum/client/types/organization_read.py +4 -4
- vellum/client/types/paginated_container_image_read_list.py +3 -3
- vellum/client/types/paginated_deployment_release_tag_read_list.py +3 -3
- vellum/client/types/paginated_document_index_read_list.py +3 -3
- vellum/client/types/paginated_folder_entity_list.py +3 -3
- vellum/client/types/paginated_slim_deployment_read_list.py +10 -4
- vellum/client/types/paginated_slim_document_list.py +3 -3
- vellum/client/types/paginated_slim_workflow_deployment_list.py +10 -4
- vellum/client/types/paginated_test_suite_run_execution_list.py +10 -4
- vellum/client/types/paginated_test_suite_test_case_list.py +10 -4
- vellum/client/types/paginated_workflow_release_tag_read_list.py +3 -3
- vellum/client/types/paginated_workflow_sandbox_example_list.py +3 -3
- vellum/client/types/parent_context.py +5 -5
- vellum/client/types/pdf_search_result_meta_source.py +2 -2
- vellum/client/types/pdf_search_result_meta_source_request.py +2 -2
- vellum/client/types/plain_text_prompt_block.py +4 -4
- vellum/client/types/price.py +3 -3
- vellum/client/types/prompt_block.py +7 -6
- vellum/client/types/prompt_deployment_expand_meta_request.py +2 -2
- vellum/client/types/prompt_deployment_input_request.py +3 -2
- vellum/client/types/prompt_deployment_parent_context.py +11 -11
- vellum/client/types/prompt_deployment_release.py +6 -6
- vellum/client/types/prompt_deployment_release_prompt_deployment.py +2 -2
- vellum/client/types/prompt_deployment_release_prompt_version.py +4 -4
- vellum/client/types/prompt_exec_config.py +15 -9
- vellum/client/types/prompt_execution_meta.py +3 -3
- vellum/client/types/prompt_node_execution_meta.py +3 -3
- vellum/client/types/prompt_node_result.py +3 -3
- vellum/client/types/prompt_node_result_data.py +3 -3
- vellum/client/types/prompt_output.py +3 -2
- vellum/client/types/prompt_parameters.py +2 -2
- vellum/client/types/prompt_push_response.py +2 -2
- vellum/client/types/prompt_request_chat_history_input.py +3 -3
- vellum/client/types/prompt_request_input.py +3 -2
- vellum/client/types/prompt_request_json_input.py +3 -3
- vellum/client/types/prompt_request_string_input.py +3 -3
- vellum/client/types/prompt_settings.py +2 -2
- vellum/client/types/prompt_version_build_config_sandbox.py +2 -2
- vellum/client/types/raw_prompt_execution_overrides_request.py +2 -2
- vellum/client/types/reducto_chunker_config.py +2 -2
- vellum/client/types/reducto_chunker_config_request.py +2 -2
- vellum/client/types/reducto_chunking.py +3 -3
- vellum/client/types/reducto_chunking_request.py +3 -3
- vellum/client/types/rejected_ad_hoc_execute_prompt_event.py +4 -4
- vellum/client/types/rejected_execute_prompt_event.py +4 -4
- vellum/client/types/rejected_execute_prompt_response.py +3 -3
- vellum/client/types/rejected_execute_workflow_workflow_result_event.py +4 -4
- vellum/client/types/rejected_prompt_execution_meta.py +3 -3
- vellum/client/types/rejected_workflow_node_result_event.py +12 -6
- vellum/client/types/release_created_by.py +2 -2
- vellum/client/types/release_environment.py +2 -2
- vellum/client/types/release_release_tag.py +3 -3
- vellum/client/types/release_review_reviewer.py +2 -2
- vellum/client/types/release_tag_release.py +2 -2
- vellum/client/types/replace_test_suite_test_case_request.py +9 -3
- vellum/client/types/rich_text_child_block.py +2 -1
- vellum/client/types/rich_text_prompt_block.py +4 -4
- vellum/client/types/sandbox_scenario.py +3 -3
- vellum/client/types/scenario_input.py +3 -2
- vellum/client/types/scenario_input_chat_history_variable_value.py +3 -3
- vellum/client/types/scenario_input_json_variable_value.py +2 -2
- vellum/client/types/scenario_input_string_variable_value.py +2 -2
- vellum/client/types/search_filters_request.py +11 -5
- vellum/client/types/search_node_result.py +3 -3
- vellum/client/types/search_node_result_data.py +3 -3
- vellum/client/types/search_request_options_request.py +13 -7
- vellum/client/types/search_response.py +3 -3
- vellum/client/types/search_result.py +3 -3
- vellum/client/types/search_result_document.py +2 -2
- vellum/client/types/search_result_document_request.py +2 -2
- vellum/client/types/search_result_merging_request.py +2 -2
- vellum/client/types/search_result_meta.py +3 -3
- vellum/client/types/search_result_meta_request.py +3 -3
- vellum/client/types/search_result_request.py +3 -3
- vellum/client/types/search_results_input.py +3 -3
- vellum/client/types/search_results_vellum_value.py +3 -3
- vellum/client/types/search_results_vellum_value_request.py +3 -3
- vellum/client/types/search_weights_request.py +2 -2
- vellum/client/types/sentence_chunker_config.py +2 -2
- vellum/client/types/sentence_chunker_config_request.py +2 -2
- vellum/client/types/sentence_chunking.py +3 -3
- vellum/client/types/sentence_chunking_request.py +3 -3
- vellum/client/types/slim_deployment_read.py +10 -4
- vellum/client/types/slim_document.py +5 -5
- vellum/client/types/slim_document_document_to_document_index.py +3 -3
- vellum/client/types/slim_release_review.py +4 -4
- vellum/client/types/slim_workflow_deployment.py +11 -5
- vellum/client/types/slim_workflow_execution_read.py +21 -15
- vellum/client/types/span_link.py +12 -12
- vellum/client/types/streaming_ad_hoc_execute_prompt_event.py +4 -4
- vellum/client/types/streaming_execute_prompt_event.py +3 -3
- vellum/client/types/streaming_prompt_execution_meta.py +2 -2
- vellum/client/types/streaming_workflow_node_result_event.py +12 -6
- vellum/client/types/string_chat_message_content.py +2 -2
- vellum/client/types/string_chat_message_content_request.py +2 -2
- vellum/client/types/string_input.py +3 -3
- vellum/client/types/string_input_request.py +3 -3
- vellum/client/types/string_vellum_value.py +2 -2
- vellum/client/types/string_vellum_value_request.py +2 -2
- vellum/client/types/submit_completion_actual_request.py +3 -3
- vellum/client/types/submit_workflow_execution_actual_request.py +3 -2
- vellum/client/types/subworkflow_node_result.py +3 -3
- vellum/client/types/subworkflow_node_result_data.py +2 -2
- vellum/client/types/templating_node_array_result.py +11 -5
- vellum/client/types/templating_node_chat_history_result.py +3 -3
- vellum/client/types/templating_node_error_result.py +3 -3
- vellum/client/types/templating_node_function_call_result.py +3 -3
- vellum/client/types/templating_node_json_result.py +2 -2
- vellum/client/types/templating_node_number_result.py +2 -2
- vellum/client/types/templating_node_result.py +10 -4
- vellum/client/types/templating_node_result_data.py +10 -4
- vellum/client/types/templating_node_result_output.py +6 -5
- vellum/client/types/templating_node_search_results_result.py +3 -3
- vellum/client/types/templating_node_string_result.py +2 -2
- vellum/client/types/terminal_node_array_result.py +11 -5
- vellum/client/types/terminal_node_chat_history_result.py +2 -2
- vellum/client/types/terminal_node_error_result.py +2 -2
- vellum/client/types/terminal_node_function_call_result.py +2 -2
- vellum/client/types/terminal_node_json_result.py +2 -2
- vellum/client/types/terminal_node_number_result.py +2 -2
- vellum/client/types/terminal_node_result.py +10 -4
- vellum/client/types/terminal_node_result_data.py +10 -4
- vellum/client/types/terminal_node_result_output.py +6 -5
- vellum/client/types/terminal_node_search_results_result.py +2 -2
- vellum/client/types/terminal_node_string_result.py +2 -2
- vellum/client/types/test_case_array_variable_value.py +11 -5
- vellum/client/types/test_case_chat_history_variable_value.py +3 -3
- vellum/client/types/test_case_error_variable_value.py +3 -3
- vellum/client/types/test_case_function_call_variable_value.py +3 -3
- vellum/client/types/test_case_json_variable_value.py +2 -2
- vellum/client/types/test_case_number_variable_value.py +2 -2
- vellum/client/types/test_case_search_results_variable_value.py +3 -3
- vellum/client/types/test_case_string_variable_value.py +2 -2
- vellum/client/types/test_case_variable_value.py +6 -5
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config.py +3 -3
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py +3 -3
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +3 -3
- vellum/client/types/test_suite_run_deployment_release_tag_exec_config_request.py +3 -3
- vellum/client/types/test_suite_run_exec_config.py +2 -1
- vellum/client/types/test_suite_run_exec_config_request.py +2 -1
- vellum/client/types/test_suite_run_execution.py +11 -5
- vellum/client/types/test_suite_run_execution_array_output.py +11 -5
- vellum/client/types/test_suite_run_execution_chat_history_output.py +3 -3
- vellum/client/types/test_suite_run_execution_error_output.py +3 -3
- vellum/client/types/test_suite_run_execution_function_call_output.py +3 -3
- vellum/client/types/test_suite_run_execution_json_output.py +2 -2
- vellum/client/types/test_suite_run_execution_metric_definition.py +2 -2
- vellum/client/types/test_suite_run_execution_metric_result.py +11 -5
- vellum/client/types/test_suite_run_execution_number_output.py +2 -2
- vellum/client/types/test_suite_run_execution_output.py +6 -5
- vellum/client/types/test_suite_run_execution_search_results_output.py +3 -3
- vellum/client/types/test_suite_run_execution_string_output.py +2 -2
- vellum/client/types/test_suite_run_external_exec_config.py +10 -4
- vellum/client/types/test_suite_run_external_exec_config_data.py +10 -4
- vellum/client/types/test_suite_run_external_exec_config_data_request.py +10 -4
- vellum/client/types/test_suite_run_external_exec_config_request.py +10 -4
- vellum/client/types/test_suite_run_metric_array_output.py +11 -5
- vellum/client/types/test_suite_run_metric_error_output.py +3 -3
- vellum/client/types/test_suite_run_metric_json_output.py +2 -2
- vellum/client/types/test_suite_run_metric_number_output.py +2 -2
- vellum/client/types/test_suite_run_metric_output.py +5 -4
- vellum/client/types/test_suite_run_metric_string_output.py +2 -2
- vellum/client/types/test_suite_run_progress.py +2 -2
- vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py +3 -3
- vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py +3 -3
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config.py +3 -3
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data.py +3 -3
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data_request.py +3 -3
- vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_request.py +3 -3
- vellum/client/types/test_suite_run_read.py +12 -6
- vellum/client/types/test_suite_run_test_suite.py +2 -2
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config.py +3 -3
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data.py +3 -3
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +3 -3
- vellum/client/types/test_suite_run_workflow_release_tag_exec_config_request.py +3 -3
- vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py +3 -3
- vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py +3 -3
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config.py +3 -3
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data.py +3 -3
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data_request.py +3 -3
- vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_request.py +3 -3
- vellum/client/types/test_suite_test_case.py +10 -4
- vellum/client/types/test_suite_test_case_bulk_operation_request.py +2 -1
- vellum/client/types/test_suite_test_case_bulk_result.py +2 -1
- vellum/client/types/test_suite_test_case_create_bulk_operation_request.py +10 -4
- vellum/client/types/test_suite_test_case_created_bulk_result.py +3 -3
- vellum/client/types/test_suite_test_case_created_bulk_result_data.py +2 -2
- vellum/client/types/test_suite_test_case_delete_bulk_operation_data_request.py +2 -2
- vellum/client/types/test_suite_test_case_delete_bulk_operation_request.py +3 -3
- vellum/client/types/test_suite_test_case_deleted_bulk_result.py +3 -3
- vellum/client/types/test_suite_test_case_deleted_bulk_result_data.py +2 -2
- vellum/client/types/test_suite_test_case_rejected_bulk_result.py +2 -2
- vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py +10 -4
- vellum/client/types/test_suite_test_case_replaced_bulk_result.py +3 -3
- vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py +2 -2
- vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py +10 -4
- vellum/client/types/thinking_vellum_value.py +3 -3
- vellum/client/types/thinking_vellum_value_request.py +3 -3
- vellum/client/types/token_overlapping_window_chunker_config.py +2 -2
- vellum/client/types/token_overlapping_window_chunker_config_request.py +2 -2
- vellum/client/types/token_overlapping_window_chunking.py +3 -3
- vellum/client/types/token_overlapping_window_chunking_request.py +3 -3
- vellum/client/types/upload_document_response.py +3 -3
- vellum/client/types/upsert_test_suite_test_case_request.py +9 -3
- vellum/client/types/variable_prompt_block.py +4 -4
- vellum/client/types/vellum_audio.py +3 -3
- vellum/client/types/vellum_audio_request.py +3 -3
- vellum/client/types/vellum_code_resource_definition.py +2 -2
- vellum/client/types/vellum_document.py +2 -2
- vellum/client/types/vellum_document_request.py +2 -2
- vellum/client/types/vellum_error.py +3 -3
- vellum/client/types/vellum_error_request.py +3 -3
- vellum/client/types/vellum_image.py +2 -2
- vellum/client/types/vellum_image_request.py +2 -2
- vellum/client/types/vellum_node_execution_event.py +4 -3
- vellum/client/types/vellum_sdk_error.py +3 -3
- vellum/client/types/vellum_secret.py +2 -2
- vellum/client/types/vellum_span.py +2 -1
- vellum/client/types/vellum_value.py +9 -8
- vellum/client/types/vellum_value_logical_condition_group_request.py +6 -6
- vellum/client/types/vellum_value_logical_condition_request.py +13 -7
- vellum/client/types/vellum_value_logical_expression_request.py +2 -1
- vellum/client/types/vellum_value_request.py +9 -8
- vellum/client/types/vellum_variable.py +13 -7
- vellum/client/types/vellum_variable_extensions.py +2 -2
- vellum/client/types/vellum_video.py +3 -3
- vellum/client/types/vellum_video_request.py +3 -3
- vellum/client/types/vellum_workflow_execution_event.py +4 -3
- vellum/client/types/video_chat_message_content.py +3 -3
- vellum/client/types/video_chat_message_content_request.py +3 -3
- vellum/client/types/video_prompt_block.py +4 -4
- vellum/client/types/video_vellum_value.py +3 -3
- vellum/client/types/video_vellum_value_request.py +3 -3
- vellum/client/types/workflow_deployment_event_executions_response.py +18 -12
- vellum/client/types/workflow_deployment_history_item.py +10 -4
- vellum/client/types/workflow_deployment_parent_context.py +11 -11
- vellum/client/types/workflow_deployment_read.py +11 -5
- vellum/client/types/workflow_deployment_release.py +13 -7
- vellum/client/types/workflow_deployment_release_workflow_deployment.py +2 -2
- vellum/client/types/workflow_deployment_release_workflow_version.py +10 -4
- vellum/client/types/workflow_error.py +1 -0
- vellum/client/types/workflow_event_error.py +3 -3
- vellum/client/types/workflow_event_execution_read.py +22 -16
- vellum/client/types/workflow_execution_actual.py +10 -4
- vellum/client/types/workflow_execution_actual_chat_history_request.py +2 -2
- vellum/client/types/workflow_execution_actual_json_request.py +2 -2
- vellum/client/types/workflow_execution_actual_string_request.py +2 -2
- vellum/client/types/workflow_execution_detail.py +22 -16
- vellum/client/types/workflow_execution_fulfilled_body.py +3 -3
- vellum/client/types/workflow_execution_fulfilled_event.py +22 -16
- vellum/client/types/workflow_execution_initiated_body.py +3 -3
- vellum/client/types/workflow_execution_initiated_event.py +22 -16
- vellum/client/types/workflow_execution_node_result_event.py +10 -4
- vellum/client/types/workflow_execution_paused_body.py +4 -4
- vellum/client/types/workflow_execution_paused_event.py +22 -16
- vellum/client/types/workflow_execution_rejected_body.py +4 -4
- vellum/client/types/workflow_execution_rejected_event.py +22 -16
- vellum/client/types/workflow_execution_resumed_body.py +3 -3
- vellum/client/types/workflow_execution_resumed_event.py +22 -16
- vellum/client/types/workflow_execution_snapshotted_body.py +3 -3
- vellum/client/types/workflow_execution_snapshotted_event.py +22 -16
- vellum/client/types/workflow_execution_span.py +18 -12
- vellum/client/types/workflow_execution_span_attributes.py +2 -2
- vellum/client/types/workflow_execution_streaming_body.py +4 -4
- vellum/client/types/workflow_execution_streaming_event.py +22 -16
- vellum/client/types/workflow_execution_usage_calculation_error.py +3 -3
- vellum/client/types/workflow_execution_usage_calculation_fulfilled_body.py +3 -3
- vellum/client/types/workflow_execution_usage_result.py +3 -3
- vellum/client/types/workflow_execution_view_online_eval_metric_result.py +10 -4
- vellum/client/types/workflow_execution_workflow_result_event.py +10 -4
- vellum/client/types/workflow_expand_meta_request.py +2 -2
- vellum/client/types/workflow_initialization_error.py +2 -2
- vellum/client/types/workflow_node_result_data.py +8 -7
- vellum/client/types/workflow_node_result_event.py +3 -2
- vellum/client/types/workflow_output.py +6 -5
- vellum/client/types/workflow_output_array.py +12 -6
- vellum/client/types/workflow_output_chat_history.py +3 -3
- vellum/client/types/workflow_output_error.py +3 -3
- vellum/client/types/workflow_output_function_call.py +3 -3
- vellum/client/types/workflow_output_image.py +3 -3
- vellum/client/types/workflow_output_json.py +3 -3
- vellum/client/types/workflow_output_number.py +3 -3
- vellum/client/types/workflow_output_search_results.py +3 -3
- vellum/client/types/workflow_output_string.py +3 -3
- vellum/client/types/workflow_parent_context.py +12 -12
- vellum/client/types/workflow_push_deployment_config_request.py +2 -2
- vellum/client/types/workflow_push_response.py +2 -2
- vellum/client/types/workflow_release_tag_read.py +4 -4
- vellum/client/types/workflow_release_tag_workflow_deployment_history_item.py +2 -2
- vellum/client/types/workflow_request_chat_history_input_request.py +3 -3
- vellum/client/types/workflow_request_input_request.py +3 -2
- vellum/client/types/workflow_request_json_input_request.py +3 -3
- vellum/client/types/workflow_request_number_input_request.py +3 -3
- vellum/client/types/workflow_request_string_input_request.py +3 -3
- vellum/client/types/workflow_result_event.py +13 -7
- vellum/client/types/workflow_result_event_output_data.py +7 -6
- vellum/client/types/workflow_result_event_output_data_array.py +12 -6
- vellum/client/types/workflow_result_event_output_data_chat_history.py +3 -3
- vellum/client/types/workflow_result_event_output_data_error.py +3 -3
- vellum/client/types/workflow_result_event_output_data_function_call.py +3 -3
- vellum/client/types/workflow_result_event_output_data_json.py +3 -3
- vellum/client/types/workflow_result_event_output_data_number.py +3 -3
- vellum/client/types/workflow_result_event_output_data_search_results.py +3 -3
- vellum/client/types/workflow_result_event_output_data_string.py +3 -3
- vellum/client/types/workflow_sandbox_example.py +2 -2
- vellum/client/types/workflow_sandbox_parent_context.py +11 -11
- vellum/client/types/workflow_stream_event.py +2 -1
- vellum/client/types/workspace_read.py +3 -3
- vellum/client/types/workspace_secret_read.py +3 -3
- vellum/core/force_multipart.py +3 -0
- vellum/workflows/events/node.py +25 -10
- vellum/workflows/events/tests/test_event.py +19 -19
- vellum/workflows/state/encoder.py +2 -4
- vellum/workflows/utils/functions.py +1 -1
- {vellum_ai-1.1.3.dist-info → vellum_ai-1.1.4.dist-info}/METADATA +2 -2
- {vellum_ai-1.1.3.dist-info → vellum_ai-1.1.4.dist-info}/RECORD +660 -658
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +154 -0
- {vellum_ai-1.1.3.dist-info → vellum_ai-1.1.4.dist-info}/LICENSE +0 -0
- {vellum_ai-1.1.3.dist-info → vellum_ai-1.1.4.dist-info}/WHEEL +0 -0
- {vellum_ai-1.1.3.dist-info → vellum_ai-1.1.4.dist-info}/entry_points.txt +0 -0
@@ -1,15 +1,14 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
-
from ...core.client_wrapper import SyncClientWrapper
|
4
3
|
import typing
|
5
|
-
from ...core.request_options import RequestOptions
|
6
|
-
from ...core.http_response import HttpResponse
|
7
|
-
from ...types.organization_read import OrganizationRead
|
8
|
-
from ...core.pydantic_utilities import parse_obj_as
|
9
4
|
from json.decoder import JSONDecodeError
|
5
|
+
|
10
6
|
from ...core.api_error import ApiError
|
11
|
-
from ...core.client_wrapper import AsyncClientWrapper
|
12
|
-
from ...core.http_response import AsyncHttpResponse
|
7
|
+
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
8
|
+
from ...core.http_response import AsyncHttpResponse, HttpResponse
|
9
|
+
from ...core.pydantic_utilities import parse_obj_as
|
10
|
+
from ...core.request_options import RequestOptions
|
11
|
+
from ...types.organization_read import OrganizationRead
|
13
12
|
|
14
13
|
|
15
14
|
class RawOrganizationsClient:
|
@@ -50,8 +49,8 @@ class RawOrganizationsClient:
|
|
50
49
|
return HttpResponse(response=_response, data=_data)
|
51
50
|
_response_json = _response.json()
|
52
51
|
except JSONDecodeError:
|
53
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
54
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
52
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
53
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
55
54
|
|
56
55
|
|
57
56
|
class AsyncRawOrganizationsClient:
|
@@ -92,5 +91,5 @@ class AsyncRawOrganizationsClient:
|
|
92
91
|
return AsyncHttpResponse(response=_response, data=_data)
|
93
92
|
_response_json = _response.json()
|
94
93
|
except JSONDecodeError:
|
95
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
96
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
94
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
95
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
@@ -1,13 +1,12 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
3
|
import typing
|
4
|
-
|
5
|
-
from .
|
4
|
+
|
5
|
+
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
6
6
|
from ...core.request_options import RequestOptions
|
7
7
|
from ...types.prompt_exec_config import PromptExecConfig
|
8
8
|
from ...types.prompt_push_response import PromptPushResponse
|
9
|
-
from
|
10
|
-
from .raw_client import AsyncRawPromptsClient
|
9
|
+
from .raw_client import AsyncRawPromptsClient, RawPromptsClient
|
11
10
|
|
12
11
|
# this is used as the default value for optional parameters
|
13
12
|
OMIT = typing.cast(typing.Any, ...)
|
@@ -70,8 +69,8 @@ class PromptsClient:
|
|
70
69
|
id="id",
|
71
70
|
)
|
72
71
|
"""
|
73
|
-
|
74
|
-
return
|
72
|
+
_response = self._raw_client.pull(id, prompt_variant_id=prompt_variant_id, request_options=request_options)
|
73
|
+
return _response.data
|
75
74
|
|
76
75
|
def push(
|
77
76
|
self,
|
@@ -146,14 +145,14 @@ class PromptsClient:
|
|
146
145
|
),
|
147
146
|
)
|
148
147
|
"""
|
149
|
-
|
148
|
+
_response = self._raw_client.push(
|
150
149
|
exec_config=exec_config,
|
151
150
|
prompt_variant_id=prompt_variant_id,
|
152
151
|
prompt_variant_label=prompt_variant_label,
|
153
152
|
prompt_sandbox_id=prompt_sandbox_id,
|
154
153
|
request_options=request_options,
|
155
154
|
)
|
156
|
-
return
|
155
|
+
return _response.data
|
157
156
|
|
158
157
|
|
159
158
|
class AsyncPromptsClient:
|
@@ -217,8 +216,10 @@ class AsyncPromptsClient:
|
|
217
216
|
|
218
217
|
asyncio.run(main())
|
219
218
|
"""
|
220
|
-
|
221
|
-
|
219
|
+
_response = await self._raw_client.pull(
|
220
|
+
id, prompt_variant_id=prompt_variant_id, request_options=request_options
|
221
|
+
)
|
222
|
+
return _response.data
|
222
223
|
|
223
224
|
async def push(
|
224
225
|
self,
|
@@ -301,11 +302,11 @@ class AsyncPromptsClient:
|
|
301
302
|
|
302
303
|
asyncio.run(main())
|
303
304
|
"""
|
304
|
-
|
305
|
+
_response = await self._raw_client.push(
|
305
306
|
exec_config=exec_config,
|
306
307
|
prompt_variant_id=prompt_variant_id,
|
307
308
|
prompt_variant_label=prompt_variant_label,
|
308
309
|
prompt_sandbox_id=prompt_sandbox_id,
|
309
310
|
request_options=request_options,
|
310
311
|
)
|
311
|
-
return
|
312
|
+
return _response.data
|
@@ -1,20 +1,19 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
3
|
import typing
|
4
|
-
from
|
5
|
-
|
6
|
-
from ...core.
|
7
|
-
from ...
|
4
|
+
from json.decoder import JSONDecodeError
|
5
|
+
|
6
|
+
from ...core.api_error import ApiError
|
7
|
+
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
8
|
+
from ...core.http_response import AsyncHttpResponse, HttpResponse
|
8
9
|
from ...core.jsonable_encoder import jsonable_encoder
|
9
10
|
from ...core.pydantic_utilities import parse_obj_as
|
11
|
+
from ...core.request_options import RequestOptions
|
12
|
+
from ...core.serialization import convert_and_respect_annotation_metadata
|
10
13
|
from ...errors.bad_request_error import BadRequestError
|
11
14
|
from ...errors.not_found_error import NotFoundError
|
12
|
-
from
|
13
|
-
from ...core.api_error import ApiError
|
15
|
+
from ...types.prompt_exec_config import PromptExecConfig
|
14
16
|
from ...types.prompt_push_response import PromptPushResponse
|
15
|
-
from ...core.serialization import convert_and_respect_annotation_metadata
|
16
|
-
from ...core.client_wrapper import AsyncClientWrapper
|
17
|
-
from ...core.http_response import AsyncHttpResponse
|
18
17
|
|
19
18
|
# this is used as the default value for optional parameters
|
20
19
|
OMIT = typing.cast(typing.Any, ...)
|
@@ -74,28 +73,30 @@ class RawPromptsClient:
|
|
74
73
|
return HttpResponse(response=_response, data=_data)
|
75
74
|
if _response.status_code == 400:
|
76
75
|
raise BadRequestError(
|
77
|
-
|
76
|
+
headers=dict(_response.headers),
|
77
|
+
body=typing.cast(
|
78
78
|
typing.Optional[typing.Any],
|
79
79
|
parse_obj_as(
|
80
80
|
type_=typing.Optional[typing.Any], # type: ignore
|
81
81
|
object_=_response.json(),
|
82
82
|
),
|
83
|
-
)
|
83
|
+
),
|
84
84
|
)
|
85
85
|
if _response.status_code == 404:
|
86
86
|
raise NotFoundError(
|
87
|
-
|
87
|
+
headers=dict(_response.headers),
|
88
|
+
body=typing.cast(
|
88
89
|
typing.Optional[typing.Any],
|
89
90
|
parse_obj_as(
|
90
91
|
type_=typing.Optional[typing.Any], # type: ignore
|
91
92
|
object_=_response.json(),
|
92
93
|
),
|
93
|
-
)
|
94
|
+
),
|
94
95
|
)
|
95
96
|
_response_json = _response.json()
|
96
97
|
except JSONDecodeError:
|
97
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
98
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
98
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
99
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
99
100
|
|
100
101
|
def push(
|
101
102
|
self,
|
@@ -159,28 +160,30 @@ class RawPromptsClient:
|
|
159
160
|
return HttpResponse(response=_response, data=_data)
|
160
161
|
if _response.status_code == 400:
|
161
162
|
raise BadRequestError(
|
162
|
-
|
163
|
+
headers=dict(_response.headers),
|
164
|
+
body=typing.cast(
|
163
165
|
typing.Optional[typing.Any],
|
164
166
|
parse_obj_as(
|
165
167
|
type_=typing.Optional[typing.Any], # type: ignore
|
166
168
|
object_=_response.json(),
|
167
169
|
),
|
168
|
-
)
|
170
|
+
),
|
169
171
|
)
|
170
172
|
if _response.status_code == 404:
|
171
173
|
raise NotFoundError(
|
172
|
-
|
174
|
+
headers=dict(_response.headers),
|
175
|
+
body=typing.cast(
|
173
176
|
typing.Optional[typing.Any],
|
174
177
|
parse_obj_as(
|
175
178
|
type_=typing.Optional[typing.Any], # type: ignore
|
176
179
|
object_=_response.json(),
|
177
180
|
),
|
178
|
-
)
|
181
|
+
),
|
179
182
|
)
|
180
183
|
_response_json = _response.json()
|
181
184
|
except JSONDecodeError:
|
182
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
183
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
185
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
186
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
184
187
|
|
185
188
|
|
186
189
|
class AsyncRawPromptsClient:
|
@@ -237,28 +240,30 @@ class AsyncRawPromptsClient:
|
|
237
240
|
return AsyncHttpResponse(response=_response, data=_data)
|
238
241
|
if _response.status_code == 400:
|
239
242
|
raise BadRequestError(
|
240
|
-
|
243
|
+
headers=dict(_response.headers),
|
244
|
+
body=typing.cast(
|
241
245
|
typing.Optional[typing.Any],
|
242
246
|
parse_obj_as(
|
243
247
|
type_=typing.Optional[typing.Any], # type: ignore
|
244
248
|
object_=_response.json(),
|
245
249
|
),
|
246
|
-
)
|
250
|
+
),
|
247
251
|
)
|
248
252
|
if _response.status_code == 404:
|
249
253
|
raise NotFoundError(
|
250
|
-
|
254
|
+
headers=dict(_response.headers),
|
255
|
+
body=typing.cast(
|
251
256
|
typing.Optional[typing.Any],
|
252
257
|
parse_obj_as(
|
253
258
|
type_=typing.Optional[typing.Any], # type: ignore
|
254
259
|
object_=_response.json(),
|
255
260
|
),
|
256
|
-
)
|
261
|
+
),
|
257
262
|
)
|
258
263
|
_response_json = _response.json()
|
259
264
|
except JSONDecodeError:
|
260
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
261
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
265
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
266
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
262
267
|
|
263
268
|
async def push(
|
264
269
|
self,
|
@@ -322,25 +327,27 @@ class AsyncRawPromptsClient:
|
|
322
327
|
return AsyncHttpResponse(response=_response, data=_data)
|
323
328
|
if _response.status_code == 400:
|
324
329
|
raise BadRequestError(
|
325
|
-
|
330
|
+
headers=dict(_response.headers),
|
331
|
+
body=typing.cast(
|
326
332
|
typing.Optional[typing.Any],
|
327
333
|
parse_obj_as(
|
328
334
|
type_=typing.Optional[typing.Any], # type: ignore
|
329
335
|
object_=_response.json(),
|
330
336
|
),
|
331
|
-
)
|
337
|
+
),
|
332
338
|
)
|
333
339
|
if _response.status_code == 404:
|
334
340
|
raise NotFoundError(
|
335
|
-
|
341
|
+
headers=dict(_response.headers),
|
342
|
+
body=typing.cast(
|
336
343
|
typing.Optional[typing.Any],
|
337
344
|
parse_obj_as(
|
338
345
|
type_=typing.Optional[typing.Any], # type: ignore
|
339
346
|
object_=_response.json(),
|
340
347
|
),
|
341
|
-
)
|
348
|
+
),
|
342
349
|
)
|
343
350
|
_response_json = _response.json()
|
344
351
|
except JSONDecodeError:
|
345
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
346
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
352
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
353
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
@@ -1,14 +1,13 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
3
|
import typing
|
4
|
-
|
5
|
-
from .
|
4
|
+
|
5
|
+
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
6
6
|
from ...core.request_options import RequestOptions
|
7
7
|
from ...types.deployment_read import DeploymentRead
|
8
8
|
from ...types.named_scenario_input_request import NamedScenarioInputRequest
|
9
9
|
from ...types.sandbox_scenario import SandboxScenario
|
10
|
-
from
|
11
|
-
from .raw_client import AsyncRawSandboxesClient
|
10
|
+
from .raw_client import AsyncRawSandboxesClient, RawSandboxesClient
|
12
11
|
|
13
12
|
# this is used as the default value for optional parameters
|
14
13
|
OMIT = typing.cast(typing.Any, ...)
|
@@ -90,7 +89,7 @@ class SandboxesClient:
|
|
90
89
|
prompt_variant_id="prompt_variant_id",
|
91
90
|
)
|
92
91
|
"""
|
93
|
-
|
92
|
+
_response = self._raw_client.deploy_prompt(
|
94
93
|
id,
|
95
94
|
prompt_variant_id,
|
96
95
|
prompt_deployment_id=prompt_deployment_id,
|
@@ -100,7 +99,7 @@ class SandboxesClient:
|
|
100
99
|
release_description=release_description,
|
101
100
|
request_options=request_options,
|
102
101
|
)
|
103
|
-
return
|
102
|
+
return _response.data
|
104
103
|
|
105
104
|
def upsert_sandbox_scenario(
|
106
105
|
self,
|
@@ -161,10 +160,10 @@ class SandboxesClient:
|
|
161
160
|
],
|
162
161
|
)
|
163
162
|
"""
|
164
|
-
|
163
|
+
_response = self._raw_client.upsert_sandbox_scenario(
|
165
164
|
id, inputs=inputs, label=label, scenario_id=scenario_id, request_options=request_options
|
166
165
|
)
|
167
|
-
return
|
166
|
+
return _response.data
|
168
167
|
|
169
168
|
def delete_sandbox_scenario(
|
170
169
|
self, id: str, scenario_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
@@ -200,8 +199,8 @@ class SandboxesClient:
|
|
200
199
|
scenario_id="scenario_id",
|
201
200
|
)
|
202
201
|
"""
|
203
|
-
|
204
|
-
return
|
202
|
+
_response = self._raw_client.delete_sandbox_scenario(id, scenario_id, request_options=request_options)
|
203
|
+
return _response.data
|
205
204
|
|
206
205
|
|
207
206
|
class AsyncSandboxesClient:
|
@@ -284,7 +283,7 @@ class AsyncSandboxesClient:
|
|
284
283
|
|
285
284
|
asyncio.run(main())
|
286
285
|
"""
|
287
|
-
|
286
|
+
_response = await self._raw_client.deploy_prompt(
|
288
287
|
id,
|
289
288
|
prompt_variant_id,
|
290
289
|
prompt_deployment_id=prompt_deployment_id,
|
@@ -294,7 +293,7 @@ class AsyncSandboxesClient:
|
|
294
293
|
release_description=release_description,
|
295
294
|
request_options=request_options,
|
296
295
|
)
|
297
|
-
return
|
296
|
+
return _response.data
|
298
297
|
|
299
298
|
async def upsert_sandbox_scenario(
|
300
299
|
self,
|
@@ -363,10 +362,10 @@ class AsyncSandboxesClient:
|
|
363
362
|
|
364
363
|
asyncio.run(main())
|
365
364
|
"""
|
366
|
-
|
365
|
+
_response = await self._raw_client.upsert_sandbox_scenario(
|
367
366
|
id, inputs=inputs, label=label, scenario_id=scenario_id, request_options=request_options
|
368
367
|
)
|
369
|
-
return
|
368
|
+
return _response.data
|
370
369
|
|
371
370
|
async def delete_sandbox_scenario(
|
372
371
|
self, id: str, scenario_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
@@ -410,5 +409,5 @@ class AsyncSandboxesClient:
|
|
410
409
|
|
411
410
|
asyncio.run(main())
|
412
411
|
"""
|
413
|
-
|
414
|
-
return
|
412
|
+
_response = await self._raw_client.delete_sandbox_scenario(id, scenario_id, request_options=request_options)
|
413
|
+
return _response.data
|
@@ -1,19 +1,18 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
3
|
import typing
|
4
|
-
from ...core.client_wrapper import SyncClientWrapper
|
5
|
-
from ...core.request_options import RequestOptions
|
6
|
-
from ...core.http_response import HttpResponse
|
7
|
-
from ...types.deployment_read import DeploymentRead
|
8
|
-
from ...core.jsonable_encoder import jsonable_encoder
|
9
|
-
from ...core.pydantic_utilities import parse_obj_as
|
10
4
|
from json.decoder import JSONDecodeError
|
5
|
+
|
11
6
|
from ...core.api_error import ApiError
|
7
|
+
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
8
|
+
from ...core.http_response import AsyncHttpResponse, HttpResponse
|
9
|
+
from ...core.jsonable_encoder import jsonable_encoder
|
10
|
+
from ...core.pydantic_utilities import parse_obj_as
|
11
|
+
from ...core.request_options import RequestOptions
|
12
|
+
from ...core.serialization import convert_and_respect_annotation_metadata
|
13
|
+
from ...types.deployment_read import DeploymentRead
|
12
14
|
from ...types.named_scenario_input_request import NamedScenarioInputRequest
|
13
15
|
from ...types.sandbox_scenario import SandboxScenario
|
14
|
-
from ...core.serialization import convert_and_respect_annotation_metadata
|
15
|
-
from ...core.client_wrapper import AsyncClientWrapper
|
16
|
-
from ...core.http_response import AsyncHttpResponse
|
17
16
|
|
18
17
|
# this is used as the default value for optional parameters
|
19
18
|
OMIT = typing.cast(typing.Any, ...)
|
@@ -96,8 +95,8 @@ class RawSandboxesClient:
|
|
96
95
|
return HttpResponse(response=_response, data=_data)
|
97
96
|
_response_json = _response.json()
|
98
97
|
except JSONDecodeError:
|
99
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
100
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
98
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
99
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
101
100
|
|
102
101
|
def upsert_sandbox_scenario(
|
103
102
|
self,
|
@@ -167,8 +166,8 @@ class RawSandboxesClient:
|
|
167
166
|
return HttpResponse(response=_response, data=_data)
|
168
167
|
_response_json = _response.json()
|
169
168
|
except JSONDecodeError:
|
170
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
171
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
169
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
170
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
172
171
|
|
173
172
|
def delete_sandbox_scenario(
|
174
173
|
self, id: str, scenario_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
@@ -202,8 +201,8 @@ class RawSandboxesClient:
|
|
202
201
|
return HttpResponse(response=_response, data=None)
|
203
202
|
_response_json = _response.json()
|
204
203
|
except JSONDecodeError:
|
205
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
206
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
204
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
205
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
207
206
|
|
208
207
|
|
209
208
|
class AsyncRawSandboxesClient:
|
@@ -283,8 +282,8 @@ class AsyncRawSandboxesClient:
|
|
283
282
|
return AsyncHttpResponse(response=_response, data=_data)
|
284
283
|
_response_json = _response.json()
|
285
284
|
except JSONDecodeError:
|
286
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
287
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
285
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
286
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
288
287
|
|
289
288
|
async def upsert_sandbox_scenario(
|
290
289
|
self,
|
@@ -354,8 +353,8 @@ class AsyncRawSandboxesClient:
|
|
354
353
|
return AsyncHttpResponse(response=_response, data=_data)
|
355
354
|
_response_json = _response.json()
|
356
355
|
except JSONDecodeError:
|
357
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
358
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
356
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
357
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
359
358
|
|
360
359
|
async def delete_sandbox_scenario(
|
361
360
|
self, id: str, scenario_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
@@ -389,5 +388,5 @@ class AsyncRawSandboxesClient:
|
|
389
388
|
return AsyncHttpResponse(response=_response, data=None)
|
390
389
|
_response_json = _response.json()
|
391
390
|
except JSONDecodeError:
|
392
|
-
raise ApiError(status_code=_response.status_code, body=_response.text)
|
393
|
-
raise ApiError(status_code=_response.status_code, body=_response_json)
|
391
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
|
392
|
+
raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
|
@@ -1,14 +1,13 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
3
|
import typing
|
4
|
-
|
5
|
-
from .
|
6
|
-
from ...types.test_suite_run_exec_config_request import TestSuiteRunExecConfigRequest
|
4
|
+
|
5
|
+
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
7
6
|
from ...core.request_options import RequestOptions
|
8
|
-
from ...types.test_suite_run_read import TestSuiteRunRead
|
9
7
|
from ...types.paginated_test_suite_run_execution_list import PaginatedTestSuiteRunExecutionList
|
10
|
-
from ...
|
11
|
-
from .
|
8
|
+
from ...types.test_suite_run_exec_config_request import TestSuiteRunExecConfigRequest
|
9
|
+
from ...types.test_suite_run_read import TestSuiteRunRead
|
10
|
+
from .raw_client import AsyncRawTestSuiteRunsClient, RawTestSuiteRunsClient
|
12
11
|
|
13
12
|
# this is used as the default value for optional parameters
|
14
13
|
OMIT = typing.cast(typing.Any, ...)
|
@@ -83,13 +82,13 @@ class TestSuiteRunsClient:
|
|
83
82
|
),
|
84
83
|
)
|
85
84
|
"""
|
86
|
-
|
85
|
+
_response = self._raw_client.create(
|
87
86
|
exec_config=exec_config,
|
88
87
|
test_suite_id=test_suite_id,
|
89
88
|
test_suite_name=test_suite_name,
|
90
89
|
request_options=request_options,
|
91
90
|
)
|
92
|
-
return
|
91
|
+
return _response.data
|
93
92
|
|
94
93
|
def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> TestSuiteRunRead:
|
95
94
|
"""
|
@@ -120,8 +119,8 @@ class TestSuiteRunsClient:
|
|
120
119
|
id="id",
|
121
120
|
)
|
122
121
|
"""
|
123
|
-
|
124
|
-
return
|
122
|
+
_response = self._raw_client.retrieve(id, request_options=request_options)
|
123
|
+
return _response.data
|
125
124
|
|
126
125
|
def list_executions(
|
127
126
|
self,
|
@@ -170,10 +169,10 @@ class TestSuiteRunsClient:
|
|
170
169
|
id="id",
|
171
170
|
)
|
172
171
|
"""
|
173
|
-
|
172
|
+
_response = self._raw_client.list_executions(
|
174
173
|
id, expand=expand, limit=limit, offset=offset, request_options=request_options
|
175
174
|
)
|
176
|
-
return
|
175
|
+
return _response.data
|
177
176
|
|
178
177
|
|
179
178
|
class AsyncTestSuiteRunsClient:
|
@@ -249,13 +248,13 @@ class AsyncTestSuiteRunsClient:
|
|
249
248
|
|
250
249
|
asyncio.run(main())
|
251
250
|
"""
|
252
|
-
|
251
|
+
_response = await self._raw_client.create(
|
253
252
|
exec_config=exec_config,
|
254
253
|
test_suite_id=test_suite_id,
|
255
254
|
test_suite_name=test_suite_name,
|
256
255
|
request_options=request_options,
|
257
256
|
)
|
258
|
-
return
|
257
|
+
return _response.data
|
259
258
|
|
260
259
|
async def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> TestSuiteRunRead:
|
261
260
|
"""
|
@@ -294,8 +293,8 @@ class AsyncTestSuiteRunsClient:
|
|
294
293
|
|
295
294
|
asyncio.run(main())
|
296
295
|
"""
|
297
|
-
|
298
|
-
return
|
296
|
+
_response = await self._raw_client.retrieve(id, request_options=request_options)
|
297
|
+
return _response.data
|
299
298
|
|
300
299
|
async def list_executions(
|
301
300
|
self,
|
@@ -352,7 +351,7 @@ class AsyncTestSuiteRunsClient:
|
|
352
351
|
|
353
352
|
asyncio.run(main())
|
354
353
|
"""
|
355
|
-
|
354
|
+
_response = await self._raw_client.list_executions(
|
356
355
|
id, expand=expand, limit=limit, offset=offset, request_options=request_options
|
357
356
|
)
|
358
|
-
return
|
357
|
+
return _response.data
|